body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  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: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((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: #3d1528 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #6c87b7 !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #3d1528 !important;
  border-color: #3d1528 !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: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #b26f00 !important;
  border-color: #b26f00 !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: #5b3900 !important;
  border-color: #5b3900 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #5b3900 !important;
  border-color: #5b3900 !important;
}
.btn-info,
.btn-info:active {
  background-color: #6c87b7 !important;
  border-color: #6c87b7 !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: #435c89 !important;
  border-color: #435c89 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #435c89 !important;
  border-color: #435c89 !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !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: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !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: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !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: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !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: #3d1528;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000000 !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: #3d1528 !important;
  border-color: #3d1528 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #b26f00;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #5b3900 !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: #b26f00 !important;
  border-color: #b26f00 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6c87b7;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #435c89 !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: #6c87b7 !important;
  border-color: #6c87b7 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !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: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !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: #ff9966 !important;
  border-color: #ff9966 !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: #3d1528 !important;
}
.text-secondary {
  color: #b26f00 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #6c87b7 !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #4c2f00 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #3e557f !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !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) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #3d1528;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #6c87b7;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #3d1528;
  border-color: #3d1528;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #3d1528;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #cc6b99;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #c2cde1;
}
.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: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.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: #3d1528 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #3d1528;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #3d1528;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #3d1528;
}
.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: #3d1528;
  border-bottom-color: #3d1528;
}
.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: #3d1528 !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: #b26f00 !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='%233d1528' %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-tuKlANSi5y {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #130e0c;
}
.cid-tuKlANSi5y .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-tuKlANSi5y .mbr-section-subtitle B {
  color: #ffffff;
}
.cid-tuKlANSi5y H2 {
  color: #e7b03d;
  text-align: left;
}
.cid-tuKlANSi5y B {
  color: #f7ed4a;
}
.cid-tuKlANSi5y .mbr-section-subtitle DIV {
  color: #ffffff;
  text-align: left;
}
.cid-tt9bZ4Lar8 {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tt9bZ4Lar8 img,
.cid-tt9bZ4Lar8 .item-img {
  width: 100%;
}
.cid-tt9bZ4Lar8 .item:focus,
.cid-tt9bZ4Lar8 span:focus {
  outline: none;
}
.cid-tt9bZ4Lar8 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tt9bZ4Lar8 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tt9bZ4Lar8 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tt9bZ4Lar8 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tt9bZ4Lar8 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tt9bZ4Lar8 .mbr-section-title {
  color: #232323;
}
.cid-tt9bZ4Lar8 .mbr-text,
.cid-tt9bZ4Lar8 .mbr-section-btn {
  text-align: center;
  color: #e7b03d;
}
.cid-tt9bZ4Lar8 .item-subtitle {
  text-align: center;
  color: #fafafa;
}
.cid-uqyMI8TW6n {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uqyMI8TW6n .mbr-text {
  text-align: center;
  color: #6c87b7;
}
.cid-uqyMI8TW6n .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uqyMI8TW6n .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-u2FfqL2eC8 {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-u2FfqL2eC8 .mbr-text {
  text-align: center;
  color: #fafafa;
}
.cid-u2FfqL2eC8 .mbr-section-title {
  color: #7f6b75;
  text-align: center;
}
.cid-u2FfqL2eC8 .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-tt95gQs22K {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #6c87b7;
}
.cid-tt95gQs22K .mbr-fallback-image.disabled {
  display: none;
}
.cid-tt95gQs22K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tt95gQs22K .mbr-section-title {
  color: #5b1a39;
}
.cid-u1XlHtqXZF {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #6c87b7;
}
.cid-u1XlHtqXZF .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1XlHtqXZF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u1XlHtqXZF .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u1XlHtqXZF .bg-facebook:hover {
  background: #0b60cb;
}
.cid-u1XlHtqXZF .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-u1XlHtqXZF [class^="socicon-"]:before,
.cid-u1XlHtqXZF [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-u1XlHtqXZF .mbr-section-title,
.cid-u1XlHtqXZF .social-list {
  color: #5b1a39;
}
.cid-tt8OjipIdg {
  padding-top: 0rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/dd4e93418fab4c1b10c40510dd0a1d2e2-2000x1414.jpg");
}
.cid-tt8OjipIdg .mbr-section-title {
  color: #fafafa;
}
.cid-tt8OjipIdg .mbr-section-subtitle {
  color: #76550f;
}
.cid-tt8OjipIdg .mbr-text,
.cid-tt8OjipIdg .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-tu91F8KZDs {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #6c87b7;
}
.cid-tu91F8KZDs .mbr-fallback-image.disabled {
  display: none;
}
.cid-tu91F8KZDs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tu91F8KZDs .mbr-section-title {
  color: #ffffff;
}
.cid-tt8PqZCvat {
  padding-top: 9rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/fun01-880x391.jpg");
}
@media (max-width: 991px) {
  .cid-tt8PqZCvat .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tt8PqZCvat img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tt8PqZCvat .text-wrapper {
    padding: 2rem;
  }
}
.cid-tt8PqZCvat .mbr-section-title {
  color: #bed3f9;
}
.cid-tt8PqZCvat .mbr-text {
  color: #fafafa;
}
.cid-tt8PqZCvat .mbr-description {
  color: #fafafa;
}
.cid-tt9l58VHp7 {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/dnbcovelogo-1-1800x1068.jpg");
}
.cid-tt9l58VHp7 .content-wrapper {
  background: #6c87b7;
}
@media (max-width: 991px) {
  .cid-tt9l58VHp7 .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-tt9l58VHp7 .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tt9l58VHp7 .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tt9l58VHp7 .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tt9l58VHp7 .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tt9l58VHp7 .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-tt9l58VHp7 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tt9l58VHp7 .mbr-text,
.cid-tt9l58VHp7 .mbr-section-btn {
  color: #3d1528;
}
.cid-tt9l58VHp7 .card-title {
  color: #3d1528;
}
.cid-tu94wklq8u {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #6c87b7;
}
.cid-tu94wklq8u .mbr-fallback-image.disabled {
  display: none;
}
.cid-tu94wklq8u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tu94wklq8u .mbr-section-title {
  color: #ffffff;
}
.cid-tt8Pnh9jN1 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #3d1528;
}
@media (max-width: 991px) {
  .cid-tt8Pnh9jN1 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tt8Pnh9jN1 .row {
  flex-direction: row-reverse;
}
.cid-tt8Pnh9jN1 img {
  width: 100%;
}
.cid-tt8Pnh9jN1 .mbr-description {
  color: #ffffff;
}
.cid-tNwosEwlqz {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/image28-926x521.jpg");
}
.cid-tNwosEwlqz .content-wrapper {
  background: #3d1528;
}
@media (max-width: 991px) {
  .cid-tNwosEwlqz .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tNwosEwlqz .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tNwosEwlqz .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tNwosEwlqz .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tNwosEwlqz .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-tNwosEwlqz .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tNwosEwlqz .card-title {
  color: #bed3f9;
}
.cid-tNwosEwlqz .mbr-text,
.cid-tNwosEwlqz .mbr-section-btn {
  color: #ffffff;
}
.cid-tLD5sz2hE7 {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #63789d;
}
.cid-tLD5sz2hE7 .content-wrapper {
  background: #3d1528;
}
@media (max-width: 991px) {
  .cid-tLD5sz2hE7 .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tLD5sz2hE7 .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tLD5sz2hE7 .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tLD5sz2hE7 .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tLD5sz2hE7 .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-tLD5sz2hE7 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tLD5sz2hE7 .card-title {
  color: #6c87b7;
}
.cid-tLD5sz2hE7 .mbr-text,
.cid-tLD5sz2hE7 .mbr-section-btn {
  color: #fafafa;
}
.cid-tUu5lNfpRv {
  padding-top: 4rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/blackvinyl3-1500x1500.jpg");
}
.cid-tUu5lNfpRv .content-wrapper {
  background: #6c87b7;
}
@media (max-width: 991px) {
  .cid-tUu5lNfpRv .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tUu5lNfpRv .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tUu5lNfpRv .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tUu5lNfpRv .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tUu5lNfpRv .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-tUu5lNfpRv .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tUu5lNfpRv .card-title {
  color: #1a315b;
}
.cid-tUu5lNfpRv .mbr-text,
.cid-tUu5lNfpRv .mbr-section-btn {
  color: #000000;
}
.cid-tu951H3V0Z {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #6c87b7;
}
.cid-tu951H3V0Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-tu951H3V0Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tu951H3V0Z .mbr-section-title {
  color: #ffffff;
}
.cid-tz46SvVbqc {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/vintage-radio-600x600.jpg");
}
.cid-tz46SvVbqc .content-wrapper {
  background: #3d1528;
}
@media (max-width: 991px) {
  .cid-tz46SvVbqc .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-tz46SvVbqc .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tz46SvVbqc .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tz46SvVbqc .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tz46SvVbqc .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tz46SvVbqc .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-tz46SvVbqc .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tz46SvVbqc .mbr-text,
.cid-tz46SvVbqc .mbr-section-btn {
  color: #ffffff;
}
.cid-tz46SvVbqc .card-title {
  color: #bed3f9;
}
.cid-tu91lPubFC {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #6c87b7;
}
.cid-tu91lPubFC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tu91lPubFC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tu91lPubFC .mbr-section-title {
  color: #fafafa;
}
.cid-tu98L7XXLN {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/412602431-898882365015890-3237288541239074526-n-960x640.jpg");
}
.cid-tu98L7XXLN .content-wrapper {
  background: #3d1528;
}
@media (max-width: 991px) {
  .cid-tu98L7XXLN .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-tu98L7XXLN .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tu98L7XXLN .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tu98L7XXLN .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tu98L7XXLN .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tu98L7XXLN .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-tu98L7XXLN .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tu98L7XXLN .mbr-text,
.cid-tu98L7XXLN .mbr-section-btn {
  color: #ffffff;
}
.cid-tu98L7XXLN .card-title {
  color: #ffffff;
}
.cid-u2FmeZzm3t {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #6c87b7;
}
.cid-u2FmeZzm3t .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2FmeZzm3t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2Fo0q5H3N {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #6c87b7;
}
.cid-u2Fo0q5H3N .mbr-text {
  text-align: left;
  color: #8e8d8a;
}
.cid-u2Fo0q5H3N .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uU8I56sChU {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #5b1a39;
}
.cid-uU8I56sChU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uU8I56sChU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uU8I56sChU .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uU8I56sChU .row {
  flex-direction: row-reverse;
}
.cid-uU8I56sChU img {
  width: 100%;
}
.cid-tt8PsUctsn {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #232323;
}
.cid-tt8PsUctsn .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tt8PsUctsn .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tt8PsUctsn .row {
    text-align: center;
  }
  .cid-tt8PsUctsn .row > div {
    margin: auto;
  }
  .cid-tt8PsUctsn .social-row {
    justify-content: center;
  }
}
.cid-tt8PsUctsn .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tt8PsUctsn .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tt8PsUctsn .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tt8PsUctsn .list {
    margin-bottom: 0rem;
  }
}
.cid-tt8PsUctsn .mbr-text {
  color: #bbbbbb;
}
.cid-tt8PsUctsn .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tt8PsUctsn .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tt8PsUctsn div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-ttqpktWk4B {
  z-index: 1000;
  width: 100%;
}
.cid-ttqpktWk4B nav.navbar {
  position: fixed;
}
.cid-ttqpktWk4B .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-ttqpktWk4B .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ttqpktWk4B .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ttqpktWk4B .dropdown-item:hover,
.cid-ttqpktWk4B .dropdown-item:focus {
  background: #3d1528 !important;
  color: white !important;
}
.cid-ttqpktWk4B .dropdown-item:hover span {
  color: white;
}
.cid-ttqpktWk4B .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ttqpktWk4B .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ttqpktWk4B .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ttqpktWk4B .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ttqpktWk4B .nav-link {
  position: relative;
}
.cid-ttqpktWk4B .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ttqpktWk4B .container {
    flex-wrap: wrap;
  }
}
.cid-ttqpktWk4B .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ttqpktWk4B .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ttqpktWk4B .iconfont-wrapper {
  color: #6592e6 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ttqpktWk4B .dropdown-menu,
.cid-ttqpktWk4B .navbar.opened {
  background: #6c87b7 !important;
}
.cid-ttqpktWk4B .nav-item:focus,
.cid-ttqpktWk4B .nav-link:focus {
  outline: none;
}
.cid-ttqpktWk4B .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ttqpktWk4B .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ttqpktWk4B .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ttqpktWk4B .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttqpktWk4B .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ttqpktWk4B .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ttqpktWk4B .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #6c87b7;
}
.cid-ttqpktWk4B .navbar.opened {
  transition: all 0.3s;
}
.cid-ttqpktWk4B .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ttqpktWk4B .navbar .navbar-logo img {
  width: auto;
}
.cid-ttqpktWk4B .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ttqpktWk4B .navbar.collapsed {
  justify-content: center;
}
.cid-ttqpktWk4B .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ttqpktWk4B .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ttqpktWk4B .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-ttqpktWk4B .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ttqpktWk4B .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ttqpktWk4B .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-ttqpktWk4B .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ttqpktWk4B .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ttqpktWk4B .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ttqpktWk4B .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ttqpktWk4B .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ttqpktWk4B .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ttqpktWk4B .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ttqpktWk4B .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-ttqpktWk4B .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ttqpktWk4B .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ttqpktWk4B .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ttqpktWk4B .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ttqpktWk4B .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ttqpktWk4B .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ttqpktWk4B .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ttqpktWk4B .navbar.navbar-short {
  min-height: 60px;
}
.cid-ttqpktWk4B .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ttqpktWk4B .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ttqpktWk4B .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;
}
.cid-ttqpktWk4B .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ttqpktWk4B .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ttqpktWk4B .dropdown-item.active,
.cid-ttqpktWk4B .dropdown-item:active {
  background-color: transparent;
}
.cid-ttqpktWk4B .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ttqpktWk4B .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ttqpktWk4B .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ttqpktWk4B .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6c87b7;
}
.cid-ttqpktWk4B .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ttqpktWk4B .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ttqpktWk4B ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ttqpktWk4B .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ttqpktWk4B button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ttqpktWk4B button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffe885;
}
.cid-ttqpktWk4B button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ttqpktWk4B button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ttqpktWk4B button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ttqpktWk4B button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ttqpktWk4B nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ttqpktWk4B nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ttqpktWk4B nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ttqpktWk4B nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ttqpktWk4B .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ttqpktWk4B a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ttqpktWk4B .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ttqpktWk4B .navbar {
    height: 70px;
  }
  .cid-ttqpktWk4B .navbar.opened {
    height: auto;
  }
  .cid-ttqpktWk4B .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ttkpcSCRDa {
  padding-top: 10rem;
  padding-bottom: 3rem;
  background-color: #3d1528;
}
.cid-ttkpcSCRDa .mbr-text {
  color: #bbbbbb;
}
.cid-ttkpcSCRDa .mbr-section-subtitle {
  color: #7f6b75;
}
.cid-tt8PsUctsn {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #232323;
}
.cid-tt8PsUctsn .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tt8PsUctsn .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tt8PsUctsn .row {
    text-align: center;
  }
  .cid-tt8PsUctsn .row > div {
    margin: auto;
  }
  .cid-tt8PsUctsn .social-row {
    justify-content: center;
  }
}
.cid-tt8PsUctsn .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tt8PsUctsn .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tt8PsUctsn .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tt8PsUctsn .list {
    margin-bottom: 0rem;
  }
}
.cid-tt8PsUctsn .mbr-text {
  color: #bbbbbb;
}
.cid-tt8PsUctsn .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tt8PsUctsn .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tt8PsUctsn div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-ttqpktWk4B {
  z-index: 1000;
  width: 100%;
}
.cid-ttqpktWk4B nav.navbar {
  position: fixed;
}
.cid-ttqpktWk4B .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-ttqpktWk4B .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ttqpktWk4B .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ttqpktWk4B .dropdown-item:hover,
.cid-ttqpktWk4B .dropdown-item:focus {
  background: #3d1528 !important;
  color: white !important;
}
.cid-ttqpktWk4B .dropdown-item:hover span {
  color: white;
}
.cid-ttqpktWk4B .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ttqpktWk4B .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ttqpktWk4B .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ttqpktWk4B .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ttqpktWk4B .nav-link {
  position: relative;
}
.cid-ttqpktWk4B .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ttqpktWk4B .container {
    flex-wrap: wrap;
  }
}
.cid-ttqpktWk4B .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ttqpktWk4B .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ttqpktWk4B .iconfont-wrapper {
  color: #6592e6 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ttqpktWk4B .dropdown-menu,
.cid-ttqpktWk4B .navbar.opened {
  background: #6c87b7 !important;
}
.cid-ttqpktWk4B .nav-item:focus,
.cid-ttqpktWk4B .nav-link:focus {
  outline: none;
}
.cid-ttqpktWk4B .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ttqpktWk4B .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ttqpktWk4B .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ttqpktWk4B .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttqpktWk4B .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ttqpktWk4B .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ttqpktWk4B .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #6c87b7;
}
.cid-ttqpktWk4B .navbar.opened {
  transition: all 0.3s;
}
.cid-ttqpktWk4B .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ttqpktWk4B .navbar .navbar-logo img {
  width: auto;
}
.cid-ttqpktWk4B .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ttqpktWk4B .navbar.collapsed {
  justify-content: center;
}
.cid-ttqpktWk4B .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ttqpktWk4B .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ttqpktWk4B .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-ttqpktWk4B .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ttqpktWk4B .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ttqpktWk4B .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-ttqpktWk4B .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ttqpktWk4B .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ttqpktWk4B .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ttqpktWk4B .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ttqpktWk4B .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ttqpktWk4B .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ttqpktWk4B .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ttqpktWk4B .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-ttqpktWk4B .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ttqpktWk4B .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ttqpktWk4B .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ttqpktWk4B .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ttqpktWk4B .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ttqpktWk4B .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ttqpktWk4B .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ttqpktWk4B .navbar.navbar-short {
  min-height: 60px;
}
.cid-ttqpktWk4B .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ttqpktWk4B .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ttqpktWk4B .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;
}
.cid-ttqpktWk4B .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ttqpktWk4B .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ttqpktWk4B .dropdown-item.active,
.cid-ttqpktWk4B .dropdown-item:active {
  background-color: transparent;
}
.cid-ttqpktWk4B .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ttqpktWk4B .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ttqpktWk4B .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ttqpktWk4B .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6c87b7;
}
.cid-ttqpktWk4B .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ttqpktWk4B .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ttqpktWk4B ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ttqpktWk4B .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ttqpktWk4B button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ttqpktWk4B button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffe885;
}
.cid-ttqpktWk4B button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ttqpktWk4B button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ttqpktWk4B button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ttqpktWk4B button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ttqpktWk4B nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ttqpktWk4B nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ttqpktWk4B nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ttqpktWk4B nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ttqpktWk4B .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ttqpktWk4B a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ttqpktWk4B .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ttqpktWk4B .navbar {
    height: 70px;
  }
  .cid-ttqpktWk4B .navbar.opened {
    height: auto;
  }
  .cid-ttqpktWk4B .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ttkJhR9juz {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/mixingdesk-2000x1125.jpg");
}
.cid-ttkJhR9juz .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #3d1528;
  margin-bottom: 2rem;
}
.cid-ttkJhR9juz .card-wrapper {
  padding: 3rem;
  background: #6c87b7;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-ttkJhR9juz .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ttkJhR9juz .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-ttkJhR9juz .mbr-section-subtitle {
  color: #fafafa;
  text-align: center;
}
.cid-ttkJhR9juz .mbr-section-title {
  color: #63789d;
}
.cid-tt8PsUctsn {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #232323;
}
.cid-tt8PsUctsn .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tt8PsUctsn .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tt8PsUctsn .row {
    text-align: center;
  }
  .cid-tt8PsUctsn .row > div {
    margin: auto;
  }
  .cid-tt8PsUctsn .social-row {
    justify-content: center;
  }
}
.cid-tt8PsUctsn .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tt8PsUctsn .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tt8PsUctsn .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tt8PsUctsn .list {
    margin-bottom: 0rem;
  }
}
.cid-tt8PsUctsn .mbr-text {
  color: #bbbbbb;
}
.cid-tt8PsUctsn .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tt8PsUctsn .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tt8PsUctsn div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-ttqpktWk4B {
  z-index: 1000;
  width: 100%;
}
.cid-ttqpktWk4B nav.navbar {
  position: fixed;
}
.cid-ttqpktWk4B .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-ttqpktWk4B .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ttqpktWk4B .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ttqpktWk4B .dropdown-item:hover,
.cid-ttqpktWk4B .dropdown-item:focus {
  background: #3d1528 !important;
  color: white !important;
}
.cid-ttqpktWk4B .dropdown-item:hover span {
  color: white;
}
.cid-ttqpktWk4B .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ttqpktWk4B .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ttqpktWk4B .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ttqpktWk4B .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ttqpktWk4B .nav-link {
  position: relative;
}
.cid-ttqpktWk4B .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ttqpktWk4B .container {
    flex-wrap: wrap;
  }
}
.cid-ttqpktWk4B .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ttqpktWk4B .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ttqpktWk4B .iconfont-wrapper {
  color: #6592e6 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ttqpktWk4B .dropdown-menu,
.cid-ttqpktWk4B .navbar.opened {
  background: #6c87b7 !important;
}
.cid-ttqpktWk4B .nav-item:focus,
.cid-ttqpktWk4B .nav-link:focus {
  outline: none;
}
.cid-ttqpktWk4B .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ttqpktWk4B .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ttqpktWk4B .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ttqpktWk4B .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttqpktWk4B .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ttqpktWk4B .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ttqpktWk4B .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #6c87b7;
}
.cid-ttqpktWk4B .navbar.opened {
  transition: all 0.3s;
}
.cid-ttqpktWk4B .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ttqpktWk4B .navbar .navbar-logo img {
  width: auto;
}
.cid-ttqpktWk4B .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ttqpktWk4B .navbar.collapsed {
  justify-content: center;
}
.cid-ttqpktWk4B .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ttqpktWk4B .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ttqpktWk4B .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-ttqpktWk4B .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ttqpktWk4B .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ttqpktWk4B .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-ttqpktWk4B .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ttqpktWk4B .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ttqpktWk4B .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ttqpktWk4B .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ttqpktWk4B .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ttqpktWk4B .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ttqpktWk4B .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ttqpktWk4B .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-ttqpktWk4B .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ttqpktWk4B .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ttqpktWk4B .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ttqpktWk4B .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ttqpktWk4B .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ttqpktWk4B .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ttqpktWk4B .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ttqpktWk4B .navbar.navbar-short {
  min-height: 60px;
}
.cid-ttqpktWk4B .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ttqpktWk4B .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ttqpktWk4B .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;
}
.cid-ttqpktWk4B .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ttqpktWk4B .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ttqpktWk4B .dropdown-item.active,
.cid-ttqpktWk4B .dropdown-item:active {
  background-color: transparent;
}
.cid-ttqpktWk4B .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ttqpktWk4B .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ttqpktWk4B .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ttqpktWk4B .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6c87b7;
}
.cid-ttqpktWk4B .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ttqpktWk4B .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ttqpktWk4B ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ttqpktWk4B .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ttqpktWk4B button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ttqpktWk4B button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffe885;
}
.cid-ttqpktWk4B button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ttqpktWk4B button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ttqpktWk4B button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ttqpktWk4B button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ttqpktWk4B nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ttqpktWk4B nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ttqpktWk4B nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ttqpktWk4B nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ttqpktWk4B .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ttqpktWk4B a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ttqpktWk4B .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ttqpktWk4B .navbar {
    height: 70px;
  }
  .cid-ttqpktWk4B .navbar.opened {
    height: auto;
  }
  .cid-ttqpktWk4B .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2Am4pdsBV {
  padding-top: 10rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/dd4e93418fab4c1b10c40510dd0a1d2e2-2000x1414.jpg");
}
.cid-u2Am4pdsBV .mbr-section-title {
  color: #fafafa;
}
.cid-u2Am4pdsBV .mbr-section-subtitle {
  color: #76550f;
}
.cid-u2Am4pdsBV .mbr-text,
.cid-u2Am4pdsBV .mbr-section-btn {
  text-align: center;
  color: #6c87b7;
}
.cid-u2F3nWWj2a {
  padding-top: 7rem;
  padding-bottom: 1rem;
  background-color: #6c87b7;
}
.cid-u2F3nWWj2a .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2F3nWWj2a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2F4Cq83B8 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #63789d;
}
.cid-u2F4Cq83B8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2F4Cq83B8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2F583AhVJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6c87b7;
}
.cid-u2F583AhVJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2F583AhVJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2F5snQmSM {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #63789d;
}
.cid-u2F5snQmSM .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2F5snQmSM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqyvTMqAwm {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6c87b7;
}
.cid-uqyvTMqAwm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqyvTMqAwm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqyvVauk0m {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #63789d;
}
.cid-uqyvVauk0m .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqyvVauk0m .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqyvVauk0m .mbr-text,
.cid-uqyvVauk0m .link {
  text-align: left;
}
.cid-uqyvWyLl2Z {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6c87b7;
}
.cid-uqyvWyLl2Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqyvWyLl2Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqyvXCjPeO {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #63789d;
}
.cid-uqyvXCjPeO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqyvXCjPeO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqyvXCjPeO .mbr-text,
.cid-uqyvXCjPeO .link {
  text-align: left;
}
.cid-uqyvYUwRy3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6c87b7;
}
.cid-uqyvYUwRy3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqyvYUwRy3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqyvZE8qBN {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #63789d;
}
.cid-uqyvZE8qBN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqyvZE8qBN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqyvZE8qBN .mbr-text,
.cid-uqyvZE8qBN .link {
  text-align: left;
}
.cid-uqyw0Ih7Jg {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6c87b7;
}
.cid-uqyw0Ih7Jg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqyw0Ih7Jg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqyw1sIrN7 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #63789d;
}
.cid-uqyw1sIrN7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqyw1sIrN7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqyw1sIrN7 .mbr-text,
.cid-uqyw1sIrN7 .link {
  text-align: left;
}
.cid-uqyy8lFgT1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6c87b7;
}
.cid-uqyy8lFgT1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqyy8lFgT1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqyy9p6Ekk {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #63789d;
}
.cid-uqyy9p6Ekk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqyy9p6Ekk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqyy9p6Ekk .mbr-text,
.cid-uqyy9p6Ekk .link {
  text-align: left;
}
.cid-uqyya7ZWqH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6c87b7;
}
.cid-uqyya7ZWqH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqyya7ZWqH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqyyaPBiIQ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #63789d;
}
.cid-uqyyaPBiIQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqyyaPBiIQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqyyaPBiIQ .mbr-text,
.cid-uqyyaPBiIQ .link {
  text-align: left;
}
.cid-uqyybAjLLy {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6c87b7;
}
.cid-uqyybAjLLy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqyybAjLLy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqyycklERM {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #63789d;
}
.cid-uqyycklERM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqyycklERM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqyycklERM .mbr-text,
.cid-uqyycklERM .link {
  text-align: left;
}
.cid-uqyyd9l7g7 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6c87b7;
}
.cid-uqyyd9l7g7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqyyd9l7g7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqyydYK1hM {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #63789d;
}
.cid-uqyydYK1hM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqyydYK1hM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqyydYK1hM .mbr-text,
.cid-uqyydYK1hM .link {
  text-align: left;
}
.cid-uqyyeJYQqm {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6c87b7;
}
.cid-uqyyeJYQqm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqyyeJYQqm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqyyfwHKJ1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #63789d;
}
.cid-uqyyfwHKJ1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqyyfwHKJ1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqyyfwHKJ1 .mbr-text,
.cid-uqyyfwHKJ1 .link {
  text-align: left;
}
.cid-uqyygkrd0i {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6c87b7;
}
.cid-uqyygkrd0i .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqyygkrd0i .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqyyh6Mw7s {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #63789d;
}
.cid-uqyyh6Mw7s .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqyyh6Mw7s .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqyyh6Mw7s .mbr-text,
.cid-uqyyh6Mw7s .link {
  text-align: left;
}
.cid-uqyyhWdXdI {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6c87b7;
}
.cid-uqyyhWdXdI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqyyhWdXdI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqyyiJLmyI {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #63789d;
}
.cid-uqyyiJLmyI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqyyiJLmyI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqyyiJLmyI .mbr-text,
.cid-uqyyiJLmyI .link {
  text-align: left;
}
.cid-uqyyjCtMBf {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6c87b7;
}
.cid-uqyyjCtMBf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqyyjCtMBf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqyykn2e5I {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #63789d;
}
.cid-uqyykn2e5I .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqyykn2e5I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqyykn2e5I .mbr-text,
.cid-uqyykn2e5I .link {
  text-align: left;
}
.cid-uqyyl7Pfxk {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6c87b7;
}
.cid-uqyyl7Pfxk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqyyl7Pfxk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqyylQ6tj7 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #63789d;
}
.cid-uqyylQ6tj7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqyylQ6tj7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqyylQ6tj7 .mbr-text,
.cid-uqyylQ6tj7 .link {
  text-align: left;
}
.cid-uqyymEPmxD {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6c87b7;
}
.cid-uqyymEPmxD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqyymEPmxD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqyynFTlmt {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #63789d;
}
.cid-uqyynFTlmt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqyynFTlmt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqyynFTlmt .mbr-text,
.cid-uqyynFTlmt .link {
  text-align: left;
}
.cid-uqyyolGAZT {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6c87b7;
}
.cid-uqyyolGAZT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqyyolGAZT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqyyp1ARVt {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #63789d;
}
.cid-uqyyp1ARVt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqyyp1ARVt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqyyp1ARVt .mbr-text,
.cid-uqyyp1ARVt .link {
  text-align: left;
}
.cid-uqyypKrB6t {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6c87b7;
}
.cid-uqyypKrB6t .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqyypKrB6t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqyyqrJR4A {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #63789d;
}
.cid-uqyyqrJR4A .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqyyqrJR4A .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqyyqrJR4A .mbr-text,
.cid-uqyyqrJR4A .link {
  text-align: left;
}
.cid-tt8PsUctsn {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #232323;
}
.cid-tt8PsUctsn .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tt8PsUctsn .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tt8PsUctsn .row {
    text-align: center;
  }
  .cid-tt8PsUctsn .row > div {
    margin: auto;
  }
  .cid-tt8PsUctsn .social-row {
    justify-content: center;
  }
}
.cid-tt8PsUctsn .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tt8PsUctsn .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tt8PsUctsn .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tt8PsUctsn .list {
    margin-bottom: 0rem;
  }
}
.cid-tt8PsUctsn .mbr-text {
  color: #bbbbbb;
}
.cid-tt8PsUctsn .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tt8PsUctsn .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tt8PsUctsn div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-ttqpktWk4B {
  z-index: 1000;
  width: 100%;
}
.cid-ttqpktWk4B nav.navbar {
  position: fixed;
}
.cid-ttqpktWk4B .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-ttqpktWk4B .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ttqpktWk4B .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ttqpktWk4B .dropdown-item:hover,
.cid-ttqpktWk4B .dropdown-item:focus {
  background: #3d1528 !important;
  color: white !important;
}
.cid-ttqpktWk4B .dropdown-item:hover span {
  color: white;
}
.cid-ttqpktWk4B .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ttqpktWk4B .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ttqpktWk4B .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ttqpktWk4B .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ttqpktWk4B .nav-link {
  position: relative;
}
.cid-ttqpktWk4B .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ttqpktWk4B .container {
    flex-wrap: wrap;
  }
}
.cid-ttqpktWk4B .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ttqpktWk4B .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ttqpktWk4B .iconfont-wrapper {
  color: #6592e6 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ttqpktWk4B .dropdown-menu,
.cid-ttqpktWk4B .navbar.opened {
  background: #6c87b7 !important;
}
.cid-ttqpktWk4B .nav-item:focus,
.cid-ttqpktWk4B .nav-link:focus {
  outline: none;
}
.cid-ttqpktWk4B .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ttqpktWk4B .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ttqpktWk4B .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ttqpktWk4B .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttqpktWk4B .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ttqpktWk4B .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ttqpktWk4B .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #6c87b7;
}
.cid-ttqpktWk4B .navbar.opened {
  transition: all 0.3s;
}
.cid-ttqpktWk4B .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ttqpktWk4B .navbar .navbar-logo img {
  width: auto;
}
.cid-ttqpktWk4B .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ttqpktWk4B .navbar.collapsed {
  justify-content: center;
}
.cid-ttqpktWk4B .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ttqpktWk4B .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ttqpktWk4B .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-ttqpktWk4B .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ttqpktWk4B .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ttqpktWk4B .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-ttqpktWk4B .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ttqpktWk4B .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ttqpktWk4B .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ttqpktWk4B .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ttqpktWk4B .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ttqpktWk4B .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ttqpktWk4B .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ttqpktWk4B .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-ttqpktWk4B .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ttqpktWk4B .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ttqpktWk4B .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ttqpktWk4B .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ttqpktWk4B .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ttqpktWk4B .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ttqpktWk4B .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ttqpktWk4B .navbar.navbar-short {
  min-height: 60px;
}
.cid-ttqpktWk4B .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ttqpktWk4B .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ttqpktWk4B .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;
}
.cid-ttqpktWk4B .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ttqpktWk4B .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ttqpktWk4B .dropdown-item.active,
.cid-ttqpktWk4B .dropdown-item:active {
  background-color: transparent;
}
.cid-ttqpktWk4B .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ttqpktWk4B .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ttqpktWk4B .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ttqpktWk4B .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6c87b7;
}
.cid-ttqpktWk4B .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ttqpktWk4B .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ttqpktWk4B ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ttqpktWk4B .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ttqpktWk4B button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ttqpktWk4B button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffe885;
}
.cid-ttqpktWk4B button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ttqpktWk4B button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ttqpktWk4B button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ttqpktWk4B button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ttqpktWk4B nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ttqpktWk4B nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ttqpktWk4B nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ttqpktWk4B nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ttqpktWk4B .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ttqpktWk4B a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ttqpktWk4B .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ttqpktWk4B .navbar {
    height: 70px;
  }
  .cid-ttqpktWk4B .navbar.opened {
    height: auto;
  }
  .cid-ttqpktWk4B .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2AmzndyD9 {
  padding-top: 9rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/dd4e93418fab4c1b10c40510dd0a1d2e2-2000x1414.jpg");
}
.cid-u2AmzndyD9 .mbr-section-title {
  color: #fafafa;
}
.cid-u2AmzndyD9 .mbr-section-subtitle {
  color: #76550f;
}
.cid-u2AmzndyD9 .mbr-text,
.cid-u2AmzndyD9 .mbr-section-btn {
  text-align: center;
  color: #6c87b7;
}
.cid-u2F6WcVWuW {
  padding-top: 7rem;
  padding-bottom: 1rem;
  background-color: #6c87b7;
}
.cid-u2F6WcVWuW .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2F6WcVWuW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2F98WWO4n {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #63789d;
}
.cid-u2F98WWO4n .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2F98WWO4n .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2F99XZUPS {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6c87b7;
}
.cid-u2F99XZUPS .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2F99XZUPS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2F6Ym2EME {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #63789d;
}
.cid-u2F6Ym2EME .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2F6Ym2EME .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2F6XDRmCz {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6c87b7;
}
.cid-u2F6XDRmCz .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2F6XDRmCz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2F6WTSqC6 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #63789d;
}
.cid-u2F6WTSqC6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2F6WTSqC6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqyExzbJ1C {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6c87b7;
}
.cid-uqyExzbJ1C .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqyExzbJ1C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqyEynmEuA {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #63789d;
}
.cid-uqyEynmEuA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqyEynmEuA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqyEynmEuA .mbr-text,
.cid-uqyEynmEuA .link {
  text-align: left;
}
.cid-uqyEz1RSE1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6c87b7;
}
.cid-uqyEz1RSE1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqyEz1RSE1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqyEzBMD6V {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #63789d;
}
.cid-uqyEzBMD6V .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqyEzBMD6V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqyEzBMD6V .mbr-text,
.cid-uqyEzBMD6V .link {
  text-align: left;
}
.cid-uqyEAfAPF8 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6c87b7;
}
.cid-uqyEAfAPF8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqyEAfAPF8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqyEALtCnW {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #63789d;
}
.cid-uqyEALtCnW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqyEALtCnW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqyEALtCnW .mbr-text,
.cid-uqyEALtCnW .link {
  text-align: left;
}
.cid-uqyEBhKAyL {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6c87b7;
}
.cid-uqyEBhKAyL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqyEBhKAyL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqyEBP958j {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #63789d;
}
.cid-uqyEBP958j .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqyEBP958j .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqyEBP958j .mbr-text,
.cid-uqyEBP958j .link {
  text-align: left;
}
.cid-uqyECrX4GG {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6c87b7;
}
.cid-uqyECrX4GG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqyECrX4GG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqyECZBulH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #63789d;
}
.cid-uqyECZBulH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqyECZBulH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqyECZBulH .mbr-text,
.cid-uqyECZBulH .link {
  text-align: left;
}
.cid-uqyEDv9IfV {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6c87b7;
}
.cid-uqyEDv9IfV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqyEDv9IfV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqyEE6Iw9J {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #63789d;
}
.cid-uqyEE6Iw9J .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqyEE6Iw9J .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqyEE6Iw9J .mbr-text,
.cid-uqyEE6Iw9J .link {
  text-align: left;
}
.cid-uqyEEHaLUj {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6c87b7;
}
.cid-uqyEEHaLUj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqyEEHaLUj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqyEFg3v5O {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #63789d;
}
.cid-uqyEFg3v5O .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqyEFg3v5O .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqyEFg3v5O .mbr-text,
.cid-uqyEFg3v5O .link {
  text-align: left;
}
.cid-uqyEFRVv9A {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6c87b7;
}
.cid-uqyEFRVv9A .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqyEFRVv9A .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqyEGuC8iN {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #63789d;
}
.cid-uqyEGuC8iN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqyEGuC8iN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqyEGuC8iN .mbr-text,
.cid-uqyEGuC8iN .link {
  text-align: left;
}
.cid-uqyEH2xNMA {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6c87b7;
}
.cid-uqyEH2xNMA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqyEH2xNMA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqyEHEwf6o {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #63789d;
}
.cid-uqyEHEwf6o .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqyEHEwf6o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqyEHEwf6o .mbr-text,
.cid-uqyEHEwf6o .link {
  text-align: left;
}
.cid-uqyEIin3jn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6c87b7;
}
.cid-uqyEIin3jn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqyEIin3jn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqyEIQULR9 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #63789d;
}
.cid-uqyEIQULR9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqyEIQULR9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqyEIQULR9 .mbr-text,
.cid-uqyEIQULR9 .link {
  text-align: left;
}
.cid-uqyEJrFush {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6c87b7;
}
.cid-uqyEJrFush .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqyEJrFush .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqyEK40gJY {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #63789d;
}
.cid-uqyEK40gJY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqyEK40gJY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqyEK40gJY .mbr-text,
.cid-uqyEK40gJY .link {
  text-align: left;
}
.cid-uqyEKEK3Fx {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6c87b7;
}
.cid-uqyEKEK3Fx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqyEKEK3Fx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqyELkpNX8 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #63789d;
}
.cid-uqyELkpNX8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqyELkpNX8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqyELkpNX8 .mbr-text,
.cid-uqyELkpNX8 .link {
  text-align: left;
}
.cid-uqyEMUeJBD {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6c87b7;
}
.cid-uqyEMUeJBD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqyEMUeJBD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqyENHmYb5 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #63789d;
}
.cid-uqyENHmYb5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqyENHmYb5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqyENHmYb5 .mbr-text,
.cid-uqyENHmYb5 .link {
  text-align: left;
}
.cid-uqyEOi8xSR {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6c87b7;
}
.cid-uqyEOi8xSR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqyEOi8xSR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqyEOWlxzC {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #63789d;
}
.cid-uqyEOWlxzC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqyEOWlxzC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqyEOWlxzC .mbr-text,
.cid-uqyEOWlxzC .link {
  text-align: left;
}
.cid-uqEjLvxPgS {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6c87b7;
}
.cid-uqEjLvxPgS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqEjLvxPgS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uU5arCgzR0 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #63789d;
}
.cid-uU5arCgzR0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uU5arCgzR0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uU5arCgzR0 .mbr-text,
.cid-uU5arCgzR0 .link {
  text-align: left;
}
.cid-uU5aswhN8s {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6c87b7;
}
.cid-uU5aswhN8s .mbr-fallback-image.disabled {
  display: none;
}
.cid-uU5aswhN8s .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uU5atiVdTQ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #63789d;
}
.cid-uU5atiVdTQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uU5atiVdTQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uU5atiVdTQ .mbr-text,
.cid-uU5atiVdTQ .link {
  text-align: left;
}
.cid-uU5au31CmC {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6c87b7;
}
.cid-uU5au31CmC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uU5au31CmC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2Amznv6B5 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #232323;
}
.cid-u2Amznv6B5 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-u2Amznv6B5 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-u2Amznv6B5 .row {
    text-align: center;
  }
  .cid-u2Amznv6B5 .row > div {
    margin: auto;
  }
  .cid-u2Amznv6B5 .social-row {
    justify-content: center;
  }
}
.cid-u2Amznv6B5 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-u2Amznv6B5 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u2Amznv6B5 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u2Amznv6B5 .list {
    margin-bottom: 0rem;
  }
}
.cid-u2Amznv6B5 .mbr-text {
  color: #bbbbbb;
}
.cid-u2Amznv6B5 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-u2Amznv6B5 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-u2Amznv6B5 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-u2AmznXgpK {
  z-index: 1000;
  width: 100%;
}
.cid-u2AmznXgpK nav.navbar {
  position: fixed;
}
.cid-u2AmznXgpK .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-u2AmznXgpK .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u2AmznXgpK .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u2AmznXgpK .dropdown-item:hover,
.cid-u2AmznXgpK .dropdown-item:focus {
  background: #3d1528 !important;
  color: white !important;
}
.cid-u2AmznXgpK .dropdown-item:hover span {
  color: white;
}
.cid-u2AmznXgpK .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u2AmznXgpK .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u2AmznXgpK .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u2AmznXgpK .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u2AmznXgpK .nav-link {
  position: relative;
}
.cid-u2AmznXgpK .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u2AmznXgpK .container {
    flex-wrap: wrap;
  }
}
.cid-u2AmznXgpK .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u2AmznXgpK .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-u2AmznXgpK .iconfont-wrapper {
  color: #6592e6 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u2AmznXgpK .dropdown-menu,
.cid-u2AmznXgpK .navbar.opened {
  background: #6c87b7 !important;
}
.cid-u2AmznXgpK .nav-item:focus,
.cid-u2AmznXgpK .nav-link:focus {
  outline: none;
}
.cid-u2AmznXgpK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u2AmznXgpK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u2AmznXgpK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u2AmznXgpK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u2AmznXgpK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u2AmznXgpK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u2AmznXgpK .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #6c87b7;
}
.cid-u2AmznXgpK .navbar.opened {
  transition: all 0.3s;
}
.cid-u2AmznXgpK .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u2AmznXgpK .navbar .navbar-logo img {
  width: auto;
}
.cid-u2AmznXgpK .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u2AmznXgpK .navbar.collapsed {
  justify-content: center;
}
.cid-u2AmznXgpK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u2AmznXgpK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u2AmznXgpK .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-u2AmznXgpK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u2AmznXgpK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u2AmznXgpK .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-u2AmznXgpK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u2AmznXgpK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u2AmznXgpK .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u2AmznXgpK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u2AmznXgpK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u2AmznXgpK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u2AmznXgpK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u2AmznXgpK .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-u2AmznXgpK .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u2AmznXgpK .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u2AmznXgpK .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u2AmznXgpK .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u2AmznXgpK .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u2AmznXgpK .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u2AmznXgpK .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u2AmznXgpK .navbar.navbar-short {
  min-height: 60px;
}
.cid-u2AmznXgpK .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u2AmznXgpK .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u2AmznXgpK .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;
}
.cid-u2AmznXgpK .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u2AmznXgpK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u2AmznXgpK .dropdown-item.active,
.cid-u2AmznXgpK .dropdown-item:active {
  background-color: transparent;
}
.cid-u2AmznXgpK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u2AmznXgpK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u2AmznXgpK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u2AmznXgpK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6c87b7;
}
.cid-u2AmznXgpK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u2AmznXgpK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u2AmznXgpK ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u2AmznXgpK .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u2AmznXgpK button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u2AmznXgpK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffe885;
}
.cid-u2AmznXgpK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u2AmznXgpK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2AmznXgpK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2AmznXgpK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u2AmznXgpK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2AmznXgpK nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u2AmznXgpK nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u2AmznXgpK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2AmznXgpK .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u2AmznXgpK a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u2AmznXgpK .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u2AmznXgpK .navbar {
    height: 70px;
  }
  .cid-u2AmznXgpK .navbar.opened {
    height: auto;
  }
  .cid-u2AmznXgpK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2AmRJKRyc {
  padding-top: 10rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/dd4e93418fab4c1b10c40510dd0a1d2e2-2000x1414.jpg");
}
.cid-u2AmRJKRyc .mbr-section-title {
  color: #fafafa;
}
.cid-u2AmRJKRyc .mbr-section-subtitle {
  color: #76550f;
}
.cid-u2AmRJKRyc .mbr-text,
.cid-u2AmRJKRyc .mbr-section-btn {
  text-align: center;
  color: #6c87b7;
}
.cid-u2FaGN9VDB {
  padding-top: 7rem;
  padding-bottom: 1rem;
  background-color: #6c87b7;
}
.cid-u2FaGN9VDB .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2FaGN9VDB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2FaHOAaVP {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #63789d;
}
.cid-u2FaHOAaVP .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2FaHOAaVP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2FaIv25nD {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6c87b7;
}
.cid-u2FaIv25nD .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2FaIv25nD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2FaJLZgME {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #63789d;
}
.cid-u2FaJLZgME .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2FaJLZgME .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqyE3WIumO {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6c87b7;
}
.cid-uqyE3WIumO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqyE3WIumO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2AmRK2b3e {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #232323;
}
.cid-u2AmRK2b3e .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-u2AmRK2b3e .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-u2AmRK2b3e .row {
    text-align: center;
  }
  .cid-u2AmRK2b3e .row > div {
    margin: auto;
  }
  .cid-u2AmRK2b3e .social-row {
    justify-content: center;
  }
}
.cid-u2AmRK2b3e .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-u2AmRK2b3e .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u2AmRK2b3e .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u2AmRK2b3e .list {
    margin-bottom: 0rem;
  }
}
.cid-u2AmRK2b3e .mbr-text {
  color: #bbbbbb;
}
.cid-u2AmRK2b3e .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-u2AmRK2b3e .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-u2AmRK2b3e div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-u2AmRKpYwk {
  z-index: 1000;
  width: 100%;
}
.cid-u2AmRKpYwk nav.navbar {
  position: fixed;
}
.cid-u2AmRKpYwk .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-u2AmRKpYwk .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u2AmRKpYwk .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u2AmRKpYwk .dropdown-item:hover,
.cid-u2AmRKpYwk .dropdown-item:focus {
  background: #3d1528 !important;
  color: white !important;
}
.cid-u2AmRKpYwk .dropdown-item:hover span {
  color: white;
}
.cid-u2AmRKpYwk .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u2AmRKpYwk .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u2AmRKpYwk .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u2AmRKpYwk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u2AmRKpYwk .nav-link {
  position: relative;
}
.cid-u2AmRKpYwk .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u2AmRKpYwk .container {
    flex-wrap: wrap;
  }
}
.cid-u2AmRKpYwk .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u2AmRKpYwk .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-u2AmRKpYwk .iconfont-wrapper {
  color: #6592e6 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u2AmRKpYwk .dropdown-menu,
.cid-u2AmRKpYwk .navbar.opened {
  background: #6c87b7 !important;
}
.cid-u2AmRKpYwk .nav-item:focus,
.cid-u2AmRKpYwk .nav-link:focus {
  outline: none;
}
.cid-u2AmRKpYwk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u2AmRKpYwk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u2AmRKpYwk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u2AmRKpYwk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u2AmRKpYwk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u2AmRKpYwk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u2AmRKpYwk .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #6c87b7;
}
.cid-u2AmRKpYwk .navbar.opened {
  transition: all 0.3s;
}
.cid-u2AmRKpYwk .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u2AmRKpYwk .navbar .navbar-logo img {
  width: auto;
}
.cid-u2AmRKpYwk .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u2AmRKpYwk .navbar.collapsed {
  justify-content: center;
}
.cid-u2AmRKpYwk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u2AmRKpYwk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u2AmRKpYwk .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-u2AmRKpYwk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u2AmRKpYwk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u2AmRKpYwk .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-u2AmRKpYwk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u2AmRKpYwk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u2AmRKpYwk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u2AmRKpYwk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u2AmRKpYwk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u2AmRKpYwk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u2AmRKpYwk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u2AmRKpYwk .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-u2AmRKpYwk .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u2AmRKpYwk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u2AmRKpYwk .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u2AmRKpYwk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u2AmRKpYwk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u2AmRKpYwk .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u2AmRKpYwk .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u2AmRKpYwk .navbar.navbar-short {
  min-height: 60px;
}
.cid-u2AmRKpYwk .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u2AmRKpYwk .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u2AmRKpYwk .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;
}
.cid-u2AmRKpYwk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u2AmRKpYwk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u2AmRKpYwk .dropdown-item.active,
.cid-u2AmRKpYwk .dropdown-item:active {
  background-color: transparent;
}
.cid-u2AmRKpYwk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u2AmRKpYwk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u2AmRKpYwk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u2AmRKpYwk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6c87b7;
}
.cid-u2AmRKpYwk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u2AmRKpYwk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u2AmRKpYwk ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u2AmRKpYwk .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u2AmRKpYwk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u2AmRKpYwk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffe885;
}
.cid-u2AmRKpYwk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u2AmRKpYwk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2AmRKpYwk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2AmRKpYwk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u2AmRKpYwk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2AmRKpYwk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u2AmRKpYwk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u2AmRKpYwk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2AmRKpYwk .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u2AmRKpYwk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u2AmRKpYwk .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u2AmRKpYwk .navbar {
    height: 70px;
  }
  .cid-u2AmRKpYwk .navbar.opened {
    height: auto;
  }
  .cid-u2AmRKpYwk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
