body {
  font-family: 'Ubuntu-Light';
}
.display-1 {
  font-family: 'Ubuntu-Light';
  font-size: 2.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 3.25rem;
}
.display-2 {
  font-family: 'Ubuntu-Light';
  font-size: 1.8rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2.25rem;
}
.display-4 {
  font-family: 'Ubuntu-Light';
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Ubuntu-Light';
  font-size: 1.6rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2rem;
}
.display-7 {
  font-family: 'Ubuntu-Light';
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 2.08rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.82rem;
    font-size: calc( 1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.28rem + (1.8 - 1.28) * ((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.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #6b6b6b !important;
}
.bg-success {
  background-color: #ff5b34 !important;
}
.bg-info {
  background-color: #3a3e44 !important;
}
.bg-warning {
  background-color: #ff7d5f !important;
}
.bg-danger {
  background-color: #6f7479 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #6b6b6b !important;
  border-color: #6b6b6b !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #404040 !important;
  border-color: #404040 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #404040 !important;
  border-color: #404040 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #54595f !important;
  border-color: #54595f !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #2b2e31 !important;
  border-color: #2b2e31 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #2b2e31 !important;
  border-color: #2b2e31 !important;
}
.btn-info,
.btn-info:active {
  background-color: #3a3e44 !important;
  border-color: #3a3e44 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #121315 !important;
  border-color: #121315 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #121315 !important;
  border-color: #121315 !important;
}
.btn-success,
.btn-success:active {
  background-color: #ff5b34 !important;
  border-color: #ff5b34 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #dc2a00 !important;
  border-color: #dc2a00 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #dc2a00 !important;
  border-color: #dc2a00 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ff7d5f !important;
  border-color: #ff7d5f !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #ff3708 !important;
  border-color: #ff3708 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #ff3708 !important;
  border-color: #ff3708 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #6f7479 !important;
  border-color: #6f7479 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #46494c !important;
  border-color: #46494c !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #46494c !important;
  border-color: #46494c !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6b6b6b;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #404040 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #6b6b6b !important;
  border-color: #6b6b6b !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #54595f;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #2b2e31 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #54595f !important;
  border-color: #54595f !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #3a3e44;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #121315 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #3a3e44 !important;
  border-color: #3a3e44 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff5b34;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #dc2a00 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #ff5b34 !important;
  border-color: #ff5b34 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff7d5f;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ff3708 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #ff7d5f !important;
  border-color: #ff7d5f !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6f7479;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #46494c !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #6f7479 !important;
  border-color: #6f7479 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #6b6b6b !important;
}
.text-secondary {
  color: #54595f !important;
}
.text-success {
  color: #ff5b34 !important;
}
.text-info {
  color: #3a3e44 !important;
}
.text-warning {
  color: #ff7d5f !important;
}
.text-danger {
  color: #6f7479 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #383838 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #242629 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #cd2700 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #0b0c0d !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #f82e00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #3e4144 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  transition: 0.2s;
  position: relative;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0 1.2em;
}
.nav-tabs .nav-link.active {
  color: #6b6b6b;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #3a3e44;
}
.alert-warning {
  background-color: #ff7d5f;
}
.alert-danger {
  background-color: #6f7479;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6b6b6b;
  border-color: #6b6b6b;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #6b6b6b;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ababab;
}
.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: #acb1b8;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #b1b4b7;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Ubuntu-Light';
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #6b6b6b !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Ubuntu-Light';
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #6b6b6b;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6b6b6b;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6b6b6b;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #6b6b6b;
  border-bottom-color: #6b6b6b;
}
.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: #6b6b6b !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #54595f !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%236b6b6b' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-thO1LGq1w9 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-thO1LGq1w9 nav.navbar {
  position: fixed;
}
.cid-thO1LGq1w9 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-thO1LGq1w9 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-thO1LGq1w9 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-thO1LGq1w9 .dropdown-item:hover,
.cid-thO1LGq1w9 .dropdown-item:focus {
  background: #6b6b6b !important;
  color: white !important;
}
.cid-thO1LGq1w9 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-thO1LGq1w9 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-thO1LGq1w9 .nav-dropdown .link {
  padding: 0 !important;
  margin: 0 !important;
}
@media (max-width: 991px) {
  .cid-thO1LGq1w9 .nav-dropdown .link {
    margin: 10px 0 !important;
  }
}
.cid-thO1LGq1w9 .nav-item {
  margin: 0 31px;
}
.cid-thO1LGq1w9 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-thO1LGq1w9 .nav-link {
  position: relative;
}
.cid-thO1LGq1w9 .nav-link:hover,
.cid-thO1LGq1w9 .nav-link:focus,
.cid-thO1LGq1w9 .nav-link:active {
  color: #ff5b34 !important;
}
.cid-thO1LGq1w9 .container {
  display: flex;
  margin: auto;
  flex-wrap: initial;
}
@media (max-width: 991px) {
  .cid-thO1LGq1w9 .container {
    flex-wrap: inherit;
  }
}
.cid-thO1LGq1w9 .navbar-caption:hover,
.cid-thO1LGq1w9 .navbar-caption:focus,
.cid-thO1LGq1w9 .navbar-caption:active {
  color: #3a3e44 !important;
}
.cid-thO1LGq1w9 .dropdown-menu,
.cid-thO1LGq1w9 .navbar.opened {
  background: #fafafa !important;
}
.cid-thO1LGq1w9 .nav-item:focus,
.cid-thO1LGq1w9 .nav-link:focus {
  outline: none;
}
.cid-thO1LGq1w9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-thO1LGq1w9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-thO1LGq1w9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-thO1LGq1w9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-thO1LGq1w9 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #fafafa;
}
.cid-thO1LGq1w9 .navbar.opened {
  transition: all 0.3s;
}
.cid-thO1LGq1w9 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-thO1LGq1w9 .navbar .navbar-logo img {
  width: auto;
}
.cid-thO1LGq1w9 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-thO1LGq1w9 .navbar.collapsed {
  justify-content: center;
}
.cid-thO1LGq1w9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-thO1LGq1w9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-thO1LGq1w9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-thO1LGq1w9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-thO1LGq1w9 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-thO1LGq1w9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-thO1LGq1w9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-thO1LGq1w9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-thO1LGq1w9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-thO1LGq1w9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-thO1LGq1w9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-thO1LGq1w9 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-thO1LGq1w9 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-thO1LGq1w9 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-thO1LGq1w9 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-thO1LGq1w9 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-thO1LGq1w9 .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-thO1LGq1w9 .navbar.navbar-short {
  min-height: 60px;
}
.cid-thO1LGq1w9 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-thO1LGq1w9 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-thO1LGq1w9 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  display: flex;
}
.cid-thO1LGq1w9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-thO1LGq1w9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-thO1LGq1w9 .dropdown-item.active,
.cid-thO1LGq1w9 .dropdown-item:active {
  background-color: transparent;
}
.cid-thO1LGq1w9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-thO1LGq1w9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-thO1LGq1w9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-thO1LGq1w9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-thO1LGq1w9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-thO1LGq1w9 .navbar > .container-fluid {
  flex-wrap: unset;
}
@media (max-width: 991px) {
  .cid-thO1LGq1w9 .navbar > .container-fluid {
    flex-wrap: inherit;
  }
}
.cid-thO1LGq1w9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-thO1LGq1w9 ul.navbar-nav {
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-thO1LGq1w9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-thO1LGq1w9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-thO1LGq1w9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-thO1LGq1w9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-thO1LGq1w9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-thO1LGq1w9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-thO1LGq1w9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-thO1LGq1w9 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-thO1LGq1w9 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-thO1LGq1w9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-thO1LGq1w9 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-thO1LGq1w9 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-thO1LGq1w9 a.nav-link {
    justify-content: flex-start;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-thO1LGq1w9 .navbar {
    height: 70px;
  }
  .cid-thO1LGq1w9 .navbar.opened {
    height: auto;
  }
  .cid-thO1LGq1w9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-thO1LGq1w9 .socials-wrap {
  flex-shrink: 0;
}
.cid-thO1LGq1w9 .socials {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
  margin-right: -20px;
  justify-content: center;
}
.cid-thO1LGq1w9 .socials p {
  margin: 0 20px 0 0;
}
@media (max-width: 991px) {
  .cid-thO1LGq1w9 .socials {
    justify-content: flex-start;
    margin-top: 10px;
  }
}
.cid-thO1LGq1w9 .socials-item .link {
  color: #000000;
}
.cid-thAAQ7LQOx {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-1920x1440.jpg");
}
.cid-thAAQ7LQOx .link-wrapper {
  width: 100%;
}
.cid-thAAQ7LQOx .link {
  display: inline-block;
  position: relative;
  padding-right: 2rem;
  overflow: hidden;
  cursor: pointer;
}
.cid-thAAQ7LQOx .link:before {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(0px);
}
.cid-thAAQ7LQOx .link:after {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0rem;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(-33px);
}
.cid-thAAQ7LQOx .link:hover:before {
  transform: rotate(-45deg) translateX(33px);
}
.cid-thAAQ7LQOx .link:hover:after {
  transform: rotate(-45deg) translateX(0px);
}
.cid-thAAQ7LQOx .mbr-section-title DIV {
  text-align: center;
}
.cid-thAAQ7LQOx .mbr-text,
.cid-thAAQ7LQOx .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-thAAQ7LQOx .link,
.cid-thAAQ7LQOx .link-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-thAAQ7LQOx .mbr-section-title {
  color: #ffffff;
}
.cid-thAAQ7LQOx .mbr-fallback-image.disabled {
  display: none;
}
.cid-thAAQ7LQOx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tl7QLtDwf6 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tl7QLtDwf6 h2,
.cid-tl7QLtDwf6 h4,
.cid-tl7QLtDwf6 p {
  margin: 0;
}
.cid-tl7QLtDwf6 .text {
  order: 2;
  padding-right: 10%;
}
@media (max-width: 1200px) {
  .cid-tl7QLtDwf6 .text {
    padding-right: 0;
  }
}
@media (max-width: 800px) {
  .cid-tl7QLtDwf6 .text {
    margin-top: 30px;
  }
}
@media (max-width: 800px) {
  .cid-tl7QLtDwf6 .image-wrap {
    margin-top: 30px;
    margin-top: 0;
  }
}
.cid-tl7QLtDwf6 img {
  width: 80%;
  aspect-ratio: 1;
  border-radius: 100%;
}
.cid-tl7QLtDwf6 .mbr-section-title {
  color: #ff7d5f;
  margin-bottom: 8px;
}
.cid-tl7QLtDwf6 .mbr-section-subtitle {
  color: #000000;
  margin-bottom: 8px;
  text-align: left;
}
.cid-tl7QLtDwf6 .mbr-text {
  color: #6b6b6b;
  margin-bottom: 30px;
}
.cid-tl7QLtDwf6 .socials {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-tl7QLtDwf6 .socials p {
  margin: 0 20px 0 0;
}
.cid-tl7QLtDwf6 .socials-item .link {
  color: #000000;
}
.cid-ti0jB83Ba9 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ti0jB83Ba9 h2,
.cid-ti0jB83Ba9 h3,
.cid-ti0jB83Ba9 h4,
.cid-ti0jB83Ba9 p {
  margin: 0;
}
.cid-ti0jB83Ba9 .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-ti0jB83Ba9 .mbr-first-section-title {
  color: #000000;
  margin-bottom: 22px;
}
.cid-ti0jB83Ba9 .mbr-first-section-subtitle {
  margin-bottom: 5px;
}
.cid-ti0jB83Ba9 .mbr-first-section-text {
  color: #6b6b6b;
  margin-bottom: 10px;
}
.cid-ti0jB83Ba9 .mbr-second-section-title {
  color: #000000;
  margin-bottom: 22px;
}
.cid-ti0jB83Ba9 .mbr-second-section-subtitle {
  margin-bottom: 5px;
  color: #ff7d5f;
}
.cid-ti0jB83Ba9 .mbr-second-section-text {
  color: #6b6b6b;
  margin-bottom: 10px;
}
.cid-thNQyJ6J1W {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #e9e9e9;
}
@media (max-width: 991px) {
  .cid-thNQyJ6J1W .image-wrapper {
    margin-bottom: 1rem;
    margin-top: 2rem;
  }
}
.cid-thNQyJ6J1W img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-thNQyJ6J1W .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-thNQyJ6J1W .mbr-section-title {
  color: #ff7d5f;
}
.cid-thNQyJ6J1W .mbr-text {
  color: #000000;
}
.cid-thNQyJ6J1W .mbr-description {
  color: #6c7577;
}
.cid-thNQyJ6J1W .mbr-fallback-image.disabled {
  display: none;
}
.cid-thNQyJ6J1W .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-thNHWgbZjA {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/mbr-1920x1440.jpg");
}
.cid-thNHWgbZjA .container {
  max-width: 1312px;
}
.cid-thNHWgbZjA .row {
  padding: 0 1rem;
}
@media (max-width: 991px) {
  .cid-thNHWgbZjA .row {
    padding: 0 0.75rem;
  }
}
.cid-thNHWgbZjA .text-container {
  width: 100%;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-thNHWgbZjA .text-container {
    text-align: center !important;
  }
}
.cid-thNHWgbZjA .mbr-section-title {
  margin-bottom: 5rem;
  width: 100%;
  color: #002549;
}
.cid-thNHWgbZjA .cards-container {
  display: grid;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  grid-auto-columns: 1fr;
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-thNHWgbZjA .cards-container {
    grid-column-gap: 5rem;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .cid-thNHWgbZjA .cards-container {
    max-width: 20rem;
    margin-right: auto;
    margin-left: auto;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    text-align: center !important;
  }
}
.cid-thNHWgbZjA .card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-thNHWgbZjA .card-wrapper {
    margin-left: auto;
    margin-right: auto;
  }
}
.cid-thNHWgbZjA .card-title {
  color: #002549;
  margin-bottom: 1rem;
}
.cid-thNHWgbZjA .card-text {
  color: #ffffff;
}
.cid-thNHWgbZjA .icon-wrap {
  margin-bottom: 1rem;
}
.cid-thNHWgbZjA .icon-box {
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #e1965f;
  text-align: center;
  display: inline-block;
}
.cid-thNHWgbZjA .icon-box span {
  font-size: 2rem;
  color: #e1965f;
  line-height: 1.7;
}
.cid-thNHWgbZjA .mbr-fallback-image.disabled {
  display: none;
}
.cid-thNHWgbZjA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-thNHWgbZjA .card-title,
.cid-thNHWgbZjA .icon-wrap {
  color: #ff7d5f;
}
.cid-thAJVv3rQa {
  padding-top: 45px;
  padding-bottom: 45px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-thAJVv3rQa .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-thAJVv3rQa .mbr-section-title,
.cid-thAJVv3rQa .mbr-section-subtitle,
.cid-thAJVv3rQa .underline {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-thAJVv3rQa .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-thAJVv3rQa .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-thAJVv3rQa .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-thAJVv3rQa .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-thAJVv3rQa .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fafafa;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #fafafa, #fafafa);
}
.cid-thAJVv3rQa .icon-focus {
  display: none;
}
.cid-thAJVv3rQa .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: center;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-thAJVv3rQa ul {
  font-size: 0;
}
.cid-thAJVv3rQa .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #333333 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s, transform 0.2s;
}
.cid-thAJVv3rQa .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
  position: relative;
}
.cid-thAJVv3rQa .mbr-gallery-filter ul li.active .btn:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #c19b76;
}
.cid-thAJVv3rQa .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-thAJVv3rQa .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-thAJVv3rQa .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-thAJVv3rQa .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-thAJVv3rQa .btn:hover {
  background: transparent !important;
}
.cid-thAJVv3rQa .btn:hover:before {
  background: transparent !important;
}
.cid-thAJVv3rQa .btn:before {
  background-color: transparent !important;
}
.cid-thAJVv3rQa .btn:focus {
  box-shadow: none;
  background: transparent !important;
}
.cid-tl7Sqpic5h {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ff7d5f;
}
@media (max-width: 767px) {
  .cid-tl7Sqpic5h .md-pb {
    margin-bottom: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-tl7Sqpic5h .card {
    margin-top: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tl7Sqpic5h .wrapper {
    padding: 0 0 0 62px;
  }
}
@media (min-width: 767px) {
  .cid-tl7Sqpic5h .row {
    margin: 0;
  }
}
.cid-tl7Sqpic5h .mbr-text {
  color: #040404;
  transition: all .5s;
}
.cid-tl7Sqpic5h .mbr-title {
  color: #000000;
}
.cid-thO2e9w4Z7 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-thO2e9w4Z7 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.7;
}
.cid-thO2e9w4Z7 h3 {
  margin: 0;
}
.cid-thO2e9w4Z7 .content {
  padding: 0 45px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 767px) {
  .cid-thO2e9w4Z7 .content {
    padding: 0 1rem;
    flex-direction: column-reverse;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .cid-thO2e9w4Z7 .text-wrap {
    margin-bottom: 1rem;
  }
}
.cid-thO2e9w4Z7 .mbr-brand {
  color: #000000;
  font-weight: 600;
  text-align: right;
}
@media (max-width: 767px) {
  .cid-thO2e9w4Z7 .mbr-brand {
    text-align: center;
  }
}
.cid-thO2e9w4Z7 .mbr-text {
  color: #2d2727;
  margin: 10px 0 0;
  font-weight: 300;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-thO2e9w4Z7 .mbr-text {
    text-align: center;
  }
}
.cid-thO2e9w4Z7 .socials {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-thO2e9w4Z7 .socials p {
  margin: 0 20px 0 0;
}
@media (max-width: 767px) {
  .cid-thO2e9w4Z7 .socials {
    margin-right: -20px;
  }
}
.cid-thO2e9w4Z7 .socials-item .link {
  color: #000000;
}
.cid-thO2e9w4Z7 .footer-lower .copyright {
  margin-bottom: 1rem;
}
.cid-thO2e9w4Z7 .footer-lower hr {
  margin: 1rem 0;
  height: 1px;
  background-color: #000000;
  border: none;
}
.cid-thO2e9w4Z7 .copyright > p {
  text-align: left;
  color: #000000;
}
.cid-thO2e9w4Z7 .socials-item,
.cid-thO2e9w4Z7 .link P {
  color: #000000;
}
.cid-tl7VcP3TFj {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tl7VcP3TFj nav.navbar {
  position: fixed;
}
.cid-tl7VcP3TFj .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tl7VcP3TFj .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tl7VcP3TFj .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tl7VcP3TFj .dropdown-item:hover,
.cid-tl7VcP3TFj .dropdown-item:focus {
  background: #6b6b6b !important;
  color: white !important;
}
.cid-tl7VcP3TFj .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tl7VcP3TFj .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tl7VcP3TFj .nav-dropdown .link {
  padding: 0 !important;
  margin: 0 !important;
}
@media (max-width: 991px) {
  .cid-tl7VcP3TFj .nav-dropdown .link {
    margin: 10px 0 !important;
  }
}
.cid-tl7VcP3TFj .nav-item {
  margin: 0 31px;
}
.cid-tl7VcP3TFj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tl7VcP3TFj .nav-link {
  position: relative;
}
.cid-tl7VcP3TFj .nav-link:hover,
.cid-tl7VcP3TFj .nav-link:focus,
.cid-tl7VcP3TFj .nav-link:active {
  color: #a46b07 !important;
}
.cid-tl7VcP3TFj .container {
  display: flex;
  margin: auto;
  flex-wrap: initial;
}
@media (max-width: 991px) {
  .cid-tl7VcP3TFj .container {
    flex-wrap: inherit;
  }
}
.cid-tl7VcP3TFj .navbar-caption:hover,
.cid-tl7VcP3TFj .navbar-caption:focus,
.cid-tl7VcP3TFj .navbar-caption:active {
  color: #a46b07 !important;
}
.cid-tl7VcP3TFj .dropdown-menu,
.cid-tl7VcP3TFj .navbar.opened {
  background: #fafafa !important;
}
.cid-tl7VcP3TFj .nav-item:focus,
.cid-tl7VcP3TFj .nav-link:focus {
  outline: none;
}
.cid-tl7VcP3TFj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tl7VcP3TFj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tl7VcP3TFj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tl7VcP3TFj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tl7VcP3TFj .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #fafafa;
}
.cid-tl7VcP3TFj .navbar.opened {
  transition: all 0.3s;
}
.cid-tl7VcP3TFj .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tl7VcP3TFj .navbar .navbar-logo img {
  width: auto;
}
.cid-tl7VcP3TFj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tl7VcP3TFj .navbar.collapsed {
  justify-content: center;
}
.cid-tl7VcP3TFj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tl7VcP3TFj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tl7VcP3TFj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tl7VcP3TFj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tl7VcP3TFj .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tl7VcP3TFj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tl7VcP3TFj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tl7VcP3TFj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tl7VcP3TFj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tl7VcP3TFj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tl7VcP3TFj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tl7VcP3TFj .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tl7VcP3TFj .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tl7VcP3TFj .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tl7VcP3TFj .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tl7VcP3TFj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tl7VcP3TFj .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-tl7VcP3TFj .navbar.navbar-short {
  min-height: 60px;
}
.cid-tl7VcP3TFj .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tl7VcP3TFj .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tl7VcP3TFj .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  display: flex;
}
.cid-tl7VcP3TFj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tl7VcP3TFj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tl7VcP3TFj .dropdown-item.active,
.cid-tl7VcP3TFj .dropdown-item:active {
  background-color: transparent;
}
.cid-tl7VcP3TFj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tl7VcP3TFj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tl7VcP3TFj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tl7VcP3TFj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-tl7VcP3TFj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tl7VcP3TFj .navbar > .container-fluid {
  flex-wrap: unset;
}
@media (max-width: 991px) {
  .cid-tl7VcP3TFj .navbar > .container-fluid {
    flex-wrap: inherit;
  }
}
.cid-tl7VcP3TFj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tl7VcP3TFj ul.navbar-nav {
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tl7VcP3TFj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tl7VcP3TFj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tl7VcP3TFj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tl7VcP3TFj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tl7VcP3TFj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tl7VcP3TFj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tl7VcP3TFj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tl7VcP3TFj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tl7VcP3TFj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tl7VcP3TFj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tl7VcP3TFj .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tl7VcP3TFj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tl7VcP3TFj a.nav-link {
    justify-content: flex-start;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tl7VcP3TFj .navbar {
    height: 70px;
  }
  .cid-tl7VcP3TFj .navbar.opened {
    height: auto;
  }
  .cid-tl7VcP3TFj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tl7VcP3TFj .socials-wrap {
  flex-shrink: 0;
}
.cid-tl7VcP3TFj .socials {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
  margin-right: -20px;
  justify-content: center;
}
.cid-tl7VcP3TFj .socials p {
  margin: 0 20px 0 0;
}
@media (max-width: 991px) {
  .cid-tl7VcP3TFj .socials {
    justify-content: flex-start;
    margin-top: 10px;
  }
}
.cid-tl7VcP3TFj .socials-item .link {
  color: #000000;
}
.cid-tl7VL57FU2 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tl7VL57FU2 h2,
.cid-tl7VL57FU2 h3,
.cid-tl7VL57FU2 h4,
.cid-tl7VL57FU2 p {
  margin: 0;
}
.cid-tl7VL57FU2 .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-tl7VL57FU2 .mbr-section-title {
  color: #000000;
  margin-bottom: 10px;
}
.cid-tl7VL57FU2 .mbr-text {
  color: #6b6b6b;
  margin: 10px 0;
}
.cid-tl7VcToD0e {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-tl7VcToD0e .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.7;
}
.cid-tl7VcToD0e h3 {
  margin: 0;
}
.cid-tl7VcToD0e .content {
  padding: 0 45px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 767px) {
  .cid-tl7VcToD0e .content {
    padding: 0 1rem;
    flex-direction: column-reverse;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .cid-tl7VcToD0e .text-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tl7VcToD0e .mbr-brand {
  color: #000000;
  font-weight: 600;
  text-align: right;
}
@media (max-width: 767px) {
  .cid-tl7VcToD0e .mbr-brand {
    text-align: center;
  }
}
.cid-tl7VcToD0e .mbr-text {
  color: #2d2727;
  margin: 10px 0 0;
  font-weight: 300;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-tl7VcToD0e .mbr-text {
    text-align: center;
  }
}
.cid-tl7VcToD0e .socials {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-tl7VcToD0e .socials p {
  margin: 0 20px 0 0;
}
@media (max-width: 767px) {
  .cid-tl7VcToD0e .socials {
    margin-right: -20px;
  }
}
.cid-tl7VcToD0e .socials-item .link {
  color: #000000;
}
.cid-tl7VcToD0e .footer-lower .copyright {
  margin-bottom: 1rem;
}
.cid-tl7VcToD0e .footer-lower hr {
  margin: 1rem 0;
  height: 1px;
  background-color: #000000;
  border: none;
}
.cid-tl7VcToD0e .copyright > p {
  text-align: left;
  color: #000000;
}
.cid-tl7VcToD0e .socials-item,
.cid-tl7VcToD0e .link P {
  color: #000000;
}
.cid-tl7VcP3TFj {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tl7VcP3TFj nav.navbar {
  position: fixed;
}
.cid-tl7VcP3TFj .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tl7VcP3TFj .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tl7VcP3TFj .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tl7VcP3TFj .dropdown-item:hover,
.cid-tl7VcP3TFj .dropdown-item:focus {
  background: #6b6b6b !important;
  color: white !important;
}
.cid-tl7VcP3TFj .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tl7VcP3TFj .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tl7VcP3TFj .nav-dropdown .link {
  padding: 0 !important;
  margin: 0 !important;
}
@media (max-width: 991px) {
  .cid-tl7VcP3TFj .nav-dropdown .link {
    margin: 10px 0 !important;
  }
}
.cid-tl7VcP3TFj .nav-item {
  margin: 0 31px;
}
.cid-tl7VcP3TFj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tl7VcP3TFj .nav-link {
  position: relative;
}
.cid-tl7VcP3TFj .nav-link:hover,
.cid-tl7VcP3TFj .nav-link:focus,
.cid-tl7VcP3TFj .nav-link:active {
  color: #ff5b34 !important;
}
.cid-tl7VcP3TFj .container {
  display: flex;
  margin: auto;
  flex-wrap: initial;
}
@media (max-width: 991px) {
  .cid-tl7VcP3TFj .container {
    flex-wrap: inherit;
  }
}
.cid-tl7VcP3TFj .navbar-caption:hover,
.cid-tl7VcP3TFj .navbar-caption:focus,
.cid-tl7VcP3TFj .navbar-caption:active {
  color: #3a3e44 !important;
}
.cid-tl7VcP3TFj .dropdown-menu,
.cid-tl7VcP3TFj .navbar.opened {
  background: #fafafa !important;
}
.cid-tl7VcP3TFj .nav-item:focus,
.cid-tl7VcP3TFj .nav-link:focus {
  outline: none;
}
.cid-tl7VcP3TFj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tl7VcP3TFj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tl7VcP3TFj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tl7VcP3TFj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tl7VcP3TFj .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #fafafa;
}
.cid-tl7VcP3TFj .navbar.opened {
  transition: all 0.3s;
}
.cid-tl7VcP3TFj .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tl7VcP3TFj .navbar .navbar-logo img {
  width: auto;
}
.cid-tl7VcP3TFj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tl7VcP3TFj .navbar.collapsed {
  justify-content: center;
}
.cid-tl7VcP3TFj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tl7VcP3TFj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tl7VcP3TFj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tl7VcP3TFj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tl7VcP3TFj .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tl7VcP3TFj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tl7VcP3TFj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tl7VcP3TFj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tl7VcP3TFj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tl7VcP3TFj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tl7VcP3TFj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tl7VcP3TFj .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tl7VcP3TFj .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tl7VcP3TFj .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tl7VcP3TFj .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tl7VcP3TFj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tl7VcP3TFj .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-tl7VcP3TFj .navbar.navbar-short {
  min-height: 60px;
}
.cid-tl7VcP3TFj .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tl7VcP3TFj .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tl7VcP3TFj .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  display: flex;
}
.cid-tl7VcP3TFj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tl7VcP3TFj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tl7VcP3TFj .dropdown-item.active,
.cid-tl7VcP3TFj .dropdown-item:active {
  background-color: transparent;
}
.cid-tl7VcP3TFj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tl7VcP3TFj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tl7VcP3TFj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tl7VcP3TFj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-tl7VcP3TFj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tl7VcP3TFj .navbar > .container-fluid {
  flex-wrap: unset;
}
@media (max-width: 991px) {
  .cid-tl7VcP3TFj .navbar > .container-fluid {
    flex-wrap: inherit;
  }
}
.cid-tl7VcP3TFj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tl7VcP3TFj ul.navbar-nav {
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tl7VcP3TFj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tl7VcP3TFj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tl7VcP3TFj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tl7VcP3TFj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tl7VcP3TFj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tl7VcP3TFj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tl7VcP3TFj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tl7VcP3TFj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tl7VcP3TFj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tl7VcP3TFj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tl7VcP3TFj .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tl7VcP3TFj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tl7VcP3TFj a.nav-link {
    justify-content: flex-start;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tl7VcP3TFj .navbar {
    height: 70px;
  }
  .cid-tl7VcP3TFj .navbar.opened {
    height: auto;
  }
  .cid-tl7VcP3TFj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tl7VcP3TFj .socials-wrap {
  flex-shrink: 0;
}
.cid-tl7VcP3TFj .socials {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
  margin-right: -20px;
  justify-content: center;
}
.cid-tl7VcP3TFj .socials p {
  margin: 0 20px 0 0;
}
@media (max-width: 991px) {
  .cid-tl7VcP3TFj .socials {
    justify-content: flex-start;
    margin-top: 10px;
  }
}
.cid-tl7VcP3TFj .socials-item .link {
  color: #000000;
}
.cid-tuKjQPAhhy {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tuKjQPAhhy h2,
.cid-tuKjQPAhhy h3,
.cid-tuKjQPAhhy h4,
.cid-tuKjQPAhhy p {
  margin: 0;
}
.cid-tuKjQPAhhy .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-tuKjQPAhhy .mbr-section-title {
  color: #000000;
  margin-bottom: 10px;
}
.cid-tuKjQPAhhy .mbr-text {
  color: #6b6b6b;
  margin: 10px 0;
}
.cid-tl7VcToD0e {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-tl7VcToD0e .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.7;
}
.cid-tl7VcToD0e h3 {
  margin: 0;
}
.cid-tl7VcToD0e .content {
  padding: 0 45px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 767px) {
  .cid-tl7VcToD0e .content {
    padding: 0 1rem;
    flex-direction: column-reverse;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .cid-tl7VcToD0e .text-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tl7VcToD0e .mbr-brand {
  color: #000000;
  font-weight: 600;
  text-align: right;
}
@media (max-width: 767px) {
  .cid-tl7VcToD0e .mbr-brand {
    text-align: center;
  }
}
.cid-tl7VcToD0e .mbr-text {
  color: #2d2727;
  margin: 10px 0 0;
  font-weight: 300;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-tl7VcToD0e .mbr-text {
    text-align: center;
  }
}
.cid-tl7VcToD0e .socials {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-tl7VcToD0e .socials p {
  margin: 0 20px 0 0;
}
@media (max-width: 767px) {
  .cid-tl7VcToD0e .socials {
    margin-right: -20px;
  }
}
.cid-tl7VcToD0e .socials-item .link {
  color: #000000;
}
.cid-tl7VcToD0e .footer-lower .copyright {
  margin-bottom: 1rem;
}
.cid-tl7VcToD0e .footer-lower hr {
  margin: 1rem 0;
  height: 1px;
  background-color: #000000;
  border: none;
}
.cid-tl7VcToD0e .copyright > p {
  text-align: left;
  color: #000000;
}
.cid-tl7VcToD0e .socials-item,
.cid-tl7VcToD0e .link P {
  color: #000000;
}
