body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.6rem;
}
.display-1 > .mbr-iconfont {
  font-size: 4.16rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
}
.display-2 > .mbr-iconfont {
  font-size: 3.52rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  line-height: 1.4;
}
.display-5 > .mbr-iconfont {
  font-size: 2.08rem;
}
.display-7 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.76rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.08rem;
    font-size: calc( 1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.42rem + (2.2 - 1.42) * ((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.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 2.2rem;
  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: #255085 !important;
}
.bg-success {
  background-color: #f1894c !important;
}
.bg-info {
  background-color: #82786e !important;
}
.bg-warning {
  background-color: #36404c !important;
}
.bg-danger {
  background-color: #b1a374 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #255085 !important;
  border-color: #255085 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #255085 !important;
  background-color: transparent !important;
  border-color: #255085 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #142c49 !important;
  border-color: #142c49 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #e4d295 !important;
  border-color: #e4d295 !important;
  color: #615119 !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #e4d295 !important;
  background-color: transparent !important;
  border-color: #e4d295 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #615119 !important;
  background-color: #d4b858 !important;
  border-color: #d4b858 !important;
}
.btn-info,
.btn-info:active {
  background-color: #82786e !important;
  border-color: #82786e !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #82786e !important;
  background-color: transparent !important;
  border-color: #82786e !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-success,
.btn-success:active {
  background-color: #f1894c !important;
  border-color: #f1894c !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #f1894c !important;
  background-color: transparent !important;
  border-color: #f1894c !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #df5d11 !important;
  border-color: #df5d11 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #36404c !important;
  border-color: #36404c !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #36404c !important;
  background-color: transparent !important;
  border-color: #36404c !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #161a1f !important;
  border-color: #161a1f !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #b1a374 !important;
  background-color: transparent !important;
  border-color: #b1a374 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !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: #ffffff !important;
  background-color: transparent !important;
  border-color: #ffffff !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: #333333 !important;
  background-color: transparent !important;
  border-color: #333333 !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: #0f2035;
  color: #0f2035;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #255085;
  border-color: #255085;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #255085 !important;
  border-color: #255085 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #cfaf44;
  color: #cfaf44;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #615119;
  background-color: #e4d295;
  border-color: #e4d295;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #615119 !important;
  background-color: #e4d295 !important;
  border-color: #e4d295 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #4b453f;
  color: #4b453f;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #82786e;
  border-color: #82786e;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #82786e !important;
  border-color: #82786e !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #c75410;
  color: #c75410;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff;
  background-color: #f1894c;
  border-color: #f1894c;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #f1894c !important;
  border-color: #f1894c !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #0c0e10;
  color: #0c0e10;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #36404c;
  border-color: #36404c;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #36404c !important;
  border-color: #36404c !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #7a6e45;
  color: #7a6e45;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #b1a374;
  border-color: #b1a374;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #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: #255085 !important;
}
.text-secondary {
  color: #e4d295 !important;
}
.text-success {
  color: #f1894c !important;
}
.text-info {
  color: #82786e !important;
}
.text-warning {
  color: #36404c !important;
}
.text-danger {
  color: #b1a374 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #e4d295 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #cfaf44 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #e4d295 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #e4d295 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #e4d295 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #e4d295 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #e4d295 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #e4d295 !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #82786e;
}
.alert-warning {
  background-color: #36404c;
}
.alert-danger {
  background-color: #b1a374;
}
.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: #255085;
  border-color: #255085;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #255085;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #598ed1;
}
.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: #beb8b2;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #a7b3c0;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #dfd9c6;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
#scrollToTop a i:before {
  content: '';
  position: absolute;
  height: 40%;
  top: 25%;
  background: #fff;
  width: 2px;
  left: calc(50% - 1px);
}
#scrollToTop a i:after {
  content: '';
  position: absolute;
  display: block;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  width: 40%;
  height: 40%;
  left: 30%;
  bottom: 30%;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}
/* Others*/
.note-check a[data-value=Rubik] {
  font-style: normal;
}
.mbr-arrow a {
  color: #ffffff;
}
@media (max-width: 767px) {
  .mbr-arrow {
    display: none;
  }
}
.form-control-label {
  position: relative;
  cursor: pointer;
  margin-bottom: .357em;
  padding: 0;
}
.alert {
  color: #ffffff;
  border-radius: 0;
  border: 0;
  font-size: .875rem;
  line-height: 1.5;
  margin-bottom: 1.875rem;
  padding: 1.25rem;
  position: relative;
}
.alert.alert-form::after {
  background-color: inherit;
  bottom: -7px;
  content: "";
  display: block;
  height: 14px;
  left: 50%;
  margin-left: -7px;
  position: absolute;
  transform: rotate(45deg);
  width: 14px;
  -webkit-transform: rotate(45deg);
}
.form-control {
  background-color: #ffffff;
  box-shadow: none;
  color: #767676;
  border: 3px solid #ebeced;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  line-height: 1.43;
  min-height: 46px;
  padding: 0.5rem 1.2rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.76rem;
}
.form-control:focus {
  outline: none;
  border: 3px solid #ebeced;
  background-color: #f5f5f7;
}
.form-active .form-control:invalid {
  border-color: red;
}
.mbr-overlay {
  background-color: #000;
  bottom: 0;
  left: 0;
  opacity: .5;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
blockquote {
  border-color: #255085;
}
/* 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);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #255085;
  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-number__spin {
  background-color: #ffffff;
  border: 3px solid #ebeced;
}
.jq-number__spin:focus {
  outline: none;
  border: 3px solid #ebeced;
  background-color: #f5f5f7;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #255085;
  border-bottom-color: #255085;
}
.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: #ffffff !important;
  background-color: #255085 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #e4d295 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23255085' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
.cid-rwXm5Y46vC .navbar {
  background: #5b686b;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-rwXm5Y46vC .navbar-dropdown.bg-color.transparent.opened {
  background: #5b686b;
}
.cid-rwXm5Y46vC a {
  font-style: normal;
}
.cid-rwXm5Y46vC .show {
  overflow: visible;
}
.cid-rwXm5Y46vC .dropdown-menu {
  max-height: 400px;
}
.cid-rwXm5Y46vC .dropdown-item:active {
  background-color: transparent;
}
.cid-rwXm5Y46vC .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-rwXm5Y46vC .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-rwXm5Y46vC .nav-item:focus,
.cid-rwXm5Y46vC .nav-link:focus {
  outline: none;
}
.cid-rwXm5Y46vC .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rwXm5Y46vC .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-rwXm5Y46vC .menu-logo {
  margin-right: auto;
}
.cid-rwXm5Y46vC .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rwXm5Y46vC .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-rwXm5Y46vC .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rwXm5Y46vC .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rwXm5Y46vC .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rwXm5Y46vC .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rwXm5Y46vC .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-rwXm5Y46vC .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-rwXm5Y46vC .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-rwXm5Y46vC .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rwXm5Y46vC .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rwXm5Y46vC .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-rwXm5Y46vC .dropdown .dropdown-menu {
  background: #5b686b;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-rwXm5Y46vC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-rwXm5Y46vC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rwXm5Y46vC .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rwXm5Y46vC .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rwXm5Y46vC .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-rwXm5Y46vC .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-rwXm5Y46vC .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-rwXm5Y46vC .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rwXm5Y46vC .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rwXm5Y46vC .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rwXm5Y46vC .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rwXm5Y46vC button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-rwXm5Y46vC button.navbar-toggler:focus {
  outline: none;
}
.cid-rwXm5Y46vC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rwXm5Y46vC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rwXm5Y46vC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rwXm5Y46vC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rwXm5Y46vC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rwXm5Y46vC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rwXm5Y46vC nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rwXm5Y46vC nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rwXm5Y46vC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rwXm5Y46vC .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rwXm5Y46vC .collapsed .btn {
  display: -webkit-flex;
}
.cid-rwXm5Y46vC .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rwXm5Y46vC .collapsed .navbar-collapse.collapsing,
.cid-rwXm5Y46vC .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-rwXm5Y46vC .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rwXm5Y46vC .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rwXm5Y46vC .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rwXm5Y46vC .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rwXm5Y46vC .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rwXm5Y46vC .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-rwXm5Y46vC .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rwXm5Y46vC .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-rwXm5Y46vC .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 92.5vh;
  }
}
.cid-rwXm5Y46vC .collapsed button.navbar-toggler {
  display: block;
}
.cid-rwXm5Y46vC .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-rwXm5Y46vC .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rwXm5Y46vC .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-rwXm5Y46vC .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rwXm5Y46vC .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rwXm5Y46vC .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-rwXm5Y46vC.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rwXm5Y46vC img {
    height: 3.8rem !important;
  }
  .cid-rwXm5Y46vC .btn {
    display: -webkit-flex;
  }
  .cid-rwXm5Y46vC button.navbar-toggler {
    display: block;
  }
  .cid-rwXm5Y46vC .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-rwXm5Y46vC .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rwXm5Y46vC .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rwXm5Y46vC .navbar-collapse.collapsing,
  .cid-rwXm5Y46vC .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-rwXm5Y46vC .navbar-collapse.collapsing .navbar-nav,
  .cid-rwXm5Y46vC .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rwXm5Y46vC .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rwXm5Y46vC .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rwXm5Y46vC .navbar-collapse.collapsing .navbar-buttons,
  .cid-rwXm5Y46vC .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-rwXm5Y46vC .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rwXm5Y46vC .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rwXm5Y46vC .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-rwXm5Y46vC .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rwXm5Y46vC .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rwXm5Y46vC .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (max-width: 767px) {
  .cid-rwXm5Y46vC .nav-link {
    justify-content: start!important;
  }
  .cid-rwXm5Y46vC .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-rwXm5Y46vC .navbar-toggleable-sm {
    width: 100%!important;
  }
  .cid-rwXm5Y46vC .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-rwXm5Y46vC .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-rwXm5Y46vC .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-rwXm5Y46vC .nav-link:hover,
.cid-rwXm5Y46vC .dropdown-item:hover {
  color: #f9b03e !important;
}
@media (min-width: 1500px) {
  .cid-rwXm5Y46vC .navbar-toggleable-sm .navbar-collapse {
    max-width: 60%!important;
    padding-right: 5rem;
  }
  .cid-rwXm5Y46vC .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-ro4BJkHfRs {
  background-image: url("../../../assets/images/mbr-1920x1272.jpg");
  background-position: right;
}
.cid-ro4BJkHfRs .wrapper {
  position: relative;
  border-top: 3px solid #b1a374;
  border-right: 3px solid #b1a374;
  border-left: 3px solid #b1a374;
  padding: 2.5rem 2.5rem;
}
.cid-ro4BJkHfRs .wrapper:before {
  content: "";
  background: #b1a374;
  position: absolute;
  bottom: 0;
  width: 50%;
  height: 3px;
  right: 0;
}
.cid-ro4BJkHfRs .wrapper:after {
  content: "";
  background: #b1a374;
  position: absolute;
  bottom: 0;
  width: 10%;
  height: 3px;
  left: 0;
}
.cid-ro4BJkHfRs img {
  position: absolute;
  left: 10%;
  bottom: -45px;
  width: 130px;
}
@media (max-width: 767px) {
  .cid-ro4BJkHfRs .wrapper {
    padding: 1rem 1.5rem;
  }
}
.cid-ro4GQfTW5O {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/mbr-1920x829.jpg");
}
.cid-ro4GQfTW5O .carousel-item {
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-ro4GQfTW5O .carousel-item.active,
.cid-ro4GQfTW5O .carousel-item-next,
.cid-ro4GQfTW5O .carousel-item-prev {
  display: flex;
}
.cid-ro4GQfTW5O .img-box {
  position: relative;
  width: fit-content;
  margin: auto;
}
.cid-ro4GQfTW5O .face-icon {
  color: #ffffff;
  background: #255085;
  position: absolute;
  bottom: 0;
  right: 0;
  border-radius: 100%;
  padding: 12px;
  font-size: 1.2rem!important;
}
.cid-ro4GQfTW5O .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #ed4266;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-ro4GQfTW5O .mbr-iconfont {
  font-family: Moririse2 !important;
  font-size: 1rem;
  font-weight: 900;
  transition: opacity .3s;
}
.cid-ro4GQfTW5O .carousel-controls a {
  transition: opacity .3s;
  font-size: 2rem;
}
.cid-ro4GQfTW5O .carousel-controls a span {
  position: absolute;
  top: 45%;
  padding: 10px;
  border-radius: 50%;
  color: #232323;
  opacity: 1;
}
.cid-ro4GQfTW5O .carousel-controls a:hover span {
  opacity: 0.4;
}
.cid-ro4GQfTW5O H1 {
  color: #36404c;
}
.cid-ro4GQfTW5O .mbr-text,
.cid-ro4GQfTW5O .mbr-section-btn {
  color: #232323;
}
.cid-ro4GQfTW5O .author-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-ro4GQfTW5O .face {
  width: 160px;
  height: 160px;
  border-radius: 100%;
  box-shadow: none;
  margin: 0rem;
  object-fit: cover;
}
.cid-ro4GQfTW5O .author {
  margin: auto 0;
}
.cid-ro4GQfTW5O h3,
.cid-ro4GQfTW5O h4 {
  margin: 0;
  padding: 0;
}
.cid-ro4GQfTW5O H3 {
  color: #36404c;
}
.cid-ro4GQfTW5O H4 {
  color: #ffffff;
}
.cid-ro4GQfTW5O .box {
  max-width: 800px!important;
  margin: auto!important;
}
@media (max-width: 992px) {
  .cid-ro4GQfTW5O .carousel-controls a span {
    bottom: auto;
    top: 30%;
  }
}
@media (max-width: 767px) {
  .cid-ro4GQfTW5O .carousel-controls a span {
    bottom: auto;
    top: 20%;
  }
}
.cid-v5uVjg2xwd {
  padding-top: 15px;
  padding-bottom: 0px;
  background: #232323;
}
.cid-v5uVjg2xwd img {
  width: 125px;
  margin: auto;
  filter: brightness(250%);
}
.cid-v5uVjg2xwd .card {
  transition: opacity 0.3s;
  height: fit-content;
  padding: 1rem 0rem;
  opacity: 0.5;
  margin-bottom: 1rem;
}
.cid-v5uVjg2xwd .card:hover {
  opacity: 0.9;
}
.cid-v5uVjg2xwd H1 {
  color: #ffffff;
}
.cid-v5uVjg2xwd .row {
  justify-content: space-between;
}
@media (min-width: 992px) {
  .cid-v5uVjg2xwd .col-lg-1 {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}
.cid-v5uVjg2xwd .row {
  justify-content: center !important;
}
.cid-ro4H3uukei {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-ro4H3uukei .card-icon {
  font-size: 56px;
  color: #e4d295;
  transition: color 0.3s;
}
.cid-ro4H3uukei .card-title {
  font-weight: 600;
  letter-spacing: 1px;
}
.cid-ro4H3uukei .link-ico {
  font-size: 0.8rem;
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 100%;
  padding: 0.5rem 0;
  font-weight: 900;
  padding-left: 9px;
  padding-right: 7px;
}
.cid-ro4H3uukei .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #ffffff;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}
.cid-ro4H3uukei .card {
  padding: 0!important;
}
.cid-ro4H3uukei .card-wrapper {
  padding: 4rem;
  transition: background 0.3s;
}
.cid-ro4H3uukei .card-wrapper:hover {
  background: #e4d295;
}
.cid-ro4H3uukei .card-wrapper:hover .card-icon {
  color: #5b686b;
}
.cid-ro4H3uukei .card-wrapper:hover .line {
  background: #5b686b;
}
.cid-ro4H3uukei .card1 {
  background: #5b686b;
}
.cid-ro4H3uukei .card2 {
  background: #606d71;
}
.cid-ro4H3uukei .card3 {
  background: #647376;
}
.cid-ro4H3uukei .card4 {
  background: #69787c;
}
.cid-ro4H3uukei .card5 {
  background: #6e7d81;
}
.cid-ro4H3uukei .card6 {
  background: #728387;
}
.cid-ro4H3uukei .col-lg-x {
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
}
@media (max-width: 767px) {
  .cid-ro4H3uukei .col-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.cid-ro4HGAtc21 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #e4d295;
}
.cid-ro4HGAtc21 .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-ro4HGAtc21 .title {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.cid-ro4HGAtc21 H2 {
  margin: 0;
  width: 100%;
  text-align: center;
  color: #232323;
}
.cid-ro4HGAtc21 h3 {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-ro4HGAtc21 .title {
    margin-bottom: 2rem;
  }
  .cid-ro4HGAtc21 .align-left,
  .cid-ro4HGAtc21 .align-right {
    text-align: center;
  }
}
.cid-ro4GBB7PGS {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-ro4GBB7PGS .mbr-iconfont {
  font-size: 1.1rem;
  color: #36404c;
  padding: 0 0.5rem;
  transition: color 0.3s;
}
.cid-ro4GBB7PGS .mbr-iconfont:hover {
  color: #8394a7;
}
.cid-ro4GBB7PGS .card-img {
  position: relative;
  overflow: hidden;
}
.cid-ro4GBB7PGS a {
  font-weight: 600;
}
.cid-ro4GBB7PGS .btn-sm {
  padding: 0.6rem 2.2rem;
}
.cid-ro4GBB7PGS .card-img:before {
  content: '';
  display: block;
  pointer-events: none;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  left: 0;
  background-color: #f7ed4a;
  opacity: 0;
  transform-origin: right center 0;
  transform: perspective(100px) rotateY(-120deg);
  transform-style: flat;
  transition: transform 0.5s ease-in-out, opacity 0.2s ease-in-out;
}
.cid-ro4GBB7PGS .card-box {
  padding: 2rem 1rem;
  background-color: #e4d295;
  width: 80%;
  margin: auto;
  margin-top: -25%;
  position: relative;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cid-ro4GBB7PGS .card-box h3 {
  font-weight: 600;
  width: 100%;
  display: inline-block;
  margin: 0;
}
.cid-ro4GBB7PGS .card-wrapper {
  height: 100%;
}
.cid-ro4GBB7PGS .card-wrapper:hover .card-img:before {
  opacity: 0.3;
  transform: perspective(100px) rotateY(0deg);
}
.cid-ro4GBB7PGS .text {
  color: #767676;
}
.cid-ro4GBB7PGS .card-title {
  color: #36404c;
}
.cid-ro4GBB7PGS .card-subtitle {
  color: #b1a374;
}
#custom-html-2d {
  /* Type valid CSS here */
}
#custom-html-2d div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-2d p {
  font-size: 60px;
  color: #777;
}
.cid-ro4GJ1pfoz {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #36404c;
}
.cid-ro4GJ1pfoz section {
  position: relative;
}
.cid-ro4GJ1pfoz h4 {
  margin: 0;
}
.cid-ro4GJ1pfoz img {
  height: 100px;
  padding-rigth: 8px;
}
.cid-ro4GJ1pfoz a {
  font-weight: 300;
}
.cid-ro4GJ1pfoz .img1 {
  color: #f9b03e;
}
.cid-ro4GJ1pfoz .img2 {
  color: #f9b03e;
}
.cid-ro4GJ1pfoz .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #b1a374;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-ro4GJ1pfoz .media-wrap {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-ro4GJ1pfoz .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-ro4GJ1pfoz .item,
.cid-ro4GJ1pfoz .link {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-ro4GJ1pfoz .item h4,
.cid-ro4GJ1pfoz .link h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-ro4GJ1pfoz .link {
  border-bottom: 1px solid #4a535e;
}
@media (max-width: 767px) {
  .cid-ro4GJ1pfoz .item {
    justify-content: center;
  }
}
.cid-ro4GJ1pfoz .item-title {
  color: #ffffff;
}
.cid-ro4GMcl2gl {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #2c333c;
}
.cid-ro4GMcl2gl .mbr-flex {
  display: flex;
  justify-content: flex-end;
}
.cid-ro4GMcl2gl section {
  position: relative;
}
.cid-ro4GMcl2gl h4 {
  margin: 0;
}
.cid-ro4GMcl2gl a {
  font-weight: 300;
}
.cid-ro4GMcl2gl .row {
  align-items: center;
}
.cid-ro4GMcl2gl .item {
  margin: 0 1.5rem;
  display: flex;
  align-items: center;
}
.cid-ro4GMcl2gl .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-ro4GMcl2gl .img1 {
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-ro4GMcl2gl .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-ro4GMcl2gl .align-left {
    text-align: center;
  }
  .cid-ro4GMcl2gl .mbr-flex {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-ro4GMcl2gl .mbr-flex {
    flex-direction: column;
    align-items: center;
  }
  .cid-ro4GMcl2gl .item {
    padding-bottom: 0.5rem;
  }
}
.cid-ro4GMcl2gl .item-title {
  color: #c1c1c1;
}
.cid-ro4GMcl2gl H4 {
  color: #c1c1c1;
}
.cid-v5x6yqr7mE .navbar {
  background: #5b686b;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-v5x6yqr7mE .navbar-dropdown.bg-color.transparent.opened {
  background: #5b686b;
}
.cid-v5x6yqr7mE a {
  font-style: normal;
}
.cid-v5x6yqr7mE .show {
  overflow: visible;
}
.cid-v5x6yqr7mE .dropdown-menu {
  max-height: 400px;
}
.cid-v5x6yqr7mE .dropdown-item:active {
  background-color: transparent;
}
.cid-v5x6yqr7mE .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v5x6yqr7mE .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-v5x6yqr7mE .nav-item:focus,
.cid-v5x6yqr7mE .nav-link:focus {
  outline: none;
}
.cid-v5x6yqr7mE .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-v5x6yqr7mE .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v5x6yqr7mE .menu-logo {
  margin-right: auto;
}
.cid-v5x6yqr7mE .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v5x6yqr7mE .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v5x6yqr7mE .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v5x6yqr7mE .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v5x6yqr7mE .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v5x6yqr7mE .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v5x6yqr7mE .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-v5x6yqr7mE .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-v5x6yqr7mE .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v5x6yqr7mE .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v5x6yqr7mE .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v5x6yqr7mE .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-v5x6yqr7mE .dropdown .dropdown-menu {
  background: #5b686b;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v5x6yqr7mE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v5x6yqr7mE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v5x6yqr7mE .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v5x6yqr7mE .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v5x6yqr7mE .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v5x6yqr7mE .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v5x6yqr7mE .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v5x6yqr7mE .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v5x6yqr7mE .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v5x6yqr7mE .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v5x6yqr7mE .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v5x6yqr7mE button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v5x6yqr7mE button.navbar-toggler:focus {
  outline: none;
}
.cid-v5x6yqr7mE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v5x6yqr7mE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v5x6yqr7mE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v5x6yqr7mE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v5x6yqr7mE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v5x6yqr7mE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v5x6yqr7mE nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v5x6yqr7mE nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v5x6yqr7mE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v5x6yqr7mE .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v5x6yqr7mE .collapsed .btn {
  display: -webkit-flex;
}
.cid-v5x6yqr7mE .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v5x6yqr7mE .collapsed .navbar-collapse.collapsing,
.cid-v5x6yqr7mE .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-v5x6yqr7mE .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v5x6yqr7mE .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v5x6yqr7mE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v5x6yqr7mE .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v5x6yqr7mE .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v5x6yqr7mE .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v5x6yqr7mE .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v5x6yqr7mE .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-v5x6yqr7mE .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 92.5vh;
  }
}
.cid-v5x6yqr7mE .collapsed button.navbar-toggler {
  display: block;
}
.cid-v5x6yqr7mE .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v5x6yqr7mE .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v5x6yqr7mE .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-v5x6yqr7mE .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v5x6yqr7mE .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v5x6yqr7mE .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-v5x6yqr7mE.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v5x6yqr7mE img {
    height: 3.8rem !important;
  }
  .cid-v5x6yqr7mE .btn {
    display: -webkit-flex;
  }
  .cid-v5x6yqr7mE button.navbar-toggler {
    display: block;
  }
  .cid-v5x6yqr7mE .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v5x6yqr7mE .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v5x6yqr7mE .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v5x6yqr7mE .navbar-collapse.collapsing,
  .cid-v5x6yqr7mE .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-v5x6yqr7mE .navbar-collapse.collapsing .navbar-nav,
  .cid-v5x6yqr7mE .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v5x6yqr7mE .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v5x6yqr7mE .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v5x6yqr7mE .navbar-collapse.collapsing .navbar-buttons,
  .cid-v5x6yqr7mE .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v5x6yqr7mE .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v5x6yqr7mE .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v5x6yqr7mE .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-v5x6yqr7mE .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v5x6yqr7mE .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v5x6yqr7mE .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (max-width: 767px) {
  .cid-v5x6yqr7mE .nav-link {
    justify-content: start!important;
  }
  .cid-v5x6yqr7mE .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-v5x6yqr7mE .navbar-toggleable-sm {
    width: 100%!important;
  }
  .cid-v5x6yqr7mE .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-v5x6yqr7mE .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-v5x6yqr7mE .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-v5x6yqr7mE .nav-link:hover,
.cid-v5x6yqr7mE .dropdown-item:hover {
  color: #f9b03e !important;
}
@media (min-width: 1500px) {
  .cid-v5x6yqr7mE .navbar-toggleable-sm .navbar-collapse {
    max-width: 60%!important;
    padding-right: 5rem;
  }
  .cid-v5x6yqr7mE .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-v5x6yFTl8o {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #080000;
}
.cid-v5x6yFTl8o .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-v5x6yFTl8o .title {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.cid-v5x6yFTl8o H2 {
  margin: 0;
  width: 100%;
  text-align: center;
  color: #e4d295;
}
.cid-v5x6yFTl8o h3 {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-v5x6yFTl8o .title {
    margin-bottom: 2rem;
  }
  .cid-v5x6yFTl8o .align-left,
  .cid-v5x6yFTl8o .align-right {
    text-align: center;
  }
}
#custom-html-e {
  /* Type valid CSS here */
}
#custom-html-e .my-image {
  width: 100%;
}
#custom-html-2g {
  /* Type valid CSS here */
}
#custom-html-2g div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-2g p {
  font-size: 80px;
  color: #777;
}
.cid-v5x6yAUWVv {
  padding-top: 15px;
  padding-bottom: 0px;
  background: #232323;
}
.cid-v5x6yAUWVv img {
  width: 125px;
  margin: auto;
  filter: brightness(250%);
}
.cid-v5x6yAUWVv .card {
  transition: opacity 0.3s;
  height: fit-content;
  padding: 1rem 0rem;
  opacity: 0.5;
  margin-bottom: 1rem;
}
.cid-v5x6yAUWVv .card:hover {
  opacity: 0.9;
}
.cid-v5x6yAUWVv H1 {
  color: #ffffff;
}
.cid-v5x6yAUWVv .row {
  justify-content: space-between;
}
@media (min-width: 992px) {
  .cid-v5x6yAUWVv .col-lg-1 {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}
.cid-v5x6yAUWVv .row {
  justify-content: center !important;
}
.cid-v5xbNvLqUH {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-1920x829.jpg");
}
.cid-v5xbNvLqUH .mbr-overlay {
  background-color: #232323;
  opacity: 0.6;
}
.cid-v5xbNvLqUH textarea {
  min-height: 150px;
}
.cid-v5xbNvLqUH .form-col {
  background: #5b686b;
  padding: 3rem 1rem;
}
.cid-v5xbNvLqUH .form-wrap {
  max-width: 520px;
  margin: auto;
}
.cid-v5xbNvLqUH .text-wrap {
  max-width: 400px;
  border: 2px solid #ffffff;
  padding: 3rem;
  margin: 4rem auto !important;
}
@media (max-width: 992px) {
  .cid-v5xbNvLqUH .form-wrap {
    max-width: 690px;
  }
  .cid-v5xbNvLqUH .md-pb {
    padding-bottom: 3rem;
  }
  .cid-v5xbNvLqUH .text-wrap {
    max-width: 690px;
  }
}
.cid-v5xbNvLqUH .mbr-section-btn {
  margin: 0.4rem;
  padding-top: 1.5rem;
}
.cid-v5xbNvLqUH .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #f1894c;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-v5xbNvLqUH .form-control,
.cid-v5xbNvLqUH .field-input {
  padding: 0.5rem 1.2rem;
  background-color: #ffffff;
  border: 3px solid #ebeced;
  color: #767676;
  transition: 0.4s;
  font-size: 0.9rem;
  box-shadow: none;
  outline: none;
}
.cid-v5xbNvLqUH .form-control:hover,
.cid-v5xbNvLqUH .field-input:hover,
.cid-v5xbNvLqUH .form-control:focus,
.cid-v5xbNvLqUH .field-input:focus {
  background-color: #f5f5f7;
  border: 3px solid #ebeced;
  box-shadow: none;
  outline: none;
}
.cid-v5xbNvLqUH input::-webkit-input-placeholder,
.cid-v5xbNvLqUH textarea::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cid-v5xbNvLqUH input:-moz-placeholder,
.cid-v5xbNvLqUH textarea:-moz-placeholder {
  color: #c1c1c1;
}
.cid-v5xbNvLqUH .jq-selectbox li,
.cid-v5xbNvLqUH .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-v5xbNvLqUH .jq-selectbox li:hover,
.cid-v5xbNvLqUH .jq-selectbox li.selected {
  background-color: #f5f5f7;
  color: #000000;
}
.cid-v5xbNvLqUH .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-v5xbNvLqUH .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f7;
}
.cid-v5xbNvLqUH H2 {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-v5xbNvLqUH .col-auto {
    margin: auto;
  }
}
.cid-v5xbNvLqUH H3 {
  color: #ffffff;
}
.cid-v5xbNvLqUH H4 {
  color: #f9b03e;
}
.cid-v5KOgJeFxF {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #080000;
}
.cid-v5KOgJeFxF .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-v5KOgJeFxF .title {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.cid-v5KOgJeFxF H2 {
  margin: 0;
  width: 100%;
  text-align: center;
  color: #ffffff;
}
.cid-v5KOgJeFxF h3 {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-v5KOgJeFxF .title {
    margin-bottom: 2rem;
  }
  .cid-v5KOgJeFxF .align-left,
  .cid-v5KOgJeFxF .align-right {
    text-align: center;
  }
}
.cid-v5x6yLAnmQ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #36404c;
}
.cid-v5x6yLAnmQ section {
  position: relative;
}
.cid-v5x6yLAnmQ h4 {
  margin: 0;
}
.cid-v5x6yLAnmQ img {
  height: 100px;
  padding-rigth: 8px;
}
.cid-v5x6yLAnmQ a {
  font-weight: 300;
}
.cid-v5x6yLAnmQ .img1 {
  color: #f9b03e;
}
.cid-v5x6yLAnmQ .img2 {
  color: #f9b03e;
}
.cid-v5x6yLAnmQ .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #b1a374;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-v5x6yLAnmQ .media-wrap {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-v5x6yLAnmQ .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-v5x6yLAnmQ .item,
.cid-v5x6yLAnmQ .link {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-v5x6yLAnmQ .item h4,
.cid-v5x6yLAnmQ .link h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-v5x6yLAnmQ .link {
  border-bottom: 1px solid #4a535e;
}
@media (max-width: 767px) {
  .cid-v5x6yLAnmQ .item {
    justify-content: center;
  }
}
.cid-v5x6yLAnmQ .item-title {
  color: #ffffff;
}
.cid-v5x6yLAnmQ .link-title {
  color: #b1a374;
}
.cid-v5x6yNAYhk {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #2c333c;
}
.cid-v5x6yNAYhk .mbr-flex {
  display: flex;
  justify-content: flex-end;
}
.cid-v5x6yNAYhk section {
  position: relative;
}
.cid-v5x6yNAYhk h4 {
  margin: 0;
}
.cid-v5x6yNAYhk a {
  font-weight: 300;
}
.cid-v5x6yNAYhk .row {
  align-items: center;
}
.cid-v5x6yNAYhk .item {
  margin: 0 1.5rem;
  display: flex;
  align-items: center;
}
.cid-v5x6yNAYhk .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-v5x6yNAYhk .img1 {
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v5x6yNAYhk .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-v5x6yNAYhk .align-left {
    text-align: center;
  }
  .cid-v5x6yNAYhk .mbr-flex {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-v5x6yNAYhk .mbr-flex {
    flex-direction: column;
    align-items: center;
  }
  .cid-v5x6yNAYhk .item {
    padding-bottom: 0.5rem;
  }
}
.cid-v5x6yNAYhk .item-title {
  color: #c1c1c1;
}
.cid-v5x6yNAYhk H4 {
  color: #c1c1c1;
}
.cid-v5FLkOgaQw .navbar {
  background: #5b686b;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-v5FLkOgaQw .navbar-dropdown.bg-color.transparent.opened {
  background: #5b686b;
}
.cid-v5FLkOgaQw a {
  font-style: normal;
}
.cid-v5FLkOgaQw .show {
  overflow: visible;
}
.cid-v5FLkOgaQw .dropdown-menu {
  max-height: 400px;
}
.cid-v5FLkOgaQw .dropdown-item:active {
  background-color: transparent;
}
.cid-v5FLkOgaQw .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v5FLkOgaQw .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-v5FLkOgaQw .nav-item:focus,
.cid-v5FLkOgaQw .nav-link:focus {
  outline: none;
}
.cid-v5FLkOgaQw .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-v5FLkOgaQw .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v5FLkOgaQw .menu-logo {
  margin-right: auto;
}
.cid-v5FLkOgaQw .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v5FLkOgaQw .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v5FLkOgaQw .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v5FLkOgaQw .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v5FLkOgaQw .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v5FLkOgaQw .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v5FLkOgaQw .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-v5FLkOgaQw .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-v5FLkOgaQw .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v5FLkOgaQw .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v5FLkOgaQw .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v5FLkOgaQw .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-v5FLkOgaQw .dropdown .dropdown-menu {
  background: #5b686b;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v5FLkOgaQw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v5FLkOgaQw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v5FLkOgaQw .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v5FLkOgaQw .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v5FLkOgaQw .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v5FLkOgaQw .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v5FLkOgaQw .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v5FLkOgaQw .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v5FLkOgaQw .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v5FLkOgaQw .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v5FLkOgaQw .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v5FLkOgaQw button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v5FLkOgaQw button.navbar-toggler:focus {
  outline: none;
}
.cid-v5FLkOgaQw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v5FLkOgaQw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v5FLkOgaQw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v5FLkOgaQw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v5FLkOgaQw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v5FLkOgaQw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v5FLkOgaQw nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v5FLkOgaQw nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v5FLkOgaQw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v5FLkOgaQw .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v5FLkOgaQw .collapsed .btn {
  display: -webkit-flex;
}
.cid-v5FLkOgaQw .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v5FLkOgaQw .collapsed .navbar-collapse.collapsing,
.cid-v5FLkOgaQw .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-v5FLkOgaQw .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v5FLkOgaQw .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v5FLkOgaQw .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v5FLkOgaQw .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v5FLkOgaQw .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v5FLkOgaQw .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v5FLkOgaQw .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v5FLkOgaQw .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-v5FLkOgaQw .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 92.5vh;
  }
}
.cid-v5FLkOgaQw .collapsed button.navbar-toggler {
  display: block;
}
.cid-v5FLkOgaQw .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v5FLkOgaQw .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v5FLkOgaQw .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-v5FLkOgaQw .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v5FLkOgaQw .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v5FLkOgaQw .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-v5FLkOgaQw.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v5FLkOgaQw img {
    height: 3.8rem !important;
  }
  .cid-v5FLkOgaQw .btn {
    display: -webkit-flex;
  }
  .cid-v5FLkOgaQw button.navbar-toggler {
    display: block;
  }
  .cid-v5FLkOgaQw .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v5FLkOgaQw .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v5FLkOgaQw .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v5FLkOgaQw .navbar-collapse.collapsing,
  .cid-v5FLkOgaQw .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-v5FLkOgaQw .navbar-collapse.collapsing .navbar-nav,
  .cid-v5FLkOgaQw .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v5FLkOgaQw .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v5FLkOgaQw .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v5FLkOgaQw .navbar-collapse.collapsing .navbar-buttons,
  .cid-v5FLkOgaQw .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v5FLkOgaQw .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v5FLkOgaQw .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v5FLkOgaQw .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-v5FLkOgaQw .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v5FLkOgaQw .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v5FLkOgaQw .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (max-width: 767px) {
  .cid-v5FLkOgaQw .nav-link {
    justify-content: start!important;
  }
  .cid-v5FLkOgaQw .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-v5FLkOgaQw .navbar-toggleable-sm {
    width: 100%!important;
  }
  .cid-v5FLkOgaQw .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-v5FLkOgaQw .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-v5FLkOgaQw .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-v5FLkOgaQw .nav-link:hover,
.cid-v5FLkOgaQw .dropdown-item:hover {
  color: #f9b03e !important;
}
@media (min-width: 1500px) {
  .cid-v5FLkOgaQw .navbar-toggleable-sm .navbar-collapse {
    max-width: 60%!important;
    padding-right: 5rem;
  }
  .cid-v5FLkOgaQw .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-v5FM8BmvVV {
  background-image: url("../../../assets/images/balancedlifepillarsquaresbackgrd2-1080x761.jpg");
  background-position: right;
}
.cid-v5FM8BmvVV .wrapper {
  position: relative;
  border-top: 3px solid #e4d295;
  border-right: 3px solid #e4d295;
  border-left: 3px solid #e4d295;
  padding: 2.5rem 2.5rem;
}
.cid-v5FM8BmvVV .wrapper:before {
  content: '';
  background: #e4d295;
  position: absolute;
  bottom: 0;
  width: 50%;
  height: 3px;
  right: 0;
}
.cid-v5FM8BmvVV .wrapper:after {
  content: '';
  background: #e4d295;
  position: absolute;
  bottom: 0;
  width: 10%;
  height: 3px;
  left: 0;
}
.cid-v5FM8BmvVV img {
  position: absolute;
  left: 10%;
  bottom: -45px;
  width: 130px;
}
@media (max-width: 767px) {
  .cid-v5FM8BmvVV .wrapper {
    padding: 1rem 1.5rem;
  }
}
.cid-v5FM8BmvVV .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5FM8BmvVV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5FLkPJmP9 {
  padding-top: 15px;
  padding-bottom: 0px;
  background: #232323;
}
.cid-v5FLkPJmP9 img {
  width: 125px;
  margin: auto;
  filter: brightness(250%);
}
.cid-v5FLkPJmP9 .card {
  transition: opacity 0.3s;
  height: fit-content;
  padding: 1rem 0rem;
  opacity: 0.5;
  margin-bottom: 1rem;
}
.cid-v5FLkPJmP9 .card:hover {
  opacity: 0.9;
}
.cid-v5FLkPJmP9 H1 {
  color: #ffffff;
}
.cid-v5FLkPJmP9 .row {
  justify-content: space-between;
}
@media (min-width: 992px) {
  .cid-v5FLkPJmP9 .col-lg-1 {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}
.cid-v5FLkPJmP9 .row {
  justify-content: center !important;
}
.cid-v5FTWvAXSw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-v5FTWvAXSw .mbr-section-subtitle {
  color: #767676;
}
.cid-v5FTWvAXSw .container-fluid {
  padding: 0 !important;
}
.cid-v5FTWvAXSw .col-md-12 {
  padding: 0;
}
.cid-v5FTWvAXSw .row {
  margin: 0;
}
.cid-v5FTWvAXSw .btn {
  margin: 0.3rem;
  margin-top: 2rem;
}
.cid-v5FTWvAXSw .m-auto {
  max-width: 650px;
  padding: 2rem;
}
.cid-v5FTWvAXSw .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #f9b03e;
  transition: background 0.3s;
  margin-bottom: 3rem;
}
.cid-v5FTWvAXSw .number-wrap {
  color: #f9b03e;
  border-color: rgba(255, 255, 255, 0.15);
  border: 3px solid #767676;
  position: relative;
  display: inline-block;
  text-align: center;
  padding: 5px 10px 13px 10px;
  margin: 0;
  min-width: 118px;
  border-radius: 2px;
  max-width: 100%;
}
.cid-v5FTWvAXSw .number {
  font-style: normal;
  font-weight: 600;
  font-size: 50px;
  text-transform: none;
  letter-spacing: -2px;
  word-spacing: 0;
  line-height: 1.3;
  color: #e4d295;
}
.cid-v5FTWvAXSw .period {
  display: block;
}
.cid-v5FTWvAXSw .dot {
  display: none;
}
.cid-v5FTWvAXSw .countdown-cont {
  max-width: 700px;
}
.cid-v5FTWvAXSw .col-xs-3 {
  padding-left: 0;
  padding-right: 0;
  margin-right: 20px;
  max-width: 20%;
  flex: 0 0 20%;
}
@media (max-width: 767px) {
  .cid-v5FTWvAXSw .number-wrap {
    margin-bottom: 15px;
  }
  .cid-v5FTWvAXSw .col-xs-3 {
    margin-right: 0px;
    max-width: 50% !important;
    flex: 0 0 50% !important;
  }
  .cid-v5FTWvAXSw .box {
    height: 400px !important;
  }
}
@media (max-width: 440px) {
  .cid-v5FTWvAXSw .number,
  .cid-v5FTWvAXSw .dot {
    font-size: 40px;
  }
}
@media (max-width: 380px) {
  .cid-v5FTWvAXSw .period {
    font-size: 0.8rem;
  }
}
.cid-v5FTWvAXSw .box {
  background-image: url("../../../assets/images/ronfrancesf3-300x300.jpg");
  background-size: cover;
  background-position: center;
  height: 700px;
  width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v5FTWvAXSw .icon-wrap {
  background-color: #e4d295 !important;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-v5FTWvAXSw .icon-wrap:hover {
  opacity: 0.8;
}
.cid-v5FTWvAXSw .icon-wrap span {
  padding-left: 8px;
}
.cid-v5FTWvAXSw .mbr-media span {
  font-size: 30px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #232323 !important;
}
.cid-v5FTWvAXSw .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-v5FTWvAXSw .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-v5FTWvAXSw .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-v5FTWvAXSw .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-v5FTWvAXSw a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-v5FTWvAXSw a.close:hover {
  color: #ffffff;
}
.cid-v5FTWvAXSw .mbr-text {
  color: #ffffff;
}
.cid-v5FTWvAXSw H4 {
  color: #e4d295;
}
.cid-v5FTWvAXSw H2 {
  color: #ffffff;
}
.cid-v5FTWvAXSw .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5FTWvAXSw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5FTWvAXSw H3 {
  color: #ffffff;
}
.cid-v5FPPtpdOI {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #e4d295;
}
.cid-v5FPPtpdOI .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-v5FPPtpdOI .title {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.cid-v5FPPtpdOI H2 {
  margin: 0;
  width: 100%;
  text-align: center;
  color: #232323;
}
.cid-v5FPPtpdOI h3 {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-v5FPPtpdOI .title {
    margin-bottom: 2rem;
  }
  .cid-v5FPPtpdOI .align-left,
  .cid-v5FPPtpdOI .align-right {
    text-align: center;
  }
}
.cid-v5FPPtpdOI H3 {
  text-align: center;
  color: #232323;
}
.cid-v5FPAfnVHy {
  padding-top: 15px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/mbr-1920x1133.jpg");
}
.cid-v5FPAfnVHy .nav-tabs .nav-item.open .nav-link:focus,
.cid-v5FPAfnVHy .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-v5FPAfnVHy .nav-link.active {
  background: #b1a374;
}
.cid-v5FPAfnVHy .nav-link {
  background: white;
  transition: all 0.3s;
  padding: 1rem 3rem;
  border-radius: 0;
  text-align: center;
  margin: 0px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-v5FPAfnVHy .nav-link:hover {
  background: #b1a374;
}
.cid-v5FPAfnVHy .nav-tabs {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: none;
  padding-right: 2rem;
  flex-direction: column;
}
.cid-v5FPAfnVHy .nav-tabs .nav-item {
  padding: .5rem;
}
.cid-v5FPAfnVHy p {
  padding-left: 2rem;
}
.cid-v5FPAfnVHy .col-md-12 {
  flex-direction: row;
  display: flex;
}
.cid-v5FPAfnVHy .nav-tabs .nav-link {
  color: #767676;
  font-style: normal;
  font-weight: 500;
  transition: all .5s;
  border: none;
}
.cid-v5FPAfnVHy .nav-tabs .nav-link:hover {
  cursor: pointer;
  color: #ffffff;
}
.cid-v5FPAfnVHy .nav-tabs .nav-link.active {
  font-weight: 500;
  color: #ffffff;
  font-style: normal;
}
.cid-v5FPAfnVHy P {
  color: #ffffff;
}
.cid-v5FPAfnVHy H2 {
  color: #36404c;
}
@media (max-width: 992px) {
  .cid-v5FPAfnVHy .nav-tabs {
    flex-direction: row;
    justify-content: center;
    border-right: 0px;
    padding-right: 0rem;
  }
  .cid-v5FPAfnVHy .col-md-12 {
    flex-direction: column;
    display: flex;
  }
  .cid-v5FPAfnVHy p {
    padding-left: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-v5FPAfnVHy .mbr-text,
  .cid-v5FPAfnVHy .nav-link {
    text-align: center;
  }
  .cid-v5FPAfnVHy .col-md-12 {
    flex-direction: column;
    display: flex;
  }
  .cid-v5FPAfnVHy .nav-tabs {
    border-right: 0px;
    padding-right: 0rem;
    flex-direction: column;
  }
  .cid-v5FPAfnVHy p {
    padding-left: 0rem;
  }
}
.cid-v5KAg6UP0k {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #879a9f;
}
.cid-v5KAg6UP0k .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-v5KAg6UP0k .title {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.cid-v5KAg6UP0k H2 {
  margin: 0;
  width: 100%;
  text-align: center;
  color: #232323;
}
.cid-v5KAg6UP0k h3 {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-v5KAg6UP0k .title {
    margin-bottom: 2rem;
  }
  .cid-v5KAg6UP0k .align-left,
  .cid-v5KAg6UP0k .align-right {
    text-align: center;
  }
}
.cid-v5KAg6UP0k H3 {
  text-align: center;
  color: #232323;
}
.cid-v5KAg6UP0k H1 {
  text-align: center;
}
.cid-v5KAg6UP0k H4 {
  text-align: center;
  color: #080000;
}
.cid-v5G9f8jyJS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #121212;
}
.cid-v5G9f8jyJS .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5G9f8jyJS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5G9f8jyJS .card-wrapper {
  padding: 40px 0;
  background-color: #080000;
}
@media (max-width: 992px) {
  .cid-v5G9f8jyJS .card-wrapper {
    padding: 16px;
  }
}
.cid-v5G9f8jyJS .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 280px;
  max-width: 280px;
}
@media (max-width: 768px) {
  .cid-v5G9f8jyJS .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-v5G9f8jyJS .embla__slide .slide-content {
  width: 100%;
}
.cid-v5G9f8jyJS .embla__slide .slide-content .item-wrapper .item-img img {
  width: 100%;
  height: 370px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-v5G9f8jyJS .embla__slide .slide-content .item-wrapper .item-img img {
    height: 300px;
  }
}
.cid-v5G9f8jyJS .embla__button--next,
.cid-v5G9f8jyJS .embla__button--prev {
  display: flex;
}
.cid-v5G9f8jyJS .embla__button {
  bottom: 47%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  background-color: #36404c !important;
  color: #121212 !important;
  border: none !important;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
@media (max-width: 992px) {
  .cid-v5G9f8jyJS .embla__button {
    bottom: 0;
  }
}
.cid-v5G9f8jyJS .embla__button:hover {
  background-color: #b1a374 !important;
  color: #e4d295 !important;
}
.cid-v5G9f8jyJS .embla__button:disabled {
  opacity: .5 !important;
  background-color: #36404c !important;
  color: #121212 !important;
}
.cid-v5G9f8jyJS .embla__button.embla__button--prev {
  left: 20px;
}
@media (max-width: 992px) {
  .cid-v5G9f8jyJS .embla__button.embla__button--prev {
    left: 0;
  }
}
.cid-v5G9f8jyJS .embla__button.embla__button--next {
  right: 20px;
}
@media (max-width: 992px) {
  .cid-v5G9f8jyJS .embla__button.embla__button--next {
    right: 0;
  }
}
.cid-v5G9f8jyJS .embla {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-v5G9f8jyJS .embla {
    padding: 0;
    padding-bottom: 4rem;
  }
}
.cid-v5G9f8jyJS .embla__viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0;
}
@media (max-width: 768px) {
  .cid-v5G9f8jyJS .embla__viewport {
    padding: 0;
  }
}
.cid-v5G9f8jyJS .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-v5G9f8jyJS .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-v5G9f8jyJS .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-v5G9f8jyJS .item-menu-overlay {
  opacity: 0 !important;
}
.cid-v5G9f8jyJS .item-text {
  color: #000000;
}
.cid-v5G9f8jyJS .item-name {
  color: #000000;
}
.cid-v5G9f8jyJS .item-role {
  color: #767676;
}
.cid-v5G9f8jyJS .mbr-star {
  color: #f5b614;
}
.cid-v5KANJGGRX {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #879a9f;
}
.cid-v5KANJGGRX .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-v5KANJGGRX .title {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.cid-v5KANJGGRX H2 {
  margin: 0;
  width: 100%;
  text-align: center;
  color: #232323;
}
.cid-v5KANJGGRX h3 {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-v5KANJGGRX .title {
    margin-bottom: 2rem;
  }
  .cid-v5KANJGGRX .align-left,
  .cid-v5KANJGGRX .align-right {
    text-align: center;
  }
}
.cid-v5KANJGGRX H3 {
  text-align: center;
  color: #232323;
}
.cid-v5KANJGGRX H1 {
  text-align: center;
}
.cid-v5KANJGGRX H4 {
  text-align: center;
  color: #080000;
}
.cid-v5GgPpDbJ9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #121212;
}
.cid-v5GgPpDbJ9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5GgPpDbJ9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5GgPpDbJ9 .card-wrapper {
  padding: 40px 0;
  background-color: #080000;
}
@media (max-width: 992px) {
  .cid-v5GgPpDbJ9 .card-wrapper {
    padding: 16px;
  }
}
.cid-v5GgPpDbJ9 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 280px;
  max-width: 280px;
}
@media (max-width: 768px) {
  .cid-v5GgPpDbJ9 .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-v5GgPpDbJ9 .embla__slide .slide-content {
  width: 100%;
}
.cid-v5GgPpDbJ9 .embla__slide .slide-content .item-wrapper .item-img img {
  width: 100%;
  height: 370px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-v5GgPpDbJ9 .embla__slide .slide-content .item-wrapper .item-img img {
    height: 300px;
  }
}
.cid-v5GgPpDbJ9 .embla__button--next,
.cid-v5GgPpDbJ9 .embla__button--prev {
  display: flex;
}
.cid-v5GgPpDbJ9 .embla__button {
  bottom: 47%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  background-color: #36404c !important;
  color: #121212 !important;
  border: none !important;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
@media (max-width: 992px) {
  .cid-v5GgPpDbJ9 .embla__button {
    bottom: 0;
  }
}
.cid-v5GgPpDbJ9 .embla__button:hover {
  background-color: #b1a374 !important;
  color: #e4d295 !important;
}
.cid-v5GgPpDbJ9 .embla__button:disabled {
  opacity: .5 !important;
  background-color: #36404c !important;
  color: #121212 !important;
}
.cid-v5GgPpDbJ9 .embla__button.embla__button--prev {
  left: 20px;
}
@media (max-width: 992px) {
  .cid-v5GgPpDbJ9 .embla__button.embla__button--prev {
    left: 0;
  }
}
.cid-v5GgPpDbJ9 .embla__button.embla__button--next {
  right: 20px;
}
@media (max-width: 992px) {
  .cid-v5GgPpDbJ9 .embla__button.embla__button--next {
    right: 0;
  }
}
.cid-v5GgPpDbJ9 .embla {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-v5GgPpDbJ9 .embla {
    padding: 0;
    padding-bottom: 4rem;
  }
}
.cid-v5GgPpDbJ9 .embla__viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0;
}
@media (max-width: 768px) {
  .cid-v5GgPpDbJ9 .embla__viewport {
    padding: 0;
  }
}
.cid-v5GgPpDbJ9 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-v5GgPpDbJ9 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-v5GgPpDbJ9 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-v5GgPpDbJ9 .item-menu-overlay {
  opacity: 0 !important;
}
.cid-v5GgPpDbJ9 .item-text {
  color: #000000;
}
.cid-v5GgPpDbJ9 .item-name {
  color: #000000;
}
.cid-v5GgPpDbJ9 .item-role {
  color: #767676;
}
.cid-v5GgPpDbJ9 .mbr-star {
  color: #f5b614;
}
.cid-v5KAVIHGw0 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #879a9f;
}
.cid-v5KAVIHGw0 .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-v5KAVIHGw0 .title {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.cid-v5KAVIHGw0 H2 {
  margin: 0;
  width: 100%;
  text-align: center;
  color: #232323;
}
.cid-v5KAVIHGw0 h3 {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-v5KAVIHGw0 .title {
    margin-bottom: 2rem;
  }
  .cid-v5KAVIHGw0 .align-left,
  .cid-v5KAVIHGw0 .align-right {
    text-align: center;
  }
}
.cid-v5KAVIHGw0 H3 {
  text-align: center;
  color: #232323;
}
.cid-v5KAVIHGw0 H1 {
  text-align: center;
}
.cid-v5KAVIHGw0 H4 {
  text-align: center;
  color: #080000;
}
.cid-v5Gitgx6yc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #121212;
}
.cid-v5Gitgx6yc .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5Gitgx6yc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5Gitgx6yc .card-wrapper {
  padding: 40px 0;
  background-color: #080000;
}
@media (max-width: 992px) {
  .cid-v5Gitgx6yc .card-wrapper {
    padding: 16px;
  }
}
.cid-v5Gitgx6yc .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 280px;
  max-width: 280px;
}
@media (max-width: 768px) {
  .cid-v5Gitgx6yc .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-v5Gitgx6yc .embla__slide .slide-content {
  width: 100%;
}
.cid-v5Gitgx6yc .embla__slide .slide-content .item-wrapper .item-img img {
  width: 100%;
  height: 370px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-v5Gitgx6yc .embla__slide .slide-content .item-wrapper .item-img img {
    height: 300px;
  }
}
.cid-v5Gitgx6yc .embla__button--next,
.cid-v5Gitgx6yc .embla__button--prev {
  display: flex;
}
.cid-v5Gitgx6yc .embla__button {
  bottom: 47%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  background-color: #36404c !important;
  color: #121212 !important;
  border: none !important;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
@media (max-width: 992px) {
  .cid-v5Gitgx6yc .embla__button {
    bottom: 0;
  }
}
.cid-v5Gitgx6yc .embla__button:hover {
  background-color: #b1a374 !important;
  color: #e4d295 !important;
}
.cid-v5Gitgx6yc .embla__button:disabled {
  opacity: .5 !important;
  background-color: #36404c !important;
  color: #121212 !important;
}
.cid-v5Gitgx6yc .embla__button.embla__button--prev {
  left: 20px;
}
@media (max-width: 992px) {
  .cid-v5Gitgx6yc .embla__button.embla__button--prev {
    left: 0;
  }
}
.cid-v5Gitgx6yc .embla__button.embla__button--next {
  right: 20px;
}
@media (max-width: 992px) {
  .cid-v5Gitgx6yc .embla__button.embla__button--next {
    right: 0;
  }
}
.cid-v5Gitgx6yc .embla {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-v5Gitgx6yc .embla {
    padding: 0;
    padding-bottom: 4rem;
  }
}
.cid-v5Gitgx6yc .embla__viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0;
}
@media (max-width: 768px) {
  .cid-v5Gitgx6yc .embla__viewport {
    padding: 0;
  }
}
.cid-v5Gitgx6yc .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-v5Gitgx6yc .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-v5Gitgx6yc .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-v5Gitgx6yc .item-menu-overlay {
  opacity: 0 !important;
}
.cid-v5Gitgx6yc .item-text {
  color: #000000;
}
.cid-v5Gitgx6yc .item-name {
  color: #000000;
}
.cid-v5Gitgx6yc .item-role {
  color: #767676;
}
.cid-v5Gitgx6yc .mbr-star {
  color: #f5b614;
}
.cid-v5FLkQIgOv {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #36404c;
}
.cid-v5FLkQIgOv section {
  position: relative;
}
.cid-v5FLkQIgOv h4 {
  margin: 0;
}
.cid-v5FLkQIgOv img {
  height: 100px;
  padding-rigth: 8px;
}
.cid-v5FLkQIgOv a {
  font-weight: 300;
}
.cid-v5FLkQIgOv .img1 {
  color: #f9b03e;
}
.cid-v5FLkQIgOv .img2 {
  color: #f9b03e;
}
.cid-v5FLkQIgOv .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #b1a374;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-v5FLkQIgOv .media-wrap {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-v5FLkQIgOv .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-v5FLkQIgOv .item,
.cid-v5FLkQIgOv .link {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-v5FLkQIgOv .item h4,
.cid-v5FLkQIgOv .link h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-v5FLkQIgOv .link {
  border-bottom: 1px solid #4a535e;
}
@media (max-width: 767px) {
  .cid-v5FLkQIgOv .item {
    justify-content: center;
  }
}
.cid-v5FLkQIgOv .item-title {
  color: #c1c1c1;
}
.cid-v5FLkQIgOv .link-title {
  color: #b1a374;
}
.cid-v5FLkRKSPV {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #2c333c;
}
.cid-v5FLkRKSPV .mbr-flex {
  display: flex;
  justify-content: flex-end;
}
.cid-v5FLkRKSPV section {
  position: relative;
}
.cid-v5FLkRKSPV h4 {
  margin: 0;
}
.cid-v5FLkRKSPV a {
  font-weight: 300;
}
.cid-v5FLkRKSPV .row {
  align-items: center;
}
.cid-v5FLkRKSPV .item {
  margin: 0 1.5rem;
  display: flex;
  align-items: center;
}
.cid-v5FLkRKSPV .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-v5FLkRKSPV .img1 {
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v5FLkRKSPV .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-v5FLkRKSPV .align-left {
    text-align: center;
  }
  .cid-v5FLkRKSPV .mbr-flex {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-v5FLkRKSPV .mbr-flex {
    flex-direction: column;
    align-items: center;
  }
  .cid-v5FLkRKSPV .item {
    padding-bottom: 0.5rem;
  }
}
.cid-v5FLkRKSPV .item-title {
  color: #c1c1c1;
}
.cid-v5FLkRKSPV H4 {
  color: #c1c1c1;
}
.cid-v5GkRSUtWI .navbar {
  background: #5b686b;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-v5GkRSUtWI .navbar-dropdown.bg-color.transparent.opened {
  background: #5b686b;
}
.cid-v5GkRSUtWI a {
  font-style: normal;
}
.cid-v5GkRSUtWI .show {
  overflow: visible;
}
.cid-v5GkRSUtWI .dropdown-menu {
  max-height: 400px;
}
.cid-v5GkRSUtWI .dropdown-item:active {
  background-color: transparent;
}
.cid-v5GkRSUtWI .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v5GkRSUtWI .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-v5GkRSUtWI .nav-item:focus,
.cid-v5GkRSUtWI .nav-link:focus {
  outline: none;
}
.cid-v5GkRSUtWI .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-v5GkRSUtWI .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v5GkRSUtWI .menu-logo {
  margin-right: auto;
}
.cid-v5GkRSUtWI .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v5GkRSUtWI .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v5GkRSUtWI .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v5GkRSUtWI .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v5GkRSUtWI .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v5GkRSUtWI .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v5GkRSUtWI .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-v5GkRSUtWI .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-v5GkRSUtWI .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v5GkRSUtWI .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v5GkRSUtWI .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v5GkRSUtWI .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-v5GkRSUtWI .dropdown .dropdown-menu {
  background: #5b686b;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v5GkRSUtWI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v5GkRSUtWI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v5GkRSUtWI .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v5GkRSUtWI .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v5GkRSUtWI .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v5GkRSUtWI .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v5GkRSUtWI .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v5GkRSUtWI .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v5GkRSUtWI .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v5GkRSUtWI .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v5GkRSUtWI .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v5GkRSUtWI button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v5GkRSUtWI button.navbar-toggler:focus {
  outline: none;
}
.cid-v5GkRSUtWI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v5GkRSUtWI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v5GkRSUtWI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v5GkRSUtWI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v5GkRSUtWI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v5GkRSUtWI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v5GkRSUtWI nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v5GkRSUtWI nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v5GkRSUtWI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v5GkRSUtWI .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v5GkRSUtWI .collapsed .btn {
  display: -webkit-flex;
}
.cid-v5GkRSUtWI .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v5GkRSUtWI .collapsed .navbar-collapse.collapsing,
.cid-v5GkRSUtWI .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-v5GkRSUtWI .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v5GkRSUtWI .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v5GkRSUtWI .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v5GkRSUtWI .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v5GkRSUtWI .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v5GkRSUtWI .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v5GkRSUtWI .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v5GkRSUtWI .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-v5GkRSUtWI .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 92.5vh;
  }
}
.cid-v5GkRSUtWI .collapsed button.navbar-toggler {
  display: block;
}
.cid-v5GkRSUtWI .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v5GkRSUtWI .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v5GkRSUtWI .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-v5GkRSUtWI .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v5GkRSUtWI .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v5GkRSUtWI .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-v5GkRSUtWI.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v5GkRSUtWI img {
    height: 3.8rem !important;
  }
  .cid-v5GkRSUtWI .btn {
    display: -webkit-flex;
  }
  .cid-v5GkRSUtWI button.navbar-toggler {
    display: block;
  }
  .cid-v5GkRSUtWI .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v5GkRSUtWI .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v5GkRSUtWI .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v5GkRSUtWI .navbar-collapse.collapsing,
  .cid-v5GkRSUtWI .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-v5GkRSUtWI .navbar-collapse.collapsing .navbar-nav,
  .cid-v5GkRSUtWI .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v5GkRSUtWI .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v5GkRSUtWI .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v5GkRSUtWI .navbar-collapse.collapsing .navbar-buttons,
  .cid-v5GkRSUtWI .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v5GkRSUtWI .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v5GkRSUtWI .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v5GkRSUtWI .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-v5GkRSUtWI .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v5GkRSUtWI .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v5GkRSUtWI .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (max-width: 767px) {
  .cid-v5GkRSUtWI .nav-link {
    justify-content: start!important;
  }
  .cid-v5GkRSUtWI .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-v5GkRSUtWI .navbar-toggleable-sm {
    width: 100%!important;
  }
  .cid-v5GkRSUtWI .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-v5GkRSUtWI .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-v5GkRSUtWI .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-v5GkRSUtWI .nav-link:hover,
.cid-v5GkRSUtWI .dropdown-item:hover {
  color: #f9b03e !important;
}
@media (min-width: 1500px) {
  .cid-v5GkRSUtWI .navbar-toggleable-sm .navbar-collapse {
    max-width: 60%!important;
    padding-right: 5rem;
  }
  .cid-v5GkRSUtWI .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-v5GkRUoj4K .wrapper {
  position: relative;
  border-top: 3px solid #e4d295;
  border-right: 3px solid #e4d295;
  border-left: 3px solid #e4d295;
  padding: 2.5rem 2.5rem;
}
.cid-v5GkRUoj4K .wrapper:before {
  content: '';
  background: #e4d295;
  position: absolute;
  bottom: 0;
  width: 50%;
  height: 3px;
  right: 0;
}
.cid-v5GkRUoj4K .wrapper:after {
  content: '';
  background: #e4d295;
  position: absolute;
  bottom: 0;
  width: 10%;
  height: 3px;
  left: 0;
}
.cid-v5GkRUoj4K img {
  position: absolute;
  left: 10%;
  bottom: -45px;
  width: 130px;
}
@media (max-width: 767px) {
  .cid-v5GkRUoj4K .wrapper {
    padding: 1rem 1.5rem;
  }
}
.cid-v5GkRUoj4K .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5GkRUoj4K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-v5GnHX9mrk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #121212;
}
.cid-v5GnHX9mrk .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5GnHX9mrk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5GnHX9mrk .row {
  margin: 0 -20px;
}
.cid-v5GnHX9mrk .row .card {
  padding: 0 20px;
  justify-content: center;
}
.cid-v5GnHX9mrk .content-wrapper {
  margin-bottom: 40px;
}
.cid-v5GnHX9mrk .content-wrapper .mbr-label {
  margin-bottom: 12px;
}
.cid-v5GnHX9mrk .content-wrapper .mbr-section-title {
  margin-bottom: 12px;
}
.cid-v5GnHX9mrk .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v5GnHX9mrk .content-wrapper .mbr-section-btn {
  margin-top: 16px;
}
.cid-v5GnHX9mrk .content-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-v5GnHX9mrk .mbr-label {
  color: #e4d295;
}
.cid-v5GnHX9mrk .mbr-section-title {
  color: #ffffff;
}
.cid-v5GnHX9mrk .mbr-text {
  color: #ffffff;
}
.cid-v5GlZWESqA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #121212;
}
.cid-v5GlZWESqA .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5GlZWESqA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5GlZWESqA .row {
  margin: 0 -20px;
}
.cid-v5GlZWESqA .row .card {
  padding: 0 20px;
  justify-content: center;
}
.cid-v5GlZWESqA .content-wrapper {
  margin-bottom: 40px;
}
.cid-v5GlZWESqA .content-wrapper .mbr-label {
  margin-bottom: 12px;
}
.cid-v5GlZWESqA .content-wrapper .mbr-section-title {
  margin-bottom: 12px;
}
.cid-v5GlZWESqA .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v5GlZWESqA .content-wrapper .mbr-section-btn {
  margin-top: 16px;
}
.cid-v5GlZWESqA .content-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-v5GlZWESqA .mbr-label {
  color: #e4d295;
}
.cid-v5GlZWESqA .mbr-section-title {
  color: #ffffff;
}
.cid-v5GlZWESqA .mbr-text {
  color: #ffffff;
}
.cid-v8j2o8g0nW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-v8j2o8g0nW .mbr-fallback-image.disabled {
  display: none;
}
.cid-v8j2o8g0nW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v8j2o8g0nW .title-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-v8j2o8g0nW .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v8j2o8g0nW .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v8j2o8g0nW .panel-group .card {
  position: relative;
  background-color: transparent;
  border-top: 1px solid #323232;
  transition: all 0.3s ease-in-out;
  padding: 40px 0;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-v8j2o8g0nW .panel-group .card {
    padding: 16px 0;
  }
}
.cid-v8j2o8g0nW .panel-group .card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffdf7d;
  transition: all .5s ease;
}
.cid-v8j2o8g0nW .panel-group .card:hover::before {
  width: 100%;
}
.cid-v8j2o8g0nW .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-v8j2o8g0nW .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-v8j2o8g0nW .panel-group .card .card-header .panel-title {
    display: block;
  }
}
.cid-v8j2o8g0nW .panel-group .card .card-header .panel-title .panel-number {
  width: 55px;
  min-width: 55px;
  padding-right: 12px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v8j2o8g0nW .panel-group .card .card-header .panel-title .panel-number {
    padding-right: 0;
    min-width: auto;
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-v8j2o8g0nW .panel-group .card .card-header .panel-title .panel-title-edit {
  width: 100%;
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-v8j2o8g0nW .panel-group .card .card-header .panel-title .panel-title-edit {
    margin-bottom: 8px;
  }
}
.cid-v8j2o8g0nW .panel-group .card .card-header .panel-title .panel-date {
  padding-left: 24px;
  width: 280px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v8j2o8g0nW .panel-group .card .card-header .panel-title .panel-date {
    padding-left: 0;
    width: 100%;
  }
}
.cid-v8j2o8g0nW .panel-group .card .panel-collapse .panel-body {
  transition: all 0.3s ease-in-out;
  margin-top: 24px;
  padding-left: 55px;
}
@media (max-width: 992px) {
  .cid-v8j2o8g0nW .panel-group .card .panel-collapse .panel-body {
    padding-left: 0;
  }
}
.cid-v8j2o8g0nW .panel-group .card .panel-collapse .panel-body .panel-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v8j2o8g0nW .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 100%;
  }
}
.cid-v8j2o8g0nW .mbr-section-title {
  color: #b1a374;
}
.cid-v8j2o8g0nW .panel-number {
  color: #808080;
}
.cid-v8j2o8g0nW .panel-title-edit {
  color: #e4d295;
}
.cid-v8j2o8g0nW .panel-date {
  color: #808080;
  text-align: right;
}
@media (max-width: 992px) {
  .cid-v8j2o8g0nW .panel-date {
    text-align: left;
  }
}
.cid-v8j2o8g0nW .panel-text {
  color: #808080;
}
.cid-v8j2o8g0nW .panel-text,
.cid-v8j2o8g0nW .panel-body {
  color: #ffffff;
}
.cid-v5GkRX75hk {
  padding-top: 15px;
  padding-bottom: 0px;
  background: #232323;
}
.cid-v5GkRX75hk img {
  width: 125px;
  margin: auto;
  filter: brightness(250%);
}
.cid-v5GkRX75hk .card {
  transition: opacity 0.3s;
  height: fit-content;
  padding: 1rem 0rem;
  opacity: 0.5;
  margin-bottom: 1rem;
}
.cid-v5GkRX75hk .card:hover {
  opacity: 0.9;
}
.cid-v5GkRX75hk H1 {
  color: #ffffff;
}
.cid-v5GkRX75hk .row {
  justify-content: space-between;
}
@media (min-width: 992px) {
  .cid-v5GkRX75hk .col-lg-1 {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}
.cid-v5GkRX75hk .row {
  justify-content: center !important;
}
.cid-v5KBuHRGNn {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #879a9f;
}
.cid-v5KBuHRGNn .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-v5KBuHRGNn .title {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.cid-v5KBuHRGNn H2 {
  margin: 0;
  width: 100%;
  text-align: center;
  color: #232323;
}
.cid-v5KBuHRGNn h3 {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-v5KBuHRGNn .title {
    margin-bottom: 2rem;
  }
  .cid-v5KBuHRGNn .align-left,
  .cid-v5KBuHRGNn .align-right {
    text-align: center;
  }
}
.cid-v5KBuHRGNn H3 {
  text-align: center;
  color: #232323;
}
.cid-v5KBuHRGNn H1 {
  text-align: center;
}
.cid-v5KBuHRGNn H4 {
  text-align: center;
  color: #080000;
}
.cid-v5GkRXWgI8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #121212;
}
.cid-v5GkRXWgI8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5GkRXWgI8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5GkRXWgI8 .card-wrapper {
  padding: 40px 0;
  background-color: #080000;
}
@media (max-width: 992px) {
  .cid-v5GkRXWgI8 .card-wrapper {
    padding: 16px;
  }
}
.cid-v5GkRXWgI8 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 280px;
  max-width: 280px;
}
@media (max-width: 768px) {
  .cid-v5GkRXWgI8 .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-v5GkRXWgI8 .embla__slide .slide-content {
  width: 100%;
}
.cid-v5GkRXWgI8 .embla__slide .slide-content .item-wrapper .item-img img {
  width: 100%;
  height: 370px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-v5GkRXWgI8 .embla__slide .slide-content .item-wrapper .item-img img {
    height: 300px;
  }
}
.cid-v5GkRXWgI8 .embla__button--next,
.cid-v5GkRXWgI8 .embla__button--prev {
  display: flex;
}
.cid-v5GkRXWgI8 .embla__button {
  bottom: 47%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  background-color: #36404c !important;
  color: #121212 !important;
  border: none !important;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
@media (max-width: 992px) {
  .cid-v5GkRXWgI8 .embla__button {
    bottom: 0;
  }
}
.cid-v5GkRXWgI8 .embla__button:hover {
  background-color: #b1a374 !important;
  color: #e4d295 !important;
}
.cid-v5GkRXWgI8 .embla__button:disabled {
  opacity: .5 !important;
  background-color: #36404c !important;
  color: #121212 !important;
}
.cid-v5GkRXWgI8 .embla__button.embla__button--prev {
  left: 20px;
}
@media (max-width: 992px) {
  .cid-v5GkRXWgI8 .embla__button.embla__button--prev {
    left: 0;
  }
}
.cid-v5GkRXWgI8 .embla__button.embla__button--next {
  right: 20px;
}
@media (max-width: 992px) {
  .cid-v5GkRXWgI8 .embla__button.embla__button--next {
    right: 0;
  }
}
.cid-v5GkRXWgI8 .embla {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-v5GkRXWgI8 .embla {
    padding: 0;
    padding-bottom: 4rem;
  }
}
.cid-v5GkRXWgI8 .embla__viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0;
}
@media (max-width: 768px) {
  .cid-v5GkRXWgI8 .embla__viewport {
    padding: 0;
  }
}
.cid-v5GkRXWgI8 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-v5GkRXWgI8 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-v5GkRXWgI8 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-v5GkRXWgI8 .item-menu-overlay {
  opacity: 0 !important;
}
.cid-v5GkRXWgI8 .item-text {
  color: #000000;
}
.cid-v5GkRXWgI8 .item-name {
  color: #000000;
}
.cid-v5GkRXWgI8 .item-role {
  color: #767676;
}
.cid-v5GkRXWgI8 .mbr-star {
  color: #f5b614;
}
.cid-v5KDZ7Zits {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #879a9f;
}
.cid-v5KDZ7Zits .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-v5KDZ7Zits .title {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.cid-v5KDZ7Zits H2 {
  margin: 0;
  width: 100%;
  text-align: center;
  color: #232323;
}
.cid-v5KDZ7Zits h3 {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-v5KDZ7Zits .title {
    margin-bottom: 2rem;
  }
  .cid-v5KDZ7Zits .align-left,
  .cid-v5KDZ7Zits .align-right {
    text-align: center;
  }
}
.cid-v5KDZ7Zits H3 {
  text-align: center;
  color: #232323;
}
.cid-v5KDZ7Zits H1 {
  text-align: center;
}
.cid-v5KDZ7Zits H4 {
  text-align: center;
  color: #080000;
}
.cid-v5GkRYJlcE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #121212;
}
.cid-v5GkRYJlcE .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5GkRYJlcE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5GkRYJlcE .card-wrapper {
  padding: 40px 0;
  background-color: #080000;
}
@media (max-width: 992px) {
  .cid-v5GkRYJlcE .card-wrapper {
    padding: 16px;
  }
}
.cid-v5GkRYJlcE .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 280px;
  max-width: 280px;
}
@media (max-width: 768px) {
  .cid-v5GkRYJlcE .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-v5GkRYJlcE .embla__slide .slide-content {
  width: 100%;
}
.cid-v5GkRYJlcE .embla__slide .slide-content .item-wrapper .item-img img {
  width: 100%;
  height: 370px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-v5GkRYJlcE .embla__slide .slide-content .item-wrapper .item-img img {
    height: 300px;
  }
}
.cid-v5GkRYJlcE .embla__button--next,
.cid-v5GkRYJlcE .embla__button--prev {
  display: flex;
}
.cid-v5GkRYJlcE .embla__button {
  bottom: 47%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  background-color: #36404c !important;
  color: #121212 !important;
  border: none !important;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
@media (max-width: 992px) {
  .cid-v5GkRYJlcE .embla__button {
    bottom: 0;
  }
}
.cid-v5GkRYJlcE .embla__button:hover {
  background-color: #b1a374 !important;
  color: #e4d295 !important;
}
.cid-v5GkRYJlcE .embla__button:disabled {
  opacity: .5 !important;
  background-color: #36404c !important;
  color: #121212 !important;
}
.cid-v5GkRYJlcE .embla__button.embla__button--prev {
  left: 20px;
}
@media (max-width: 992px) {
  .cid-v5GkRYJlcE .embla__button.embla__button--prev {
    left: 0;
  }
}
.cid-v5GkRYJlcE .embla__button.embla__button--next {
  right: 20px;
}
@media (max-width: 992px) {
  .cid-v5GkRYJlcE .embla__button.embla__button--next {
    right: 0;
  }
}
.cid-v5GkRYJlcE .embla {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-v5GkRYJlcE .embla {
    padding: 0;
    padding-bottom: 4rem;
  }
}
.cid-v5GkRYJlcE .embla__viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0;
}
@media (max-width: 768px) {
  .cid-v5GkRYJlcE .embla__viewport {
    padding: 0;
  }
}
.cid-v5GkRYJlcE .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-v5GkRYJlcE .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-v5GkRYJlcE .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-v5GkRYJlcE .item-menu-overlay {
  opacity: 0 !important;
}
.cid-v5GkRYJlcE .item-text {
  color: #000000;
}
.cid-v5GkRYJlcE .item-name {
  color: #000000;
}
.cid-v5GkRYJlcE .item-role {
  color: #767676;
}
.cid-v5GkRYJlcE .mbr-star {
  color: #f5b614;
}
.cid-v5KE8XGqII {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #879a9f;
}
.cid-v5KE8XGqII .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-v5KE8XGqII .title {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.cid-v5KE8XGqII H2 {
  margin: 0;
  width: 100%;
  text-align: center;
  color: #232323;
}
.cid-v5KE8XGqII h3 {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-v5KE8XGqII .title {
    margin-bottom: 2rem;
  }
  .cid-v5KE8XGqII .align-left,
  .cid-v5KE8XGqII .align-right {
    text-align: center;
  }
}
.cid-v5KE8XGqII H3 {
  text-align: center;
  color: #232323;
}
.cid-v5KE8XGqII H1 {
  text-align: center;
}
.cid-v5KE8XGqII H4 {
  text-align: center;
  color: #080000;
}
.cid-v5GkRZk6VL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #121212;
}
.cid-v5GkRZk6VL .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5GkRZk6VL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5GkRZk6VL .card-wrapper {
  padding: 40px 0;
  background-color: #080000;
}
@media (max-width: 992px) {
  .cid-v5GkRZk6VL .card-wrapper {
    padding: 16px;
  }
}
.cid-v5GkRZk6VL .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 280px;
  max-width: 280px;
}
@media (max-width: 768px) {
  .cid-v5GkRZk6VL .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-v5GkRZk6VL .embla__slide .slide-content {
  width: 100%;
}
.cid-v5GkRZk6VL .embla__slide .slide-content .item-wrapper .item-img img {
  width: 100%;
  height: 370px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-v5GkRZk6VL .embla__slide .slide-content .item-wrapper .item-img img {
    height: 300px;
  }
}
.cid-v5GkRZk6VL .embla__button--next,
.cid-v5GkRZk6VL .embla__button--prev {
  display: flex;
}
.cid-v5GkRZk6VL .embla__button {
  bottom: 47%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  background-color: #36404c !important;
  color: #121212 !important;
  border: none !important;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
@media (max-width: 992px) {
  .cid-v5GkRZk6VL .embla__button {
    bottom: 0;
  }
}
.cid-v5GkRZk6VL .embla__button:hover {
  background-color: #b1a374 !important;
  color: #e4d295 !important;
}
.cid-v5GkRZk6VL .embla__button:disabled {
  opacity: .5 !important;
  background-color: #36404c !important;
  color: #121212 !important;
}
.cid-v5GkRZk6VL .embla__button.embla__button--prev {
  left: 20px;
}
@media (max-width: 992px) {
  .cid-v5GkRZk6VL .embla__button.embla__button--prev {
    left: 0;
  }
}
.cid-v5GkRZk6VL .embla__button.embla__button--next {
  right: 20px;
}
@media (max-width: 992px) {
  .cid-v5GkRZk6VL .embla__button.embla__button--next {
    right: 0;
  }
}
.cid-v5GkRZk6VL .embla {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-v5GkRZk6VL .embla {
    padding: 0;
    padding-bottom: 4rem;
  }
}
.cid-v5GkRZk6VL .embla__viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0;
}
@media (max-width: 768px) {
  .cid-v5GkRZk6VL .embla__viewport {
    padding: 0;
  }
}
.cid-v5GkRZk6VL .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-v5GkRZk6VL .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-v5GkRZk6VL .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-v5GkRZk6VL .item-menu-overlay {
  opacity: 0 !important;
}
.cid-v5GkRZk6VL .item-text {
  color: #000000;
}
.cid-v5GkRZk6VL .item-name {
  color: #000000;
}
.cid-v5GkRZk6VL .item-role {
  color: #767676;
}
.cid-v5GkRZk6VL .mbr-star {
  color: #f5b614;
}
.cid-v5GkS0foz8 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #36404c;
}
.cid-v5GkS0foz8 section {
  position: relative;
}
.cid-v5GkS0foz8 h4 {
  margin: 0;
}
.cid-v5GkS0foz8 img {
  height: 100px;
  padding-rigth: 8px;
}
.cid-v5GkS0foz8 a {
  font-weight: 300;
}
.cid-v5GkS0foz8 .img1 {
  color: #f9b03e;
}
.cid-v5GkS0foz8 .img2 {
  color: #f9b03e;
}
.cid-v5GkS0foz8 .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #b1a374;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-v5GkS0foz8 .media-wrap {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-v5GkS0foz8 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-v5GkS0foz8 .item,
.cid-v5GkS0foz8 .link {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-v5GkS0foz8 .item h4,
.cid-v5GkS0foz8 .link h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-v5GkS0foz8 .link {
  border-bottom: 1px solid #4a535e;
}
@media (max-width: 767px) {
  .cid-v5GkS0foz8 .item {
    justify-content: center;
  }
}
.cid-v5GkS0foz8 .item-title {
  color: #c1c1c1;
}
.cid-v5GkS0Zk4S {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #2c333c;
}
.cid-v5GkS0Zk4S .mbr-flex {
  display: flex;
  justify-content: flex-end;
}
.cid-v5GkS0Zk4S section {
  position: relative;
}
.cid-v5GkS0Zk4S h4 {
  margin: 0;
}
.cid-v5GkS0Zk4S a {
  font-weight: 300;
}
.cid-v5GkS0Zk4S .row {
  align-items: center;
}
.cid-v5GkS0Zk4S .item {
  margin: 0 1.5rem;
  display: flex;
  align-items: center;
}
.cid-v5GkS0Zk4S .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-v5GkS0Zk4S .img1 {
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v5GkS0Zk4S .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-v5GkS0Zk4S .align-left {
    text-align: center;
  }
  .cid-v5GkS0Zk4S .mbr-flex {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-v5GkS0Zk4S .mbr-flex {
    flex-direction: column;
    align-items: center;
  }
  .cid-v5GkS0Zk4S .item {
    padding-bottom: 0.5rem;
  }
}
.cid-v5GkS0Zk4S .item-title {
  color: #c1c1c1;
}
.cid-v5GkS0Zk4S H4 {
  color: #c1c1c1;
}
.cid-v7HbPlHcbh .navbar {
  background: #5b686b;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-v7HbPlHcbh .navbar-dropdown.bg-color.transparent.opened {
  background: #5b686b;
}
.cid-v7HbPlHcbh a {
  font-style: normal;
}
.cid-v7HbPlHcbh .show {
  overflow: visible;
}
.cid-v7HbPlHcbh .dropdown-menu {
  max-height: 400px;
}
.cid-v7HbPlHcbh .dropdown-item:active {
  background-color: transparent;
}
.cid-v7HbPlHcbh .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v7HbPlHcbh .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-v7HbPlHcbh .nav-item:focus,
.cid-v7HbPlHcbh .nav-link:focus {
  outline: none;
}
.cid-v7HbPlHcbh .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-v7HbPlHcbh .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v7HbPlHcbh .menu-logo {
  margin-right: auto;
}
.cid-v7HbPlHcbh .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v7HbPlHcbh .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v7HbPlHcbh .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v7HbPlHcbh .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v7HbPlHcbh .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v7HbPlHcbh .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v7HbPlHcbh .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-v7HbPlHcbh .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-v7HbPlHcbh .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v7HbPlHcbh .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v7HbPlHcbh .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v7HbPlHcbh .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-v7HbPlHcbh .dropdown .dropdown-menu {
  background: #5b686b;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v7HbPlHcbh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v7HbPlHcbh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v7HbPlHcbh .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v7HbPlHcbh .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v7HbPlHcbh .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v7HbPlHcbh .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v7HbPlHcbh .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v7HbPlHcbh .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v7HbPlHcbh .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v7HbPlHcbh .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v7HbPlHcbh .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v7HbPlHcbh button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v7HbPlHcbh button.navbar-toggler:focus {
  outline: none;
}
.cid-v7HbPlHcbh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v7HbPlHcbh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v7HbPlHcbh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v7HbPlHcbh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v7HbPlHcbh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v7HbPlHcbh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v7HbPlHcbh nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v7HbPlHcbh nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v7HbPlHcbh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v7HbPlHcbh .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v7HbPlHcbh .collapsed .btn {
  display: -webkit-flex;
}
.cid-v7HbPlHcbh .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v7HbPlHcbh .collapsed .navbar-collapse.collapsing,
.cid-v7HbPlHcbh .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-v7HbPlHcbh .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v7HbPlHcbh .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v7HbPlHcbh .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v7HbPlHcbh .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v7HbPlHcbh .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v7HbPlHcbh .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v7HbPlHcbh .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v7HbPlHcbh .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-v7HbPlHcbh .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 92.5vh;
  }
}
.cid-v7HbPlHcbh .collapsed button.navbar-toggler {
  display: block;
}
.cid-v7HbPlHcbh .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v7HbPlHcbh .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v7HbPlHcbh .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-v7HbPlHcbh .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v7HbPlHcbh .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v7HbPlHcbh .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-v7HbPlHcbh.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v7HbPlHcbh img {
    height: 3.8rem !important;
  }
  .cid-v7HbPlHcbh .btn {
    display: -webkit-flex;
  }
  .cid-v7HbPlHcbh button.navbar-toggler {
    display: block;
  }
  .cid-v7HbPlHcbh .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v7HbPlHcbh .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v7HbPlHcbh .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v7HbPlHcbh .navbar-collapse.collapsing,
  .cid-v7HbPlHcbh .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-v7HbPlHcbh .navbar-collapse.collapsing .navbar-nav,
  .cid-v7HbPlHcbh .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v7HbPlHcbh .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v7HbPlHcbh .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v7HbPlHcbh .navbar-collapse.collapsing .navbar-buttons,
  .cid-v7HbPlHcbh .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v7HbPlHcbh .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v7HbPlHcbh .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v7HbPlHcbh .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-v7HbPlHcbh .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v7HbPlHcbh .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v7HbPlHcbh .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (max-width: 767px) {
  .cid-v7HbPlHcbh .nav-link {
    justify-content: start!important;
  }
  .cid-v7HbPlHcbh .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-v7HbPlHcbh .navbar-toggleable-sm {
    width: 100%!important;
  }
  .cid-v7HbPlHcbh .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-v7HbPlHcbh .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-v7HbPlHcbh .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-v7HbPlHcbh .nav-link:hover,
.cid-v7HbPlHcbh .dropdown-item:hover {
  color: #f9b03e !important;
}
@media (min-width: 1500px) {
  .cid-v7HbPlHcbh .navbar-toggleable-sm .navbar-collapse {
    max-width: 60%!important;
    padding-right: 5rem;
  }
  .cid-v7HbPlHcbh .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-v7HbPmhBdd {
  background-image: url("../../../assets/images/psalmbook-background1-1485x1106.jpg");
  background-position: right;
}
.cid-v7HbPmhBdd .wrapper {
  position: relative;
  border-top: 3px solid #e4d295;
  border-right: 3px solid #e4d295;
  border-left: 3px solid #e4d295;
  padding: 2.5rem 2.5rem;
}
.cid-v7HbPmhBdd .wrapper:before {
  content: '';
  background: #e4d295;
  position: absolute;
  bottom: 0;
  width: 50%;
  height: 3px;
  right: 0;
}
.cid-v7HbPmhBdd .wrapper:after {
  content: '';
  background: #e4d295;
  position: absolute;
  bottom: 0;
  width: 10%;
  height: 3px;
  left: 0;
}
.cid-v7HbPmhBdd img {
  position: absolute;
  left: 10%;
  bottom: -45px;
  width: 130px;
}
@media (max-width: 767px) {
  .cid-v7HbPmhBdd .wrapper {
    padding: 1rem 1.5rem;
  }
}
.cid-v7HbPmhBdd .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7HbPmhBdd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7HbPpbAdE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/psalmbook-background1-1485x1106.jpg");
}
.cid-v7HbPpbAdE .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7HbPpbAdE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7HbPpbAdE .card-wrapper {
  padding: 40px 0;
  background-color: #4f4943;
}
@media (max-width: 992px) {
  .cid-v7HbPpbAdE .card-wrapper {
    padding: 16px;
  }
}
.cid-v7HbPpbAdE .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 280px;
  max-width: 280px;
}
@media (max-width: 768px) {
  .cid-v7HbPpbAdE .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-v7HbPpbAdE .embla__slide .slide-content {
  width: 100%;
}
.cid-v7HbPpbAdE .embla__slide .slide-content .item-wrapper .item-img img {
  width: 100%;
  height: 370px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-v7HbPpbAdE .embla__slide .slide-content .item-wrapper .item-img img {
    height: 300px;
  }
}
.cid-v7HbPpbAdE .embla__button--next,
.cid-v7HbPpbAdE .embla__button--prev {
  display: flex;
}
.cid-v7HbPpbAdE .embla__button {
  bottom: 47%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  background-color: #36404c !important;
  color: #121212 !important;
  border: none !important;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
@media (max-width: 992px) {
  .cid-v7HbPpbAdE .embla__button {
    bottom: 0;
  }
}
.cid-v7HbPpbAdE .embla__button:hover {
  background-color: #b1a374 !important;
  color: #e4d295 !important;
}
.cid-v7HbPpbAdE .embla__button:disabled {
  opacity: .5 !important;
  background-color: #36404c !important;
  color: #121212 !important;
}
.cid-v7HbPpbAdE .embla__button.embla__button--prev {
  left: 20px;
}
@media (max-width: 992px) {
  .cid-v7HbPpbAdE .embla__button.embla__button--prev {
    left: 0;
  }
}
.cid-v7HbPpbAdE .embla__button.embla__button--next {
  right: 20px;
}
@media (max-width: 992px) {
  .cid-v7HbPpbAdE .embla__button.embla__button--next {
    right: 0;
  }
}
.cid-v7HbPpbAdE .embla {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-v7HbPpbAdE .embla {
    padding: 0;
    padding-bottom: 4rem;
  }
}
.cid-v7HbPpbAdE .embla__viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0;
}
@media (max-width: 768px) {
  .cid-v7HbPpbAdE .embla__viewport {
    padding: 0;
  }
}
.cid-v7HbPpbAdE .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-v7HbPpbAdE .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-v7HbPpbAdE .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-v7HbPpbAdE .item-menu-overlay {
  opacity: 0 !important;
}
.cid-v7HbPpbAdE .item-text {
  color: #000000;
}
.cid-v7HbPpbAdE .item-name {
  color: #000000;
}
.cid-v7HbPpbAdE .item-role {
  color: #767676;
}
.cid-v7HbPpbAdE .mbr-star {
  color: #f5b614;
}
.cid-v7HbPnJVAa {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #e4d295;
}
.cid-v7HbPnJVAa .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-v7HbPnJVAa .title {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.cid-v7HbPnJVAa H2 {
  margin: 0;
  width: 100%;
  text-align: center;
  color: #232323;
}
.cid-v7HbPnJVAa h3 {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-v7HbPnJVAa .title {
    margin-bottom: 2rem;
  }
  .cid-v7HbPnJVAa .align-left,
  .cid-v7HbPnJVAa .align-right {
    text-align: center;
  }
}
.cid-v7HbPnJVAa H3 {
  text-align: center;
  color: #232323;
}
.cid-v7LgS5XjSq {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #5b686b;
}
.cid-v7LgS5XjSq .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7LgS5XjSq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7LgS5XjSq .content-wrap {
  margin-bottom: 56px;
}
@media (max-width: 992px) {
  .cid-v7LgS5XjSq .content-wrap {
    margin-bottom: 32px;
  }
}
.cid-v7LgS5XjSq .content-wrap .label-wrapper {
  margin-bottom: 16px;
}
.cid-v7LgS5XjSq .content-wrap .label-wrapper .mbr-label {
  padding: 2px 12px;
  margin-bottom: 0;
  display: inline-block;
  background-color: #f7f7f7;
}
.cid-v7LgS5XjSq .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-v7LgS5XjSq .content-wrap .text-wrapper .mbr-text {
  display: inline-block;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v7LgS5XjSq .content-wrap .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-v7LgS5XjSq .items-wrapper {
  margin: 0 -10px;
}
.cid-v7LgS5XjSq .item {
  padding: 0 10px;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-v7LgS5XjSq .item:last-child {
    margin-bottom: 0;
  }
}
.cid-v7LgS5XjSq .item .item-wrapper {
  height: 100%;
  background-color: #e4d295;
  padding: 8px;
}
.cid-v7LgS5XjSq .item .item-wrapper .card-box {
  height: 100%;
  padding: 24px;
  background-color: #ffffff;
}
.cid-v7LgS5XjSq .item .item-wrapper .card-box .item-img {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-v7LgS5XjSq .item .item-wrapper .card-box .item-img {
    margin-bottom: 24px;
  }
}
.cid-v7LgS5XjSq .item .item-wrapper .card-box .item-img img {
  width: 100%;
  height: 275px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-v7LgS5XjSq .item .item-wrapper .card-box .item-img img {
    height: 300px;
  }
}
.cid-v7LgS5XjSq .item .item-wrapper .card-box .label-wrap {
  margin-bottom: 16px;
}
.cid-v7LgS5XjSq .item .item-wrapper .card-box .label-wrap .item-label {
  padding: 2px 12px;
  margin-bottom: 0;
  display: inline-block;
  background-color: #b1a374;
}
.cid-v7LgS5XjSq .item .item-wrapper .card-box .item-title {
  margin-bottom: 12px;
}
.cid-v7LgS5XjSq .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-v7LgS5XjSq .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 14px;
}
.cid-v7LgS5XjSq .item .item-wrapper .card-box .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-v7LgS5XjSq .mbr-label,
.cid-v7LgS5XjSq .label-wrapper {
  color: #000000;
  text-align: center;
}
.cid-v7LgS5XjSq .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-v7LgS5XjSq .mbr-text,
.cid-v7LgS5XjSq .text-wrapper {
  color: #4f4f4f;
  text-align: center;
}
.cid-v7LgS5XjSq .item-price {
  color: #000000;
}
.cid-v7LgS5XjSq .item-label {
  color: #000000;
}
.cid-v7LgS5XjSq .item-title {
  color: #000000;
}
.cid-v7LgS5XjSq .item-text {
  color: #4f4f4f;
}
.cid-v7LgS5XjSq .item-title,
.cid-v7LgS5XjSq .mbr-section-btn,
.cid-v7LgS5XjSq .iconfont-wrapper {
  color: #cc2952;
}
.cid-v7M5w7EEZU {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #5b686b;
}
.cid-v7M5w7EEZU .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7M5w7EEZU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7M5w7EEZU .content-wrap {
  margin-bottom: 56px;
}
@media (max-width: 992px) {
  .cid-v7M5w7EEZU .content-wrap {
    margin-bottom: 32px;
  }
}
.cid-v7M5w7EEZU .content-wrap .label-wrapper {
  margin-bottom: 16px;
}
.cid-v7M5w7EEZU .content-wrap .label-wrapper .mbr-label {
  padding: 2px 12px;
  margin-bottom: 0;
  display: inline-block;
  background-color: #f7f7f7;
}
.cid-v7M5w7EEZU .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-v7M5w7EEZU .content-wrap .text-wrapper .mbr-text {
  display: inline-block;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v7M5w7EEZU .content-wrap .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-v7M5w7EEZU .items-wrapper {
  margin: 0 -10px;
}
.cid-v7M5w7EEZU .item {
  padding: 0 10px;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-v7M5w7EEZU .item:last-child {
    margin-bottom: 0;
  }
}
.cid-v7M5w7EEZU .item .item-wrapper {
  height: 100%;
  background-color: #e4d295;
  padding: 8px;
}
.cid-v7M5w7EEZU .item .item-wrapper .card-box {
  height: 100%;
  padding: 24px;
  background-color: #ffffff;
}
.cid-v7M5w7EEZU .item .item-wrapper .card-box .item-img {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-v7M5w7EEZU .item .item-wrapper .card-box .item-img {
    margin-bottom: 24px;
  }
}
.cid-v7M5w7EEZU .item .item-wrapper .card-box .item-img img {
  width: 100%;
  height: 275px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-v7M5w7EEZU .item .item-wrapper .card-box .item-img img {
    height: 300px;
  }
}
.cid-v7M5w7EEZU .item .item-wrapper .card-box .label-wrap {
  margin-bottom: 16px;
}
.cid-v7M5w7EEZU .item .item-wrapper .card-box .label-wrap .item-label {
  padding: 2px 12px;
  margin-bottom: 0;
  display: inline-block;
  background-color: #b1a374;
}
.cid-v7M5w7EEZU .item .item-wrapper .card-box .item-title {
  margin-bottom: 12px;
}
.cid-v7M5w7EEZU .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-v7M5w7EEZU .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 14px;
}
.cid-v7M5w7EEZU .item .item-wrapper .card-box .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-v7M5w7EEZU .mbr-label,
.cid-v7M5w7EEZU .label-wrapper {
  color: #000000;
  text-align: center;
}
.cid-v7M5w7EEZU .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-v7M5w7EEZU .mbr-text,
.cid-v7M5w7EEZU .text-wrapper {
  color: #4f4f4f;
  text-align: center;
}
.cid-v7M5w7EEZU .item-price {
  color: #000000;
}
.cid-v7M5w7EEZU .item-label {
  color: #000000;
}
.cid-v7M5w7EEZU .item-title {
  color: #000000;
}
.cid-v7M5w7EEZU .item-text {
  color: #4f4f4f;
}
.cid-v7M5w7EEZU .item-title,
.cid-v7M5w7EEZU .mbr-section-btn,
.cid-v7M5w7EEZU .iconfont-wrapper {
  color: #cc2952;
}
.cid-v7NaUUHy6f {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #5b686b;
}
.cid-v7NaUUHy6f .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7NaUUHy6f .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7NaUUHy6f .content-wrap {
  margin-bottom: 56px;
}
@media (max-width: 992px) {
  .cid-v7NaUUHy6f .content-wrap {
    margin-bottom: 32px;
  }
}
.cid-v7NaUUHy6f .content-wrap .label-wrapper {
  margin-bottom: 16px;
}
.cid-v7NaUUHy6f .content-wrap .label-wrapper .mbr-label {
  padding: 2px 12px;
  margin-bottom: 0;
  display: inline-block;
  background-color: #f7f7f7;
}
.cid-v7NaUUHy6f .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-v7NaUUHy6f .content-wrap .text-wrapper .mbr-text {
  display: inline-block;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v7NaUUHy6f .content-wrap .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-v7NaUUHy6f .items-wrapper {
  margin: 0 -10px;
}
.cid-v7NaUUHy6f .item {
  padding: 0 10px;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-v7NaUUHy6f .item:last-child {
    margin-bottom: 0;
  }
}
.cid-v7NaUUHy6f .item .item-wrapper {
  height: 100%;
  background-color: #e4d295;
  padding: 8px;
}
.cid-v7NaUUHy6f .item .item-wrapper .card-box {
  height: 100%;
  padding: 24px;
  background-color: #ffffff;
}
.cid-v7NaUUHy6f .item .item-wrapper .card-box .item-img {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-v7NaUUHy6f .item .item-wrapper .card-box .item-img {
    margin-bottom: 24px;
  }
}
.cid-v7NaUUHy6f .item .item-wrapper .card-box .item-img img {
  width: 100%;
  height: 275px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-v7NaUUHy6f .item .item-wrapper .card-box .item-img img {
    height: 300px;
  }
}
.cid-v7NaUUHy6f .item .item-wrapper .card-box .label-wrap {
  margin-bottom: 16px;
}
.cid-v7NaUUHy6f .item .item-wrapper .card-box .label-wrap .item-label {
  padding: 2px 12px;
  margin-bottom: 0;
  display: inline-block;
  background-color: #b1a374;
}
.cid-v7NaUUHy6f .item .item-wrapper .card-box .item-title {
  margin-bottom: 12px;
}
.cid-v7NaUUHy6f .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-v7NaUUHy6f .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 14px;
}
.cid-v7NaUUHy6f .item .item-wrapper .card-box .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-v7NaUUHy6f .mbr-label,
.cid-v7NaUUHy6f .label-wrapper {
  color: #000000;
  text-align: center;
}
.cid-v7NaUUHy6f .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-v7NaUUHy6f .mbr-text,
.cid-v7NaUUHy6f .text-wrapper {
  color: #4f4f4f;
  text-align: center;
}
.cid-v7NaUUHy6f .item-price {
  color: #000000;
}
.cid-v7NaUUHy6f .item-label {
  color: #000000;
}
.cid-v7NaUUHy6f .item-title {
  color: #000000;
}
.cid-v7NaUUHy6f .item-text {
  color: #4f4f4f;
}
.cid-v7NaUUHy6f .item-title,
.cid-v7NaUUHy6f .mbr-section-btn,
.cid-v7NaUUHy6f .iconfont-wrapper {
  color: #cc2952;
}
.cid-v7HbPn6nS1 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #121212;
}
.cid-v7HbPn6nS1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7HbPn6nS1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7HbPn6nS1 .row {
  margin: 0 -20px;
}
.cid-v7HbPn6nS1 .row .card {
  padding: 0 20px;
  justify-content: center;
}
.cid-v7HbPn6nS1 .content-wrapper {
  margin-bottom: 40px;
}
.cid-v7HbPn6nS1 .content-wrapper .mbr-label {
  margin-bottom: 12px;
}
.cid-v7HbPn6nS1 .content-wrapper .mbr-section-title {
  margin-bottom: 12px;
}
.cid-v7HbPn6nS1 .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v7HbPn6nS1 .content-wrapper .mbr-section-btn {
  margin-top: 16px;
}
.cid-v7HbPn6nS1 .content-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-v7HbPn6nS1 .mbr-label {
  color: #e4d295;
}
.cid-v7HbPn6nS1 .mbr-section-title {
  color: #ffffff;
}
.cid-v7HbPn6nS1 .mbr-text {
  color: #ffffff;
}
.cid-v7HbPopvA8 {
  padding-top: 15px;
  padding-bottom: 0px;
  background: #232323;
}
.cid-v7HbPopvA8 img {
  width: 125px;
  margin: auto;
  filter: brightness(250%);
}
.cid-v7HbPopvA8 .card {
  transition: opacity 0.3s;
  height: fit-content;
  padding: 1rem 0rem;
  opacity: 0.5;
  margin-bottom: 1rem;
}
.cid-v7HbPopvA8 .card:hover {
  opacity: 0.9;
}
.cid-v7HbPopvA8 H1 {
  color: #ffffff;
}
.cid-v7HbPopvA8 .row {
  justify-content: space-between;
}
@media (min-width: 992px) {
  .cid-v7HbPopvA8 .col-lg-1 {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}
.cid-v7HbPopvA8 .row {
  justify-content: center !important;
}
.cid-v7HbPrCuOk {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #879a9f;
}
.cid-v7HbPrCuOk .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-v7HbPrCuOk .title {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.cid-v7HbPrCuOk H2 {
  margin: 0;
  width: 100%;
  text-align: center;
  color: #232323;
}
.cid-v7HbPrCuOk h3 {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-v7HbPrCuOk .title {
    margin-bottom: 2rem;
  }
  .cid-v7HbPrCuOk .align-left,
  .cid-v7HbPrCuOk .align-right {
    text-align: center;
  }
}
.cid-v7HbPrCuOk H3 {
  text-align: center;
  color: #232323;
}
.cid-v7HbPrCuOk H1 {
  text-align: center;
}
.cid-v7HbPrCuOk H4 {
  text-align: center;
  color: #080000;
}
.cid-v7HbPuU6tm {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #36404c;
}
.cid-v7HbPuU6tm section {
  position: relative;
}
.cid-v7HbPuU6tm h4 {
  margin: 0;
}
.cid-v7HbPuU6tm img {
  height: 100px;
  padding-rigth: 8px;
}
.cid-v7HbPuU6tm a {
  font-weight: 300;
}
.cid-v7HbPuU6tm .img1 {
  color: #f9b03e;
}
.cid-v7HbPuU6tm .img2 {
  color: #f9b03e;
}
.cid-v7HbPuU6tm .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #b1a374;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-v7HbPuU6tm .media-wrap {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-v7HbPuU6tm .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-v7HbPuU6tm .item,
.cid-v7HbPuU6tm .link {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-v7HbPuU6tm .item h4,
.cid-v7HbPuU6tm .link h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-v7HbPuU6tm .link {
  border-bottom: 1px solid #4a535e;
}
@media (max-width: 767px) {
  .cid-v7HbPuU6tm .item {
    justify-content: center;
  }
}
.cid-v7HbPuU6tm .item-title {
  color: #c1c1c1;
}
.cid-v7HbPvIWsm {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #2c333c;
}
.cid-v7HbPvIWsm .mbr-flex {
  display: flex;
  justify-content: flex-end;
}
.cid-v7HbPvIWsm section {
  position: relative;
}
.cid-v7HbPvIWsm h4 {
  margin: 0;
}
.cid-v7HbPvIWsm a {
  font-weight: 300;
}
.cid-v7HbPvIWsm .row {
  align-items: center;
}
.cid-v7HbPvIWsm .item {
  margin: 0 1.5rem;
  display: flex;
  align-items: center;
}
.cid-v7HbPvIWsm .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-v7HbPvIWsm .img1 {
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v7HbPvIWsm .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-v7HbPvIWsm .align-left {
    text-align: center;
  }
  .cid-v7HbPvIWsm .mbr-flex {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-v7HbPvIWsm .mbr-flex {
    flex-direction: column;
    align-items: center;
  }
  .cid-v7HbPvIWsm .item {
    padding-bottom: 0.5rem;
  }
}
.cid-v7HbPvIWsm .item-title {
  color: #c1c1c1;
}
.cid-v7HbPvIWsm H4 {
  color: #c1c1c1;
}
