.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.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: 0.8rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1rem;
}
.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.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((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.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((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: #ffcf00 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffffff !important;
}
.bg-danger {
  background-color: #610b1b !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ffcf00 !important;
  border-color: #ffcf00 !important;
  color: #000000 !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: #a88900 !important;
  border-color: #a88900 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #000000 !important;
  background-color: #a88900 !important;
  border-color: #a88900 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #da062d !important;
  border-color: #da062d !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: #86041c !important;
  border-color: #86041c !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #86041c !important;
  border-color: #86041c !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !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: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !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: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !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: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #610b1b !important;
  border-color: #610b1b !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: #130205 !important;
  border-color: #130205 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #130205 !important;
  border-color: #130205 !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: #ffcf00;
  color: #ffcf00;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #a88900 !important;
  background-color: transparent!important;
  border-color: #a88900 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #000000 !important;
  background-color: #ffcf00 !important;
  border-color: #ffcf00 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #da062d;
  color: #da062d;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #86041c !important;
  background-color: transparent!important;
  border-color: #86041c !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #da062d !important;
  border-color: #da062d !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #47b5ed;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: #148cca !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #40b0bf;
  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: #2a747e !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: #ffffff;
  color: #ffffff;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: #d4d4d4 !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #610b1b;
  color: #610b1b;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #130205 !important;
  background-color: transparent!important;
  border-color: #130205 !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #610b1b !important;
  border-color: #610b1b !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  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: #000000 !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: #fafafa;
  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: #cfcfcf !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: #ffcf00 !important;
}
.text-secondary {
  color: #da062d !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffffff !important;
}
.text-danger {
  color: #610b1b !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #997c00 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #770319 !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: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #cccccc !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #050101 !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: #ffcf00;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffffff;
}
.alert-danger {
  background-color: #610b1b;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ffcf00;
  border-color: #ffcf00;
  color: #191500;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ffcf00;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fff5cc;
}
.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: #ffffff;
}
.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: #d4183b;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1rem;
}
.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: #ffcf00 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1rem;
}
blockquote {
  border-color: #ffcf00;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ffcf00;
  color: #000000;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ffcf00;
}
.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: #ffcf00;
  border-bottom-color: #ffcf00;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #ffcf00 !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: #da062d !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='%23ffcf00' %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-sFCw1qGFAI .navbar-dropdown {
  position: relative !important;
}
.cid-sFCw1qGFAI .navbar-dropdown {
  position: absolute !important;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFCw1qGFAI .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFCw1qGFAI .dropdown-item:hover,
.cid-sFCw1qGFAI .dropdown-item:focus {
  background: #ffcf00 !important;
  color: white !important;
}
.cid-sFCw1qGFAI .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFCw1qGFAI .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFCw1qGFAI .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFCw1qGFAI .nav-link {
  position: relative;
}
.cid-sFCw1qGFAI .container {
  display: flex;
  margin: auto;
}
.cid-sFCw1qGFAI .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFCw1qGFAI .dropdown-menu,
.cid-sFCw1qGFAI .navbar.opened {
  background: #0a0b0d !important;
}
.cid-sFCw1qGFAI .nav-item:focus,
.cid-sFCw1qGFAI .nav-link:focus {
  outline: none;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFCw1qGFAI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFCw1qGFAI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFCw1qGFAI .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #0a0b0d;
}
.cid-sFCw1qGFAI .navbar.opened {
  transition: all 0.3s;
}
.cid-sFCw1qGFAI .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFCw1qGFAI .navbar .navbar-logo img {
  width: auto;
}
.cid-sFCw1qGFAI .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFCw1qGFAI .navbar.collapsed {
  justify-content: center;
}
.cid-sFCw1qGFAI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFCw1qGFAI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sFCw1qGFAI .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFCw1qGFAI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFCw1qGFAI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFCw1qGFAI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFCw1qGFAI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFCw1qGFAI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFCw1qGFAI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFCw1qGFAI .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFCw1qGFAI .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFCw1qGFAI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFCw1qGFAI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFCw1qGFAI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFCw1qGFAI .dropdown-item.active,
.cid-sFCw1qGFAI .dropdown-item:active {
  background-color: transparent;
}
.cid-sFCw1qGFAI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFCw1qGFAI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0a0b0d;
}
.cid-sFCw1qGFAI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFCw1qGFAI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFCw1qGFAI ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFCw1qGFAI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFCw1qGFAI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sFCw1qGFAI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar {
    height: 70px;
  }
  .cid-sFCw1qGFAI .navbar.opened {
    height: auto;
  }
  .cid-sFCw1qGFAI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sFzxmVl7J6 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-sFzxmVl7J6 .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-sFzxmVl7J6 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sFzxmVl7J6 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-sFzxmVl7J6 .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-sFzxmVl7J6 .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sFzxmVl7J6 .mbr-text,
.cid-sFzxmVl7J6 .mbr-section-btn {
  color: #353535;
}
.cid-sFzyUE9AaP {
  padding-top: 8rem;
  padding-bottom: 9rem;
  background-color: #fafafa;
}
@media (min-width: 1500px) {
  .cid-sFzyUE9AaP .container {
    max-width: 1400px;
  }
}
.cid-sFzyUE9AaP .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #ffcf00;
  margin-bottom: 2rem;
}
.cid-sFzyUE9AaP .card-wrapper {
  margin-top: 3rem;
}
.cid-sFzyUE9AaP .row {
  justify-content: center;
}
.cid-sFzyUE9AaP .card-title,
.cid-sFzyUE9AaP .iconfont-wrapper {
  color: #000000;
}
.cid-sFzyUE9AaP .card-text {
  color: #000000;
}
.cid-sFzyUE9AaP .mbr-section-title {
  color: #000000;
}
.cid-sFzz5E692j {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sFzz5E692j .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sFzz5E692j .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-sFzz5E692j .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-sFzz5E692j .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uRHWWiYkSW {
  padding-top: 8rem;
  padding-bottom: 9rem;
  background-color: #fafafa;
}
@media (min-width: 1500px) {
  .cid-uRHWWiYkSW .container {
    max-width: 1400px;
  }
}
.cid-uRHWWiYkSW .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #610b1b;
  margin-bottom: 2rem;
}
.cid-uRHWWiYkSW .card-wrapper {
  margin-top: 3rem;
}
.cid-uRHWWiYkSW .row {
  justify-content: center;
}
.cid-uRHWWiYkSW .card-title,
.cid-uRHWWiYkSW .iconfont-wrapper {
  color: #000000;
}
.cid-uRHWWiYkSW .card-text {
  color: #000000;
}
.cid-uRHWWiYkSW .mbr-section-title {
  color: #000000;
}
.cid-uRHXEKR3uq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uRHZxKq1zv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-uRHZxKq1zv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRHZxKq1zv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-uRHZxKq1zv .row {
    flex-direction: column-reverse;
  }
  .cid-uRHZxKq1zv .row .map-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uRHZxKq1zv .google-map {
  height: 100%;
  position: relative;
}
.cid-uRHZxKq1zv .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uRHZxKq1zv .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uRHZxKq1zv .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uRHZxKq1zv .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uRHZxKq1zv .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uRHZxKq1zv .card-wrapper {
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
.cid-uRHZxKq1zv .card-wrapper:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-uRHZxKq1zv .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uRHZxKq1zv .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uRHZxKq1zv .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #ffcf00;
}
.cid-uRI4vZyrXi {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-uRI4vZyrXi .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uRI4vZyrXi .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uRI4vZyrXi .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uRI4vZyrXi .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uRI4vZyrXi .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uRI4vZyrXi .mbr-text,
.cid-uRI4vZyrXi .mbr-section-btn {
  color: #353535;
}
.cid-uRI5bPN28Z {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uRI5bPN28Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRI5bPN28Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRI5bPN28Z .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uRI5bPN28Z .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-uRI5QUziFY {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uRI5QUziFY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRI5QUziFY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRI5QUziFY .card-wrapper {
  background: #610b1b;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uRI5QUziFY .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uRI5QUziFY .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uRI5QUziFY .card-wrapper {
    padding: 4rem;
  }
}
.cid-uRI5QUziFY .mbr-text,
.cid-uRI5QUziFY .mbr-section-btn {
  color: #ffffff;
}
.cid-uRI5QUziFY .card-title,
.cid-uRI5QUziFY .card-box {
  text-align: left;
}
.cid-uRI693rhhk {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uRI693rhhk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRI693rhhk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRI693rhhk .card-wrapper {
  background: #610b1b;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uRI693rhhk .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uRI693rhhk .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uRI693rhhk .card-wrapper {
    padding: 4rem;
  }
}
.cid-uRI693rhhk .mbr-text,
.cid-uRI693rhhk .mbr-section-btn {
  color: #ffffff;
}
.cid-uRI693rhhk .card-title,
.cid-uRI693rhhk .card-box {
  text-align: left;
}
.cid-uRI6mwT2DA {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uRI6mwT2DA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRI6mwT2DA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRI6mwT2DA .card-wrapper {
  background: #610b1b;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uRI6mwT2DA .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uRI6mwT2DA .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uRI6mwT2DA .card-wrapper {
    padding: 4rem;
  }
}
.cid-uRI6mwT2DA .mbr-text,
.cid-uRI6mwT2DA .mbr-section-btn {
  color: #ffffff;
}
.cid-uRI6mwT2DA .card-title,
.cid-uRI6mwT2DA .card-box {
  text-align: left;
}
.cid-uRI6z1rACf {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uRI6z1rACf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRI6z1rACf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRI6z1rACf .card-wrapper {
  background: #610b1b;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uRI6z1rACf .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uRI6z1rACf .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uRI6z1rACf .card-wrapper {
    padding: 4rem;
  }
}
.cid-uRI6z1rACf .mbr-text,
.cid-uRI6z1rACf .mbr-section-btn {
  color: #ffffff;
}
.cid-uRI6z1rACf .card-title,
.cid-uRI6z1rACf .card-box {
  text-align: left;
}
.cid-uRI6UW5yys {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uRI7zNb0af {
  background-image: url("../../../assets/images/background9.jpg");
}
.cid-uRI7zNb0af .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRI7zNb0af .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRI4f1FRjQ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uRI4f1FRjQ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uRI4f1FRjQ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uRI4f1FRjQ .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uRI4f1FRjQ .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uRI4f1FRjQ .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uRI4f1FRjQ .row .foot-menu li p {
  margin: 0;
}
.cid-uRI4f1FRjQ .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uRI4f1FRjQ .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uRI4f1FRjQ .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uRI4f1FRjQ .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uRI4f1FRjQ .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uRI4f1FRjQ .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uRI4f1FRjQ .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uRI4f1FRjQ .row .row-copirayt p {
  width: 100%;
}
.cid-uRI2IVQq2f .navbar-dropdown {
  position: relative !important;
}
.cid-uRI2IVQq2f .navbar-dropdown {
  position: absolute !important;
}
.cid-uRI2IVQq2f .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-uRI2IVQq2f .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uRI2IVQq2f .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uRI2IVQq2f .dropdown-item:hover,
.cid-uRI2IVQq2f .dropdown-item:focus {
  background: #ffcf00 !important;
  color: white !important;
}
.cid-uRI2IVQq2f .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uRI2IVQq2f .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uRI2IVQq2f .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uRI2IVQq2f .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uRI2IVQq2f .nav-link {
  position: relative;
}
.cid-uRI2IVQq2f .container {
  display: flex;
  margin: auto;
}
.cid-uRI2IVQq2f .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uRI2IVQq2f .dropdown-menu,
.cid-uRI2IVQq2f .navbar.opened {
  background: #0a0b0d !important;
}
.cid-uRI2IVQq2f .nav-item:focus,
.cid-uRI2IVQq2f .nav-link:focus {
  outline: none;
}
.cid-uRI2IVQq2f .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uRI2IVQq2f .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uRI2IVQq2f .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uRI2IVQq2f .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uRI2IVQq2f .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uRI2IVQq2f .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uRI2IVQq2f .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #0a0b0d;
}
.cid-uRI2IVQq2f .navbar.opened {
  transition: all 0.3s;
}
.cid-uRI2IVQq2f .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uRI2IVQq2f .navbar .navbar-logo img {
  width: auto;
}
.cid-uRI2IVQq2f .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uRI2IVQq2f .navbar.collapsed {
  justify-content: center;
}
.cid-uRI2IVQq2f .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uRI2IVQq2f .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uRI2IVQq2f .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uRI2IVQq2f .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uRI2IVQq2f .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uRI2IVQq2f .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-uRI2IVQq2f .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uRI2IVQq2f .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uRI2IVQq2f .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uRI2IVQq2f .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uRI2IVQq2f .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uRI2IVQq2f .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uRI2IVQq2f .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uRI2IVQq2f .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-uRI2IVQq2f .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uRI2IVQq2f .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uRI2IVQq2f .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uRI2IVQq2f .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uRI2IVQq2f .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uRI2IVQq2f .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uRI2IVQq2f .navbar.navbar-short {
  min-height: 60px;
}
.cid-uRI2IVQq2f .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uRI2IVQq2f .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uRI2IVQq2f .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-uRI2IVQq2f .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uRI2IVQq2f .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uRI2IVQq2f .dropdown-item.active,
.cid-uRI2IVQq2f .dropdown-item:active {
  background-color: transparent;
}
.cid-uRI2IVQq2f .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uRI2IVQq2f .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uRI2IVQq2f .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uRI2IVQq2f .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0a0b0d;
}
.cid-uRI2IVQq2f .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uRI2IVQq2f .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uRI2IVQq2f ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uRI2IVQq2f .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uRI2IVQq2f button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uRI2IVQq2f button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uRI2IVQq2f button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uRI2IVQq2f button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uRI2IVQq2f button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uRI2IVQq2f button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uRI2IVQq2f nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uRI2IVQq2f nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uRI2IVQq2f nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uRI2IVQq2f nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uRI2IVQq2f .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uRI2IVQq2f a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uRI2IVQq2f .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-uRI2IVQq2f .navbar {
    height: 70px;
  }
  .cid-uRI2IVQq2f .navbar.opened {
    height: auto;
  }
  .cid-uRI2IVQq2f .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uRI34kKbbD {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uRI34kKbbD blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-uRI4f1FRjQ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uRI4f1FRjQ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uRI4f1FRjQ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uRI4f1FRjQ .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uRI4f1FRjQ .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uRI4f1FRjQ .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uRI4f1FRjQ .row .foot-menu li p {
  margin: 0;
}
.cid-uRI4f1FRjQ .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uRI4f1FRjQ .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uRI4f1FRjQ .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uRI4f1FRjQ .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uRI4f1FRjQ .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uRI4f1FRjQ .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uRI4f1FRjQ .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uRI4f1FRjQ .row .row-copirayt p {
  width: 100%;
}
.cid-uRI2FjZiNP .navbar-dropdown {
  position: relative !important;
}
.cid-uRI2FjZiNP .navbar-dropdown {
  position: absolute !important;
}
.cid-uRI2FjZiNP .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-uRI2FjZiNP .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uRI2FjZiNP .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uRI2FjZiNP .dropdown-item:hover,
.cid-uRI2FjZiNP .dropdown-item:focus {
  background: #ffcf00 !important;
  color: white !important;
}
.cid-uRI2FjZiNP .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uRI2FjZiNP .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uRI2FjZiNP .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uRI2FjZiNP .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uRI2FjZiNP .nav-link {
  position: relative;
}
.cid-uRI2FjZiNP .container {
  display: flex;
  margin: auto;
}
.cid-uRI2FjZiNP .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uRI2FjZiNP .dropdown-menu,
.cid-uRI2FjZiNP .navbar.opened {
  background: #0a0b0d !important;
}
.cid-uRI2FjZiNP .nav-item:focus,
.cid-uRI2FjZiNP .nav-link:focus {
  outline: none;
}
.cid-uRI2FjZiNP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uRI2FjZiNP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uRI2FjZiNP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uRI2FjZiNP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uRI2FjZiNP .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uRI2FjZiNP .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uRI2FjZiNP .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #0a0b0d;
}
.cid-uRI2FjZiNP .navbar.opened {
  transition: all 0.3s;
}
.cid-uRI2FjZiNP .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uRI2FjZiNP .navbar .navbar-logo img {
  width: auto;
}
.cid-uRI2FjZiNP .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uRI2FjZiNP .navbar.collapsed {
  justify-content: center;
}
.cid-uRI2FjZiNP .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uRI2FjZiNP .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uRI2FjZiNP .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uRI2FjZiNP .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uRI2FjZiNP .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uRI2FjZiNP .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-uRI2FjZiNP .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uRI2FjZiNP .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uRI2FjZiNP .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uRI2FjZiNP .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uRI2FjZiNP .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uRI2FjZiNP .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uRI2FjZiNP .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uRI2FjZiNP .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-uRI2FjZiNP .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uRI2FjZiNP .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uRI2FjZiNP .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uRI2FjZiNP .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uRI2FjZiNP .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uRI2FjZiNP .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uRI2FjZiNP .navbar.navbar-short {
  min-height: 60px;
}
.cid-uRI2FjZiNP .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uRI2FjZiNP .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uRI2FjZiNP .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-uRI2FjZiNP .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uRI2FjZiNP .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uRI2FjZiNP .dropdown-item.active,
.cid-uRI2FjZiNP .dropdown-item:active {
  background-color: transparent;
}
.cid-uRI2FjZiNP .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uRI2FjZiNP .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uRI2FjZiNP .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uRI2FjZiNP .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0a0b0d;
}
.cid-uRI2FjZiNP .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uRI2FjZiNP .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uRI2FjZiNP ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uRI2FjZiNP .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uRI2FjZiNP button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uRI2FjZiNP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uRI2FjZiNP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uRI2FjZiNP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uRI2FjZiNP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uRI2FjZiNP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uRI2FjZiNP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uRI2FjZiNP nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uRI2FjZiNP nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uRI2FjZiNP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uRI2FjZiNP .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uRI2FjZiNP a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uRI2FjZiNP .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-uRI2FjZiNP .navbar {
    height: 70px;
  }
  .cid-uRI2FjZiNP .navbar.opened {
    height: auto;
  }
  .cid-uRI2FjZiNP .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uRI3C8hv9Z {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uRI3C8hv9Z blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-uRI4f1FRjQ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uRI4f1FRjQ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uRI4f1FRjQ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uRI4f1FRjQ .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uRI4f1FRjQ .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uRI4f1FRjQ .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uRI4f1FRjQ .row .foot-menu li p {
  margin: 0;
}
.cid-uRI4f1FRjQ .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uRI4f1FRjQ .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uRI4f1FRjQ .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uRI4f1FRjQ .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uRI4f1FRjQ .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uRI4f1FRjQ .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uRI4f1FRjQ .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uRI4f1FRjQ .row .row-copirayt p {
  width: 100%;
}
.cid-uWhCMBXanT .navbar-dropdown {
  position: relative !important;
}
.cid-uWhCMBXanT .navbar-dropdown {
  position: absolute !important;
}
.cid-uWhCMBXanT .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-uWhCMBXanT .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uWhCMBXanT .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uWhCMBXanT .dropdown-item:hover,
.cid-uWhCMBXanT .dropdown-item:focus {
  background: #ffcf00 !important;
  color: white !important;
}
.cid-uWhCMBXanT .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uWhCMBXanT .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uWhCMBXanT .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uWhCMBXanT .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uWhCMBXanT .nav-link {
  position: relative;
}
.cid-uWhCMBXanT .container {
  display: flex;
  margin: auto;
}
.cid-uWhCMBXanT .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uWhCMBXanT .dropdown-menu,
.cid-uWhCMBXanT .navbar.opened {
  background: #0a0b0d !important;
}
.cid-uWhCMBXanT .nav-item:focus,
.cid-uWhCMBXanT .nav-link:focus {
  outline: none;
}
.cid-uWhCMBXanT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uWhCMBXanT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uWhCMBXanT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uWhCMBXanT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uWhCMBXanT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uWhCMBXanT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uWhCMBXanT .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #0a0b0d;
}
.cid-uWhCMBXanT .navbar.opened {
  transition: all 0.3s;
}
.cid-uWhCMBXanT .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uWhCMBXanT .navbar .navbar-logo img {
  width: auto;
}
.cid-uWhCMBXanT .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uWhCMBXanT .navbar.collapsed {
  justify-content: center;
}
.cid-uWhCMBXanT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uWhCMBXanT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uWhCMBXanT .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uWhCMBXanT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uWhCMBXanT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uWhCMBXanT .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-uWhCMBXanT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uWhCMBXanT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uWhCMBXanT .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uWhCMBXanT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uWhCMBXanT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uWhCMBXanT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uWhCMBXanT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uWhCMBXanT .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-uWhCMBXanT .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uWhCMBXanT .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uWhCMBXanT .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uWhCMBXanT .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uWhCMBXanT .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uWhCMBXanT .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uWhCMBXanT .navbar.navbar-short {
  min-height: 60px;
}
.cid-uWhCMBXanT .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uWhCMBXanT .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uWhCMBXanT .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-uWhCMBXanT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uWhCMBXanT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uWhCMBXanT .dropdown-item.active,
.cid-uWhCMBXanT .dropdown-item:active {
  background-color: transparent;
}
.cid-uWhCMBXanT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uWhCMBXanT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uWhCMBXanT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uWhCMBXanT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0a0b0d;
}
.cid-uWhCMBXanT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uWhCMBXanT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uWhCMBXanT ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uWhCMBXanT .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uWhCMBXanT button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uWhCMBXanT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uWhCMBXanT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uWhCMBXanT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uWhCMBXanT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uWhCMBXanT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uWhCMBXanT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uWhCMBXanT nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uWhCMBXanT nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uWhCMBXanT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uWhCMBXanT .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uWhCMBXanT a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uWhCMBXanT .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-uWhCMBXanT .navbar {
    height: 70px;
  }
  .cid-uWhCMBXanT .navbar.opened {
    height: auto;
  }
  .cid-uWhCMBXanT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uWj7p4JAU1 {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-color: #232323;
}
.cid-uWj7p4JAU1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWj7p4JAU1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWj7p4JAU1 .mbr-text,
.cid-uWj7p4JAU1 .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uWj7p4JAU1 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uWj7p4JAU1 .mbr-section-subtitle {
  text-align: center;
}
.cid-vcOhJMvu3U {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #0a0b0d;
}
.cid-vcOhJMvu3U .mbr-fallback-image.disabled {
  display: none;
}
.cid-vcOhJMvu3U .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vcOhJMvu3U .mbr-text,
.cid-vcOhJMvu3U .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-vcOhJMvu3U .mbr-section-title {
  color: #fff0b0;
  text-align: center;
}
.cid-vcO8I2I1Ac {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #0a0b0d;
}
.cid-vcO8I2I1Ac .mbr-fallback-image.disabled {
  display: none;
}
.cid-vcO8I2I1Ac .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vcO8I2I1Ac .mbr-text,
.cid-vcO8I2I1Ac .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-vcO8I2I1Ac .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-vcO8I2I1Ac .mbr-section-subtitle {
  text-align: center;
}
.cid-vcOhCq6Mka {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #0a0b0d;
}
.cid-vcOhCq6Mka .mbr-fallback-image.disabled {
  display: none;
}
.cid-vcOhCq6Mka .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vcOhCq6Mka .mbr-text,
.cid-vcOhCq6Mka .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-vcOhCq6Mka .mbr-section-title {
  color: #fff0b0;
  text-align: center;
}
.cid-vcOhJfVbiN {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #0a0b0d;
}
.cid-vcOhJfVbiN .mbr-fallback-image.disabled {
  display: none;
}
.cid-vcOhJfVbiN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vcOhJfVbiN .mbr-text,
.cid-vcOhJfVbiN .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-vcOhJfVbiN .mbr-section-title {
  color: #fff0b0;
  text-align: center;
}
.cid-vcOhKbpG65 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #0a0b0d;
}
.cid-vcOhKbpG65 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vcOhKbpG65 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vcOhKbpG65 .mbr-text,
.cid-vcOhKbpG65 .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-vcOhKbpG65 .mbr-section-title {
  color: #fff0b0;
  text-align: center;
}
.cid-vcOhLqpazm {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #0a0b0d;
}
.cid-vcOhLqpazm .mbr-fallback-image.disabled {
  display: none;
}
.cid-vcOhLqpazm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vcOhLqpazm .mbr-text,
.cid-vcOhLqpazm .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-vcOhLqpazm .mbr-section-title {
  color: #fff0b0;
  text-align: center;
}
.cid-uWhCMD1aR7 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uWhCMD1aR7 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uWhCMD1aR7 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uWhCMD1aR7 .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uWhCMD1aR7 .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uWhCMD1aR7 .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uWhCMD1aR7 .row .foot-menu li p {
  margin: 0;
}
.cid-uWhCMD1aR7 .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uWhCMD1aR7 .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uWhCMD1aR7 .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uWhCMD1aR7 .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uWhCMD1aR7 .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uWhCMD1aR7 .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uWhCMD1aR7 .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uWhCMD1aR7 .row .row-copirayt p {
  width: 100%;
}
.cid-uWjiX7qFJz .navbar-dropdown {
  position: relative !important;
}
.cid-uWjiX7qFJz .navbar-dropdown {
  position: absolute !important;
}
.cid-uWjiX7qFJz .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-uWjiX7qFJz .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uWjiX7qFJz .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uWjiX7qFJz .dropdown-item:hover,
.cid-uWjiX7qFJz .dropdown-item:focus {
  background: #ffcf00 !important;
  color: white !important;
}
.cid-uWjiX7qFJz .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uWjiX7qFJz .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uWjiX7qFJz .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uWjiX7qFJz .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uWjiX7qFJz .nav-link {
  position: relative;
}
.cid-uWjiX7qFJz .container {
  display: flex;
  margin: auto;
}
.cid-uWjiX7qFJz .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uWjiX7qFJz .dropdown-menu,
.cid-uWjiX7qFJz .navbar.opened {
  background: #0a0b0d !important;
}
.cid-uWjiX7qFJz .nav-item:focus,
.cid-uWjiX7qFJz .nav-link:focus {
  outline: none;
}
.cid-uWjiX7qFJz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uWjiX7qFJz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uWjiX7qFJz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uWjiX7qFJz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uWjiX7qFJz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uWjiX7qFJz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uWjiX7qFJz .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #0a0b0d;
}
.cid-uWjiX7qFJz .navbar.opened {
  transition: all 0.3s;
}
.cid-uWjiX7qFJz .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uWjiX7qFJz .navbar .navbar-logo img {
  width: auto;
}
.cid-uWjiX7qFJz .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uWjiX7qFJz .navbar.collapsed {
  justify-content: center;
}
.cid-uWjiX7qFJz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uWjiX7qFJz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uWjiX7qFJz .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uWjiX7qFJz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uWjiX7qFJz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uWjiX7qFJz .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-uWjiX7qFJz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uWjiX7qFJz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uWjiX7qFJz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uWjiX7qFJz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uWjiX7qFJz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uWjiX7qFJz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uWjiX7qFJz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uWjiX7qFJz .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-uWjiX7qFJz .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uWjiX7qFJz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uWjiX7qFJz .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uWjiX7qFJz .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uWjiX7qFJz .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uWjiX7qFJz .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uWjiX7qFJz .navbar.navbar-short {
  min-height: 60px;
}
.cid-uWjiX7qFJz .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uWjiX7qFJz .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uWjiX7qFJz .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-uWjiX7qFJz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uWjiX7qFJz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uWjiX7qFJz .dropdown-item.active,
.cid-uWjiX7qFJz .dropdown-item:active {
  background-color: transparent;
}
.cid-uWjiX7qFJz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uWjiX7qFJz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uWjiX7qFJz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uWjiX7qFJz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0a0b0d;
}
.cid-uWjiX7qFJz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uWjiX7qFJz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uWjiX7qFJz ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uWjiX7qFJz .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uWjiX7qFJz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uWjiX7qFJz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uWjiX7qFJz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uWjiX7qFJz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uWjiX7qFJz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uWjiX7qFJz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uWjiX7qFJz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uWjiX7qFJz nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uWjiX7qFJz nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uWjiX7qFJz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uWjiX7qFJz .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uWjiX7qFJz a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uWjiX7qFJz .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-uWjiX7qFJz .navbar {
    height: 70px;
  }
  .cid-uWjiX7qFJz .navbar.opened {
    height: auto;
  }
  .cid-uWjiX7qFJz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uWjiX7Mf8t {
  padding-top: 10rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uWjiX7Mf8t .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWjiX7Mf8t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWjiX7Mf8t .mbr-text,
.cid-uWjiX7Mf8t .mbr-section-btn {
  color: #ffffff;
}
.cid-uWjiX7Mf8t .mbr-section-title {
  color: #fff0b0;
  text-align: center;
}
.cid-uWzMBHYjnI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uWzMBHYjnI .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uWjiXci7UO {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uWjiXci7UO .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uWjiXci7UO .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uWjiXci7UO .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uWjiXci7UO .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uWjiXci7UO .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uWjiXci7UO .row .foot-menu li p {
  margin: 0;
}
.cid-uWjiXci7UO .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uWjiXci7UO .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uWjiXci7UO .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uWjiXci7UO .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uWjiXci7UO .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uWjiXci7UO .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uWjiXci7UO .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uWjiXci7UO .row .row-copirayt p {
  width: 100%;
}
.cid-v1xNXWeUeM .navbar-dropdown {
  position: relative !important;
}
.cid-v1xNXWeUeM .navbar-dropdown {
  position: absolute !important;
}
.cid-v1xNXWeUeM .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-v1xNXWeUeM .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v1xNXWeUeM .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v1xNXWeUeM .dropdown-item:hover,
.cid-v1xNXWeUeM .dropdown-item:focus {
  background: #ffcf00 !important;
  color: white !important;
}
.cid-v1xNXWeUeM .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v1xNXWeUeM .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v1xNXWeUeM .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v1xNXWeUeM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v1xNXWeUeM .nav-link {
  position: relative;
}
.cid-v1xNXWeUeM .container {
  display: flex;
  margin: auto;
}
.cid-v1xNXWeUeM .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v1xNXWeUeM .dropdown-menu,
.cid-v1xNXWeUeM .navbar.opened {
  background: #0a0b0d !important;
}
.cid-v1xNXWeUeM .nav-item:focus,
.cid-v1xNXWeUeM .nav-link:focus {
  outline: none;
}
.cid-v1xNXWeUeM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v1xNXWeUeM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v1xNXWeUeM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v1xNXWeUeM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v1xNXWeUeM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v1xNXWeUeM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v1xNXWeUeM .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #0a0b0d;
}
.cid-v1xNXWeUeM .navbar.opened {
  transition: all 0.3s;
}
.cid-v1xNXWeUeM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v1xNXWeUeM .navbar .navbar-logo img {
  width: auto;
}
.cid-v1xNXWeUeM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v1xNXWeUeM .navbar.collapsed {
  justify-content: center;
}
.cid-v1xNXWeUeM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v1xNXWeUeM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v1xNXWeUeM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v1xNXWeUeM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v1xNXWeUeM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v1xNXWeUeM .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-v1xNXWeUeM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v1xNXWeUeM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v1xNXWeUeM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v1xNXWeUeM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v1xNXWeUeM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v1xNXWeUeM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v1xNXWeUeM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v1xNXWeUeM .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-v1xNXWeUeM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v1xNXWeUeM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v1xNXWeUeM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v1xNXWeUeM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v1xNXWeUeM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v1xNXWeUeM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v1xNXWeUeM .navbar.navbar-short {
  min-height: 60px;
}
.cid-v1xNXWeUeM .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v1xNXWeUeM .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v1xNXWeUeM .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-v1xNXWeUeM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v1xNXWeUeM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v1xNXWeUeM .dropdown-item.active,
.cid-v1xNXWeUeM .dropdown-item:active {
  background-color: transparent;
}
.cid-v1xNXWeUeM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v1xNXWeUeM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v1xNXWeUeM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v1xNXWeUeM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0a0b0d;
}
.cid-v1xNXWeUeM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v1xNXWeUeM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v1xNXWeUeM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v1xNXWeUeM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v1xNXWeUeM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v1xNXWeUeM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v1xNXWeUeM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v1xNXWeUeM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v1xNXWeUeM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v1xNXWeUeM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v1xNXWeUeM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v1xNXWeUeM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v1xNXWeUeM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v1xNXWeUeM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v1xNXWeUeM .navbar-dropdown {
  padding: 0 1rem;
}
.cid-v1xNXWeUeM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v1xNXWeUeM .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-v1xNXWeUeM .navbar {
    height: 70px;
  }
  .cid-v1xNXWeUeM .navbar.opened {
    height: auto;
  }
  .cid-v1xNXWeUeM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v1xNXWJy54 {
  padding-top: 10rem;
  padding-bottom: 3rem;
  background-color: #0a0b0d;
}
.cid-v1xNXWJy54 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1xNXWJy54 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1xNXWJy54 .mbr-text,
.cid-v1xNXWJy54 .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-v1xNXWJy54 .mbr-section-title {
  color: #e6c63b;
  text-align: center;
}
.cid-viDb9dtany {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-viDb9dtany .mbr-fallback-image.disabled {
  display: none;
}
.cid-viDb9dtany .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-viDb9dtany .mbr-text,
.cid-viDb9dtany .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-viDb9dtany .mbr-section-title {
  color: #fff0b0;
  text-align: center;
}
.cid-vqU4ZQeh1a {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-vqU4ZQeh1a .mbr-fallback-image.disabled {
  display: none;
}
.cid-vqU4ZQeh1a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vqU4ZQeh1a .mbr-text,
.cid-vqU4ZQeh1a .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-vqU4ZQeh1a .mbr-section-title {
  color: #fff0b0;
  text-align: center;
}
.cid-vqU58Y3QNp {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-vqU58Y3QNp .mbr-fallback-image.disabled {
  display: none;
}
.cid-vqU58Y3QNp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vqU58Y3QNp .mbr-text,
.cid-vqU58Y3QNp .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-vqU58Y3QNp .mbr-section-title {
  color: #fff0b0;
  text-align: center;
}
.cid-viDbdvrzPX {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #da062d;
}
.cid-viDbdvrzPX .mbr-fallback-image.disabled {
  display: none;
}
.cid-viDbdvrzPX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-viDbdvrzPX .item-wrapper {
  background-color: #edf4f7;
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #edf4f7;
  transition: all 0.3s;
  padding: 2rem;
  padding-top: 3rem;
}
.cid-viDbdvrzPX .mbr-section-title,
.cid-viDbdvrzPX .mbr-section-subtitle {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-viDbdvrzPX .item-wrapper {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-viDbdvrzPX .item-wrapper {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-viDbdvrzPX .mbr-section-title {
  color: #ffffff;
}
.cid-viDbdvrzPX .mbr-text {
  text-align: center;
}
.cid-viDbdvrzPX .card-title DIV {
  text-align: left;
}
.cid-viDb0Jy0ph {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-viDb0Jy0ph .mbr-fallback-image.disabled {
  display: none;
}
.cid-viDb0Jy0ph .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-viDb0Jy0ph .mbr-text,
.cid-viDb0Jy0ph .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-viDb0Jy0ph .mbr-section-title {
  color: #fff0b0;
  text-align: center;
}
.cid-viDb0Jy0ph .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-viDb0Jy0ph .mbr-section-subtitle {
  text-align: center;
}
.cid-viDb79ecpV {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #da062d;
}
.cid-viDb79ecpV .mbr-fallback-image.disabled {
  display: none;
}
.cid-viDb79ecpV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-viDb79ecpV .item-wrapper {
  background-color: #edf4f7;
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #edf4f7;
  transition: all 0.3s;
  padding: 2rem;
  padding-top: 3rem;
}
.cid-viDb79ecpV .mbr-section-title,
.cid-viDb79ecpV .mbr-section-subtitle {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-viDb79ecpV .item-wrapper {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-viDb79ecpV .item-wrapper {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-viDb79ecpV .mbr-section-title {
  color: #ffffff;
}
.cid-viDb79ecpV .mbr-text {
  text-align: center;
}
.cid-viDb79ecpV .card-title DIV {
  text-align: left;
}
.cid-viDaJaYia0 {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-viDaJaYia0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-viDaJaYia0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-viDaJaYia0 .mbr-text,
.cid-viDaJaYia0 .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-viDaJaYia0 .mbr-section-title {
  color: #fff0b0;
  text-align: center;
}
.cid-viDaJaYia0 .mbr-section-subtitle {
  text-align: center;
}
.cid-viD9gFK9TL {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #da062d;
}
.cid-viD9gFK9TL img {
  width: 100%;
  filter: grayscale(1);
}
.cid-viD9gFK9TL .text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}
.cid-viD9gFK9TL .block-timeline {
  display: flex;
}
.cid-viD9gFK9TL .image-wrap {
  padding: 0rem;
  padding-right: 2rem;
}
.cid-viD9gFK9TL .mbr-timeline-title {
  color: #ffffff;
  margin-bottom: 0.9rem;
}
.cid-viD9gFK9TL .inner-date {
  padding: 1rem 1.5rem;
  background-color: #e6c63b;
}
.cid-viD9gFK9TL .date-block {
  margin-right: 0.6rem;
}
.cid-viD9gFK9TL .mbr-date-block {
  margin-bottom: 0rem;
}
.cid-viD9gFK9TL .mbr-timeline-text {
  color: #ffffff;
  margin-bottom: 1.7rem;
}
.cid-viD9gFK9TL .mbr-timeline-date {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 0rem;
}
.cid-viD9gFK9TL .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-viD9gFK9TL .timeline-text-content {
  display: flex;
  background: #353535;
  transition: all 0.4s;
}
.cid-viD9gFK9TL .month-block {
  font-weight: 700;
}
.cid-viD9gFK9TL .timeline-element {
  margin-bottom: 30px;
  justify-content: center;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
}
.cid-viD9gFK9TL .timeline-element:hover .timeline-text-content {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
}
.cid-viD9gFK9TL .reverse {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-viD9gFK9TL .reverse .timeline-text-content {
  margin-right: 0;
}
.cid-viD9gFK9TL .bottom-date {
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
}
.cid-viD9gFK9TL .mbr-timeline-location {
  margin-bottom: 0rem;
  font-weight: 700;
}
.cid-viD9gFK9TL .location {
  display: flex;
  align-items: center;
}
.cid-viD9gFK9TL .mbr-iconfont {
  font-size: 16px;
  color: #e6c63b;
}
.cid-viD9gFK9TL .iconsBackground {
  margin-right: 0.8rem;
}
.cid-viD9gFK9TL .reverseTimeline {
  display: flex;
  flex-direction: column-reverse;
}
@media (max-width: 767px) {
  .cid-viD9gFK9TL .date-block {
    display: none;
  }
  .cid-viD9gFK9TL .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-viD9gFK9TL .image-wrap {
    padding-right: 0rem;
  }
  .cid-viD9gFK9TL .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
  .cid-viD9gFK9TL .block-timeline {
    padding: 0;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-viD9gFK9TL .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-viD9gFK9TL .image-wrap {
    padding-right: 0rem;
  }
  .cid-viD9gFK9TL .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-viD9gFK9TL .timeline-text-content {
    padding: 1.9rem;
  }
}
@media (min-width: 767px) {
  .cid-viD9gFK9TL .block-timeline {
    padding: 0;
  }
}
.cid-viD9gFK9TL .mbr-fallback-image.disabled {
  display: none;
}
.cid-viD9gFK9TL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-viD9wi8BHC {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #da062d;
}
.cid-viD9wi8BHC .mbr-fallback-image.disabled {
  display: none;
}
.cid-viD9wi8BHC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-viD9wi8BHC .item-wrapper {
  background-color: #edf4f7;
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #edf4f7;
  transition: all 0.3s;
  padding: 2rem;
  padding-top: 3rem;
}
.cid-viD9wi8BHC .mbr-section-title,
.cid-viD9wi8BHC .mbr-section-subtitle {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-viD9wi8BHC .item-wrapper {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-viD9wi8BHC .item-wrapper {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-viD9wi8BHC .mbr-section-title {
  color: #ffffff;
}
.cid-viD9wi8BHC .mbr-text {
  text-align: center;
}
.cid-viD9wi8BHC .card-title DIV {
  text-align: left;
}
.cid-viD9wZFixB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #da062d;
}
.cid-viD9wZFixB blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-v4A83DviPZ {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-v4A83DviPZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4A83DviPZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4A83DviPZ .mbr-text,
.cid-v4A83DviPZ .mbr-section-btn {
  color: #ffffff;
}
.cid-v4A83DviPZ .mbr-section-title {
  color: #e6c63b;
  text-align: center;
}
.cid-v4A83DviPZ .mbr-section-subtitle {
  text-align: center;
}
.cid-v4A84ARVji {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-v4A84ARVji img {
  width: 100%;
  filter: grayscale(1);
}
.cid-v4A84ARVji .text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}
.cid-v4A84ARVji .block-timeline {
  display: flex;
}
.cid-v4A84ARVji .image-wrap {
  padding: 0rem;
  padding-right: 2rem;
}
.cid-v4A84ARVji .mbr-timeline-title {
  color: #ffffff;
  margin-bottom: 0.9rem;
}
.cid-v4A84ARVji .inner-date {
  padding: 1rem 1.5rem;
  background-color: #e6c63b;
}
.cid-v4A84ARVji .date-block {
  margin-right: 0.6rem;
}
.cid-v4A84ARVji .mbr-date-block {
  margin-bottom: 0rem;
}
.cid-v4A84ARVji .mbr-timeline-text {
  color: #ffffff;
  margin-bottom: 1.7rem;
}
.cid-v4A84ARVji .mbr-timeline-date {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 0rem;
}
.cid-v4A84ARVji .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-v4A84ARVji .timeline-text-content {
  display: flex;
  background: #da062d;
  transition: all 0.4s;
}
.cid-v4A84ARVji .month-block {
  font-weight: 700;
}
.cid-v4A84ARVji .timeline-element {
  margin-bottom: 30px;
  justify-content: center;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
}
.cid-v4A84ARVji .timeline-element:hover .timeline-text-content {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
}
.cid-v4A84ARVji .reverse {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-v4A84ARVji .reverse .timeline-text-content {
  margin-right: 0;
}
.cid-v4A84ARVji .bottom-date {
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
}
.cid-v4A84ARVji .mbr-timeline-location {
  margin-bottom: 0rem;
  font-weight: 700;
}
.cid-v4A84ARVji .location {
  display: flex;
  align-items: center;
}
.cid-v4A84ARVji .mbr-iconfont {
  font-size: 16px;
  color: #e6c63b;
}
.cid-v4A84ARVji .iconsBackground {
  margin-right: 0.8rem;
}
.cid-v4A84ARVji .reverseTimeline {
  display: flex;
  flex-direction: column-reverse;
}
@media (max-width: 767px) {
  .cid-v4A84ARVji .date-block {
    display: none;
  }
  .cid-v4A84ARVji .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v4A84ARVji .image-wrap {
    padding-right: 0rem;
  }
  .cid-v4A84ARVji .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
  .cid-v4A84ARVji .block-timeline {
    padding: 0;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-v4A84ARVji .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v4A84ARVji .image-wrap {
    padding-right: 0rem;
  }
  .cid-v4A84ARVji .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-v4A84ARVji .timeline-text-content {
    padding: 1.9rem;
  }
}
@media (min-width: 767px) {
  .cid-v4A84ARVji .block-timeline {
    padding: 0;
  }
}
.cid-v4A84ARVji .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4A84ARVji .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4A85WRBX1 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-v4A85WRBX1 img {
  width: 100%;
  filter: grayscale(1);
}
.cid-v4A85WRBX1 .text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}
.cid-v4A85WRBX1 .block-timeline {
  display: flex;
}
.cid-v4A85WRBX1 .image-wrap {
  padding: 0rem;
  padding-right: 2rem;
}
.cid-v4A85WRBX1 .mbr-timeline-title {
  color: #ffffff;
  margin-bottom: 0.9rem;
}
.cid-v4A85WRBX1 .inner-date {
  padding: 1rem 1.5rem;
  background-color: #e6c63b;
}
.cid-v4A85WRBX1 .date-block {
  margin-right: 0.6rem;
}
.cid-v4A85WRBX1 .mbr-date-block {
  margin-bottom: 0rem;
}
.cid-v4A85WRBX1 .mbr-timeline-text {
  color: #ffffff;
  margin-bottom: 1.7rem;
}
.cid-v4A85WRBX1 .mbr-timeline-date {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 0rem;
}
.cid-v4A85WRBX1 .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-v4A85WRBX1 .timeline-text-content {
  display: flex;
  background: #da062d;
  transition: all 0.4s;
}
.cid-v4A85WRBX1 .month-block {
  font-weight: 700;
}
.cid-v4A85WRBX1 .timeline-element {
  margin-bottom: 30px;
  justify-content: center;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
}
.cid-v4A85WRBX1 .timeline-element:hover .timeline-text-content {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
}
.cid-v4A85WRBX1 .reverse {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-v4A85WRBX1 .reverse .timeline-text-content {
  margin-right: 0;
}
.cid-v4A85WRBX1 .bottom-date {
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
}
.cid-v4A85WRBX1 .mbr-timeline-location {
  margin-bottom: 0rem;
  font-weight: 700;
}
.cid-v4A85WRBX1 .location {
  display: flex;
  align-items: center;
}
.cid-v4A85WRBX1 .mbr-iconfont {
  font-size: 16px;
  color: #e6c63b;
}
.cid-v4A85WRBX1 .iconsBackground {
  margin-right: 0.8rem;
}
.cid-v4A85WRBX1 .reverseTimeline {
  display: flex;
  flex-direction: column-reverse;
}
@media (max-width: 767px) {
  .cid-v4A85WRBX1 .date-block {
    display: none;
  }
  .cid-v4A85WRBX1 .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v4A85WRBX1 .image-wrap {
    padding-right: 0rem;
  }
  .cid-v4A85WRBX1 .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
  .cid-v4A85WRBX1 .block-timeline {
    padding: 0;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-v4A85WRBX1 .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v4A85WRBX1 .image-wrap {
    padding-right: 0rem;
  }
  .cid-v4A85WRBX1 .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-v4A85WRBX1 .timeline-text-content {
    padding: 1.9rem;
  }
}
@media (min-width: 767px) {
  .cid-v4A85WRBX1 .block-timeline {
    padding: 0;
  }
}
.cid-v4A85WRBX1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4A85WRBX1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4A880OvqF {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #da062d;
}
.cid-v4A880OvqF .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4A880OvqF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4A880OvqF .item-wrapper {
  background-color: #edf4f7;
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #edf4f7;
  transition: all 0.3s;
  padding: 2rem;
  padding-top: 3rem;
}
.cid-v4A880OvqF .mbr-section-title,
.cid-v4A880OvqF .mbr-section-subtitle {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-v4A880OvqF .item-wrapper {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-v4A880OvqF .item-wrapper {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-v4A880OvqF .mbr-section-title {
  color: #ffffff;
}
.cid-v4A880OvqF .mbr-text {
  text-align: center;
}
.cid-v1xNY66vgk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #da062d;
}
.cid-v1xNY66vgk blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-v1xNY3mfvV {
  padding-top: 10rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-v1xNY3mfvV .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1xNY3mfvV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1xNY3mfvV .mbr-text,
.cid-v1xNY3mfvV .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-v1xNY3mfvV .mbr-section-title {
  color: #e6c63b;
  text-align: center;
}
.cid-v1xNY3mfvV .mbr-section-subtitle {
  text-align: center;
}
.cid-v1xNY4iAJW {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-v1xNY4iAJW img {
  width: 100%;
  filter: grayscale(1);
}
.cid-v1xNY4iAJW .text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}
.cid-v1xNY4iAJW .block-timeline {
  display: flex;
}
.cid-v1xNY4iAJW .image-wrap {
  padding: 0rem;
  padding-right: 2rem;
}
.cid-v1xNY4iAJW .mbr-timeline-title {
  color: #ffffff;
  margin-bottom: 0.9rem;
}
.cid-v1xNY4iAJW .inner-date {
  padding: 1rem 1.5rem;
  background-color: #e6c63b;
}
.cid-v1xNY4iAJW .date-block {
  margin-right: 0.6rem;
}
.cid-v1xNY4iAJW .mbr-date-block {
  margin-bottom: 0rem;
}
.cid-v1xNY4iAJW .mbr-timeline-text {
  color: #ffffff;
  margin-bottom: 1.7rem;
}
.cid-v1xNY4iAJW .mbr-timeline-date {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 0rem;
}
.cid-v1xNY4iAJW .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-v1xNY4iAJW .timeline-text-content {
  display: flex;
  background: #da062d;
  transition: all 0.4s;
}
.cid-v1xNY4iAJW .month-block {
  font-weight: 700;
}
.cid-v1xNY4iAJW .timeline-element {
  margin-bottom: 30px;
  justify-content: center;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
}
.cid-v1xNY4iAJW .timeline-element:hover .timeline-text-content {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
}
.cid-v1xNY4iAJW .reverse {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-v1xNY4iAJW .reverse .timeline-text-content {
  margin-right: 0;
}
.cid-v1xNY4iAJW .bottom-date {
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
}
.cid-v1xNY4iAJW .mbr-timeline-location {
  margin-bottom: 0rem;
  font-weight: 700;
}
.cid-v1xNY4iAJW .location {
  display: flex;
  align-items: center;
}
.cid-v1xNY4iAJW .mbr-iconfont {
  font-size: 16px;
  color: #e6c63b;
}
.cid-v1xNY4iAJW .iconsBackground {
  margin-right: 0.8rem;
}
.cid-v1xNY4iAJW .reverseTimeline {
  display: flex;
  flex-direction: column-reverse;
}
@media (max-width: 767px) {
  .cid-v1xNY4iAJW .date-block {
    display: none;
  }
  .cid-v1xNY4iAJW .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v1xNY4iAJW .image-wrap {
    padding-right: 0rem;
  }
  .cid-v1xNY4iAJW .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
  .cid-v1xNY4iAJW .block-timeline {
    padding: 0;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-v1xNY4iAJW .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v1xNY4iAJW .image-wrap {
    padding-right: 0rem;
  }
  .cid-v1xNY4iAJW .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-v1xNY4iAJW .timeline-text-content {
    padding: 1.9rem;
  }
}
@media (min-width: 767px) {
  .cid-v1xNY4iAJW .block-timeline {
    padding: 0;
  }
}
.cid-v1xNY4iAJW .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1xNY4iAJW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1xNY6v6lI {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #da062d;
}
.cid-v1xNY6v6lI .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1xNY6v6lI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1xNY6v6lI .item-wrapper {
  background-color: #edf4f7;
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #edf4f7;
  transition: all 0.3s;
  padding: 2rem;
  padding-top: 3rem;
}
.cid-v1xNY6v6lI .mbr-section-title,
.cid-v1xNY6v6lI .mbr-section-subtitle {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-v1xNY6v6lI .item-wrapper {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-v1xNY6v6lI .item-wrapper {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-v1xNY6v6lI .mbr-section-title {
  color: #ffffff;
}
.cid-v1xNY6v6lI .mbr-text {
  text-align: center;
}
.cid-v1xNY6v6lI .card-title DIV {
  text-align: left;
}
.cid-v1xNXX5IMx {
  padding-top: 10rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-v1xNXX5IMx .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1xNXX5IMx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1xNXX5IMx .mbr-text,
.cid-v1xNXX5IMx .mbr-section-btn {
  color: #ffffff;
}
.cid-v1xNXX5IMx .mbr-section-title {
  color: #e6c63b;
  text-align: center;
}
.cid-v1xNXX5IMx .mbr-section-subtitle {
  text-align: center;
}
.cid-v1xNXXThgV {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-v1xNXXThgV img {
  width: 100%;
  filter: grayscale(1);
}
.cid-v1xNXXThgV .text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}
.cid-v1xNXXThgV .block-timeline {
  display: flex;
}
.cid-v1xNXXThgV .image-wrap {
  padding: 0rem;
  padding-right: 2rem;
}
.cid-v1xNXXThgV .mbr-timeline-title {
  color: #ffffff;
  margin-bottom: 0.9rem;
}
.cid-v1xNXXThgV .inner-date {
  padding: 1rem 1.5rem;
  background-color: #e6c63b;
}
.cid-v1xNXXThgV .date-block {
  margin-right: 0.6rem;
}
.cid-v1xNXXThgV .mbr-date-block {
  margin-bottom: 0rem;
}
.cid-v1xNXXThgV .mbr-timeline-text {
  color: #ffffff;
  margin-bottom: 1.7rem;
}
.cid-v1xNXXThgV .mbr-timeline-date {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 0rem;
}
.cid-v1xNXXThgV .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-v1xNXXThgV .timeline-text-content {
  display: flex;
  background: #da062d;
  transition: all 0.4s;
}
.cid-v1xNXXThgV .month-block {
  font-weight: 700;
}
.cid-v1xNXXThgV .timeline-element {
  margin-bottom: 30px;
  justify-content: center;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
}
.cid-v1xNXXThgV .timeline-element:hover .timeline-text-content {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
}
.cid-v1xNXXThgV .reverse {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-v1xNXXThgV .reverse .timeline-text-content {
  margin-right: 0;
}
.cid-v1xNXXThgV .bottom-date {
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
}
.cid-v1xNXXThgV .mbr-timeline-location {
  margin-bottom: 0rem;
  font-weight: 700;
}
.cid-v1xNXXThgV .location {
  display: flex;
  align-items: center;
}
.cid-v1xNXXThgV .mbr-iconfont {
  font-size: 16px;
  color: #e6c63b;
}
.cid-v1xNXXThgV .iconsBackground {
  margin-right: 0.8rem;
}
.cid-v1xNXXThgV .reverseTimeline {
  display: flex;
  flex-direction: column-reverse;
}
@media (max-width: 767px) {
  .cid-v1xNXXThgV .date-block {
    display: none;
  }
  .cid-v1xNXXThgV .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v1xNXXThgV .image-wrap {
    padding-right: 0rem;
  }
  .cid-v1xNXXThgV .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
  .cid-v1xNXXThgV .block-timeline {
    padding: 0;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-v1xNXXThgV .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v1xNXXThgV .image-wrap {
    padding-right: 0rem;
  }
  .cid-v1xNXXThgV .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-v1xNXXThgV .timeline-text-content {
    padding: 1.9rem;
  }
}
@media (min-width: 767px) {
  .cid-v1xNXXThgV .block-timeline {
    padding: 0;
  }
}
.cid-v1xNXXThgV .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1xNXXThgV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1xNXZFasc {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-v1xNXZFasc img {
  width: 100%;
  filter: grayscale(1);
}
.cid-v1xNXZFasc .text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}
.cid-v1xNXZFasc .block-timeline {
  display: flex;
}
.cid-v1xNXZFasc .image-wrap {
  padding: 0rem;
  padding-right: 2rem;
}
.cid-v1xNXZFasc .mbr-timeline-title {
  color: #ffffff;
  margin-bottom: 0.9rem;
}
.cid-v1xNXZFasc .inner-date {
  padding: 1rem 1.5rem;
  background-color: #e6c63b;
}
.cid-v1xNXZFasc .date-block {
  margin-right: 0.6rem;
}
.cid-v1xNXZFasc .mbr-date-block {
  margin-bottom: 0rem;
}
.cid-v1xNXZFasc .mbr-timeline-text {
  color: #ffffff;
  margin-bottom: 1.7rem;
}
.cid-v1xNXZFasc .mbr-timeline-date {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 0rem;
}
.cid-v1xNXZFasc .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-v1xNXZFasc .timeline-text-content {
  display: flex;
  background: #da062d;
  transition: all 0.4s;
}
.cid-v1xNXZFasc .month-block {
  font-weight: 700;
}
.cid-v1xNXZFasc .timeline-element {
  margin-bottom: 30px;
  justify-content: center;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
}
.cid-v1xNXZFasc .timeline-element:hover .timeline-text-content {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
}
.cid-v1xNXZFasc .reverse {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-v1xNXZFasc .reverse .timeline-text-content {
  margin-right: 0;
}
.cid-v1xNXZFasc .bottom-date {
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
}
.cid-v1xNXZFasc .mbr-timeline-location {
  margin-bottom: 0rem;
  font-weight: 700;
}
.cid-v1xNXZFasc .location {
  display: flex;
  align-items: center;
}
.cid-v1xNXZFasc .mbr-iconfont {
  font-size: 16px;
  color: #e6c63b;
}
.cid-v1xNXZFasc .iconsBackground {
  margin-right: 0.8rem;
}
.cid-v1xNXZFasc .reverseTimeline {
  display: flex;
  flex-direction: column-reverse;
}
@media (max-width: 767px) {
  .cid-v1xNXZFasc .date-block {
    display: none;
  }
  .cid-v1xNXZFasc .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v1xNXZFasc .image-wrap {
    padding-right: 0rem;
  }
  .cid-v1xNXZFasc .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
  .cid-v1xNXZFasc .block-timeline {
    padding: 0;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-v1xNXZFasc .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v1xNXZFasc .image-wrap {
    padding-right: 0rem;
  }
  .cid-v1xNXZFasc .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-v1xNXZFasc .timeline-text-content {
    padding: 1.9rem;
  }
}
@media (min-width: 767px) {
  .cid-v1xNXZFasc .block-timeline {
    padding: 0;
  }
}
.cid-v1xNXZFasc .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1xNXZFasc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1xNY1qkzp {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #da062d;
}
.cid-v1xNY1qkzp .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1xNY1qkzp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1xNY1qkzp .item-wrapper {
  background-color: #edf4f7;
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #edf4f7;
  transition: all 0.3s;
  padding: 2rem;
  padding-top: 3rem;
}
.cid-v1xNY1qkzp .mbr-section-title,
.cid-v1xNY1qkzp .mbr-section-subtitle {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-v1xNY1qkzp .item-wrapper {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-v1xNY1qkzp .item-wrapper {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-v1xNY1qkzp .mbr-section-title {
  color: #ffffff;
}
.cid-v1xNY1qkzp .mbr-text {
  text-align: center;
}
.cid-v1xNY87qiP {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-v1xNY87qiP .row-links {
  width: 100%;
  justify-content: center;
}
.cid-v1xNY87qiP .social-row {
  width: 100%;
  justify-content: center;
}
.cid-v1xNY87qiP .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-v1xNY87qiP .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-v1xNY87qiP .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-v1xNY87qiP .row .foot-menu li p {
  margin: 0;
}
.cid-v1xNY87qiP .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-v1xNY87qiP .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-v1xNY87qiP .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-v1xNY87qiP .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-v1xNY87qiP .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v1xNY87qiP .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v1xNY87qiP .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-v1xNY87qiP .row .row-copirayt p {
  width: 100%;
}
