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: 'Montserrat', sans-serif;
  font-size: 2rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.875rem;
}
.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: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
  .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: #22a5e5 !important;
}
.bg-success {
  background-color: #034d71 !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #22a5e5 !important;
  border-color: #22a5e5 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #13709e !important;
  border-color: #13709e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #13709e !important;
  border-color: #13709e !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !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: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !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: #034d71 !important;
  border-color: #034d71 !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: #01131d !important;
  border-color: #01131d !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #01131d !important;
  border-color: #01131d !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #22a5e5;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #13709e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #22a5e5 !important;
  border-color: #22a5e5 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  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: transparent!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: transparent;
  color: #034d71;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #01131d !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #034d71 !important;
  border-color: #034d71 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #22a5e5 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #034d71 !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #116690 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #00090e !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: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #22a5e5;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #22a5e5;
  border-color: #22a5e5;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #22a5e5;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #d9effa;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #06a2ed;
}
.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: #ffffff;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #22a5e5 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #22a5e5;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #22a5e5;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #22a5e5;
}
.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: #22a5e5;
  border-bottom-color: #22a5e5;
}
.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: #22a5e5 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !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='%2322a5e5' %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-sYmGYy3bVg {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sYmGYy3bVg nav.navbar {
  position: fixed;
}
.cid-sYmGYy3bVg .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-sYmGYy3bVg .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sYmGYy3bVg .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sYmGYy3bVg .dropdown-item:hover,
.cid-sYmGYy3bVg .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sYmGYy3bVg .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sYmGYy3bVg .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sYmGYy3bVg .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sYmGYy3bVg .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sYmGYy3bVg .nav-link {
  position: relative;
}
.cid-sYmGYy3bVg .container {
  display: flex;
  margin: auto;
}
.cid-sYmGYy3bVg .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sYmGYy3bVg .dropdown-menu,
.cid-sYmGYy3bVg .navbar.opened {
  background: #000000 !important;
}
.cid-sYmGYy3bVg .nav-item:focus,
.cid-sYmGYy3bVg .nav-link:focus {
  outline: none;
}
.cid-sYmGYy3bVg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sYmGYy3bVg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sYmGYy3bVg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sYmGYy3bVg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sYmGYy3bVg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sYmGYy3bVg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sYmGYy3bVg .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-sYmGYy3bVg .navbar.opened {
  transition: all 0.3s;
}
.cid-sYmGYy3bVg .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sYmGYy3bVg .navbar .navbar-logo img {
  width: auto;
}
.cid-sYmGYy3bVg .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sYmGYy3bVg .navbar.collapsed {
  justify-content: center;
}
.cid-sYmGYy3bVg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sYmGYy3bVg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sYmGYy3bVg .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-sYmGYy3bVg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sYmGYy3bVg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sYmGYy3bVg .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-sYmGYy3bVg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sYmGYy3bVg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sYmGYy3bVg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sYmGYy3bVg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sYmGYy3bVg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sYmGYy3bVg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sYmGYy3bVg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sYmGYy3bVg .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-sYmGYy3bVg .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sYmGYy3bVg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sYmGYy3bVg .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sYmGYy3bVg .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sYmGYy3bVg .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sYmGYy3bVg .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sYmGYy3bVg .navbar.navbar-short {
  min-height: 60px;
}
.cid-sYmGYy3bVg .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sYmGYy3bVg .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sYmGYy3bVg .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-sYmGYy3bVg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sYmGYy3bVg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sYmGYy3bVg .dropdown-item.active,
.cid-sYmGYy3bVg .dropdown-item:active {
  background-color: transparent;
}
.cid-sYmGYy3bVg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sYmGYy3bVg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sYmGYy3bVg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sYmGYy3bVg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-sYmGYy3bVg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sYmGYy3bVg ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sYmGYy3bVg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sYmGYy3bVg .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sYmGYy3bVg button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sYmGYy3bVg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sYmGYy3bVg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sYmGYy3bVg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sYmGYy3bVg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sYmGYy3bVg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sYmGYy3bVg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sYmGYy3bVg nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sYmGYy3bVg nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sYmGYy3bVg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sYmGYy3bVg .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sYmGYy3bVg a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sYmGYy3bVg .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-sYmGYy3bVg .navbar {
    height: 70px;
  }
  .cid-sYmGYy3bVg .navbar.opened {
    height: auto;
  }
  .cid-sYmGYy3bVg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sYmGYy3bVg .cid-sYmGYy3bVg .dropdown-item {
  border-bottom: 0px Important;
}
.cid-tOx6jKRRHX {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/1526728.jpg");
}
.cid-tOx6jKRRHX .mbr-text,
.cid-tOx6jKRRHX .mbr-section-btn {
  color: #ffffff;
  text-align: right;
}
.cid-tOx6jKRRHX .mbr-section-title {
  color: #ffffff;
  text-align: right;
}
.cid-tOx6jKRRHX .mbr-section-subtitle {
  color: #ffffff;
  text-align: right;
}
.cid-ux8JZEBjzt {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ux8JZEBjzt .mbr-fallback-image.disabled {
  display: none;
}
.cid-ux8JZEBjzt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-ux8JZEBjzt .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ux8JZEBjzt img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-ux8JZEBjzt .text-wrapper {
    padding: 2rem;
  }
}
.cid-sYoIczYfaG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sYoIczYfaG .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-sYoIczYfaG .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-sYoIczYfaG .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sYoIczYfaG .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sYoIczYfaG .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sYoIczYfaG .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sYoIczYfaG .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-sYoIczYfaG .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-v3cfCdotov {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #034d71;
}
.cid-v3cfCdotov .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3cfCdotov .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-v3cfCdotov .container {
    max-width: 1400px;
  }
}
.cid-v3cfCdotov .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #fafafa;
  margin-bottom: 2rem;
}
.cid-v3cfCdotov .row {
  justify-content: center;
}
.cid-v3cfCdotov .mbr-section-title {
  color: #ffffff;
}
.cid-v3cfCdotov .card-text {
  color: #ffffff;
}
.cid-v3cfCdotov .card-title,
.cid-v3cfCdotov .iconfont-wrapper {
  color: #ffffff;
}
.cid-sYFgS63npp {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sYFgS63npp img {
  width: 120px;
  margin: auto;
}
.cid-sYFgS63npp .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sYFgS63npp .card {
    max-width: 12.5%;
  }
}
.cid-vhwyoGJYPn {
  padding-top: 5rem;
  padding-bottom: 2.5rem;
  background: #1d3557;
}
.cid-vhwyoGJYPn .mbr-section-title {
  color: #ffffff;
}
.cid-vhwyoGJYPn .mbr-text {
  color: #f1faee;
}
.cid-vhwyoGJYPn .card-title {
  color: #e63946;
}
.cid-vhwyoGJYPn .mbr-iconfont {
  color: #e63946;
  font-size: 2rem;
  padding-right: 1rem;
}
.cid-vhwyoGJYPn .card-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}
.cid-sYslMxLoE5 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-sYslMxLoE5 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sYslMxLoE5 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sYslMxLoE5 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sYslMxLoE5 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sYslMxLoE5 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sYslMxLoE5 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sYslMxLoE5 .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sYslMxLoE5 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sYslMxLoE5 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sYslMxLoE5 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sYslMxLoE5 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sYslMxLoE5 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sYslMxLoE5 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sYslMxLoE5 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sYmGYy3bVg {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sYmGYy3bVg nav.navbar {
  position: fixed;
}
.cid-sYmGYy3bVg .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-sYmGYy3bVg .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sYmGYy3bVg .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sYmGYy3bVg .dropdown-item:hover,
.cid-sYmGYy3bVg .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sYmGYy3bVg .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sYmGYy3bVg .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sYmGYy3bVg .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sYmGYy3bVg .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sYmGYy3bVg .nav-link {
  position: relative;
}
.cid-sYmGYy3bVg .container {
  display: flex;
  margin: auto;
}
.cid-sYmGYy3bVg .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sYmGYy3bVg .dropdown-menu,
.cid-sYmGYy3bVg .navbar.opened {
  background: #000000 !important;
}
.cid-sYmGYy3bVg .nav-item:focus,
.cid-sYmGYy3bVg .nav-link:focus {
  outline: none;
}
.cid-sYmGYy3bVg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sYmGYy3bVg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sYmGYy3bVg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sYmGYy3bVg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sYmGYy3bVg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sYmGYy3bVg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sYmGYy3bVg .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-sYmGYy3bVg .navbar.opened {
  transition: all 0.3s;
}
.cid-sYmGYy3bVg .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sYmGYy3bVg .navbar .navbar-logo img {
  width: auto;
}
.cid-sYmGYy3bVg .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sYmGYy3bVg .navbar.collapsed {
  justify-content: center;
}
.cid-sYmGYy3bVg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sYmGYy3bVg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sYmGYy3bVg .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-sYmGYy3bVg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sYmGYy3bVg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sYmGYy3bVg .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-sYmGYy3bVg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sYmGYy3bVg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sYmGYy3bVg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sYmGYy3bVg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sYmGYy3bVg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sYmGYy3bVg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sYmGYy3bVg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sYmGYy3bVg .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-sYmGYy3bVg .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sYmGYy3bVg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sYmGYy3bVg .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sYmGYy3bVg .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sYmGYy3bVg .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sYmGYy3bVg .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sYmGYy3bVg .navbar.navbar-short {
  min-height: 60px;
}
.cid-sYmGYy3bVg .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sYmGYy3bVg .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sYmGYy3bVg .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-sYmGYy3bVg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sYmGYy3bVg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sYmGYy3bVg .dropdown-item.active,
.cid-sYmGYy3bVg .dropdown-item:active {
  background-color: transparent;
}
.cid-sYmGYy3bVg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sYmGYy3bVg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sYmGYy3bVg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sYmGYy3bVg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-sYmGYy3bVg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sYmGYy3bVg ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sYmGYy3bVg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sYmGYy3bVg .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sYmGYy3bVg button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sYmGYy3bVg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sYmGYy3bVg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sYmGYy3bVg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sYmGYy3bVg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sYmGYy3bVg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sYmGYy3bVg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sYmGYy3bVg nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sYmGYy3bVg nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sYmGYy3bVg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sYmGYy3bVg .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sYmGYy3bVg a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sYmGYy3bVg .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-sYmGYy3bVg .navbar {
    height: 70px;
  }
  .cid-sYmGYy3bVg .navbar.opened {
    height: auto;
  }
  .cid-sYmGYy3bVg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sYmGYy3bVg .cid-sYmGYy3bVg .dropdown-item {
  border-bottom: 0px Important;
}
.cid-t22Rn33KkK {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t22Rn33KkK .video-wrapper iframe {
  width: 100%;
}
.cid-t22Rn33KkK .mbr-section-title,
.cid-t22Rn33KkK .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t22Rn33KkK .text-wrapper {
    padding: 2rem;
  }
}
.cid-sYF3tdxBQD {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sYF3tdxBQD ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-sYF3tdxBQD li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-sYF3tdxBQD ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #22a5e5;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-sYslMxLoE5 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-sYslMxLoE5 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sYslMxLoE5 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sYslMxLoE5 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sYslMxLoE5 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sYslMxLoE5 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sYslMxLoE5 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sYslMxLoE5 .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sYslMxLoE5 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sYslMxLoE5 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sYslMxLoE5 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sYslMxLoE5 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sYslMxLoE5 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sYslMxLoE5 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sYslMxLoE5 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sYFeRpdgYh {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sYFeRpdgYh nav.navbar {
  position: fixed;
}
.cid-sYFeRpdgYh .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-sYFeRpdgYh .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sYFeRpdgYh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sYFeRpdgYh .dropdown-item:hover,
.cid-sYFeRpdgYh .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sYFeRpdgYh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sYFeRpdgYh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sYFeRpdgYh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sYFeRpdgYh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sYFeRpdgYh .nav-link {
  position: relative;
}
.cid-sYFeRpdgYh .container {
  display: flex;
  margin: auto;
}
.cid-sYFeRpdgYh .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sYFeRpdgYh .dropdown-menu,
.cid-sYFeRpdgYh .navbar.opened {
  background: #000000 !important;
}
.cid-sYFeRpdgYh .nav-item:focus,
.cid-sYFeRpdgYh .nav-link:focus {
  outline: none;
}
.cid-sYFeRpdgYh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sYFeRpdgYh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sYFeRpdgYh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sYFeRpdgYh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sYFeRpdgYh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sYFeRpdgYh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sYFeRpdgYh .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-sYFeRpdgYh .navbar.opened {
  transition: all 0.3s;
}
.cid-sYFeRpdgYh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sYFeRpdgYh .navbar .navbar-logo img {
  width: auto;
}
.cid-sYFeRpdgYh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sYFeRpdgYh .navbar.collapsed {
  justify-content: center;
}
.cid-sYFeRpdgYh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sYFeRpdgYh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sYFeRpdgYh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-sYFeRpdgYh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sYFeRpdgYh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sYFeRpdgYh .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-sYFeRpdgYh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sYFeRpdgYh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sYFeRpdgYh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sYFeRpdgYh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sYFeRpdgYh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sYFeRpdgYh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sYFeRpdgYh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sYFeRpdgYh .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-sYFeRpdgYh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sYFeRpdgYh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sYFeRpdgYh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sYFeRpdgYh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sYFeRpdgYh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sYFeRpdgYh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sYFeRpdgYh .navbar.navbar-short {
  min-height: 60px;
}
.cid-sYFeRpdgYh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sYFeRpdgYh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sYFeRpdgYh .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-sYFeRpdgYh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sYFeRpdgYh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sYFeRpdgYh .dropdown-item.active,
.cid-sYFeRpdgYh .dropdown-item:active {
  background-color: transparent;
}
.cid-sYFeRpdgYh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sYFeRpdgYh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sYFeRpdgYh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sYFeRpdgYh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-sYFeRpdgYh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sYFeRpdgYh ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sYFeRpdgYh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sYFeRpdgYh .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sYFeRpdgYh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sYFeRpdgYh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sYFeRpdgYh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sYFeRpdgYh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sYFeRpdgYh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sYFeRpdgYh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sYFeRpdgYh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sYFeRpdgYh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sYFeRpdgYh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sYFeRpdgYh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sYFeRpdgYh .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sYFeRpdgYh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sYFeRpdgYh .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-sYFeRpdgYh .navbar {
    height: 70px;
  }
  .cid-sYFeRpdgYh .navbar.opened {
    height: auto;
  }
  .cid-sYFeRpdgYh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sYFeRpdgYh .cid-sYmGYy3bVg .dropdown-item {
  border-bottom: 0px Important;
}
.cid-sYFfuEn02i {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tNR3HCPcyN {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tNR3HCPcyN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNR3HCPcyN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNR3HCPcyN .row {
  align-items: stretch;
  justify-content: center;
}
.cid-tNR3HCPcyN .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.cid-tNR3HCPcyN .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
}
.cid-sYVJhEFeCJ {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sYFeRq7IxM {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-sYFeRq7IxM .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sYFeRq7IxM .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sYFeRq7IxM .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sYFeRq7IxM .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sYFeRq7IxM .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sYFeRq7IxM .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sYFeRq7IxM .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sYFeRq7IxM .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sYFeRq7IxM .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sYFeRq7IxM .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sYFeRq7IxM .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sYFeRq7IxM .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sYFeRq7IxM .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sYFeRq7IxM .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sYKxOKz7Fo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sYKxOKz7Fo nav.navbar {
  position: fixed;
}
.cid-sYKxOKz7Fo .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-sYKxOKz7Fo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sYKxOKz7Fo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sYKxOKz7Fo .dropdown-item:hover,
.cid-sYKxOKz7Fo .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sYKxOKz7Fo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sYKxOKz7Fo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sYKxOKz7Fo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sYKxOKz7Fo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sYKxOKz7Fo .nav-link {
  position: relative;
}
.cid-sYKxOKz7Fo .container {
  display: flex;
  margin: auto;
}
.cid-sYKxOKz7Fo .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sYKxOKz7Fo .dropdown-menu,
.cid-sYKxOKz7Fo .navbar.opened {
  background: #000000 !important;
}
.cid-sYKxOKz7Fo .nav-item:focus,
.cid-sYKxOKz7Fo .nav-link:focus {
  outline: none;
}
.cid-sYKxOKz7Fo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sYKxOKz7Fo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sYKxOKz7Fo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sYKxOKz7Fo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sYKxOKz7Fo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sYKxOKz7Fo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sYKxOKz7Fo .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-sYKxOKz7Fo .navbar.opened {
  transition: all 0.3s;
}
.cid-sYKxOKz7Fo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sYKxOKz7Fo .navbar .navbar-logo img {
  width: auto;
}
.cid-sYKxOKz7Fo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sYKxOKz7Fo .navbar.collapsed {
  justify-content: center;
}
.cid-sYKxOKz7Fo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sYKxOKz7Fo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sYKxOKz7Fo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-sYKxOKz7Fo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sYKxOKz7Fo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sYKxOKz7Fo .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-sYKxOKz7Fo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sYKxOKz7Fo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sYKxOKz7Fo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sYKxOKz7Fo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sYKxOKz7Fo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sYKxOKz7Fo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sYKxOKz7Fo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sYKxOKz7Fo .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-sYKxOKz7Fo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sYKxOKz7Fo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sYKxOKz7Fo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sYKxOKz7Fo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sYKxOKz7Fo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sYKxOKz7Fo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sYKxOKz7Fo .navbar.navbar-short {
  min-height: 60px;
}
.cid-sYKxOKz7Fo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sYKxOKz7Fo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sYKxOKz7Fo .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-sYKxOKz7Fo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sYKxOKz7Fo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sYKxOKz7Fo .dropdown-item.active,
.cid-sYKxOKz7Fo .dropdown-item:active {
  background-color: transparent;
}
.cid-sYKxOKz7Fo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sYKxOKz7Fo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sYKxOKz7Fo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sYKxOKz7Fo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-sYKxOKz7Fo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sYKxOKz7Fo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sYKxOKz7Fo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sYKxOKz7Fo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sYKxOKz7Fo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sYKxOKz7Fo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sYKxOKz7Fo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sYKxOKz7Fo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sYKxOKz7Fo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sYKxOKz7Fo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sYKxOKz7Fo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sYKxOKz7Fo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sYKxOKz7Fo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sYKxOKz7Fo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sYKxOKz7Fo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sYKxOKz7Fo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sYKxOKz7Fo .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-sYKxOKz7Fo .navbar {
    height: 70px;
  }
  .cid-sYKxOKz7Fo .navbar.opened {
    height: auto;
  }
  .cid-sYKxOKz7Fo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sYKxOKz7Fo .cid-sYmGYy3bVg .dropdown-item {
  border-bottom: 0px Important;
}
.cid-sYOB73Qmvz {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sYOB73Qmvz .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sYOB73Qmvz img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sYOB73Qmvz .text-wrapper {
    padding: 2rem;
  }
}
.cid-sYKzdwrsmi {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sYKzdwrsmi .card-wrapper {
  background-color: #034d71;
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #034d71;
  transition: all 0.3s;
  padding: 2rem;
  padding-top: 3rem;
}
.cid-sYKzdwrsmi .mbr-section-title,
.cid-sYKzdwrsmi .mbr-section-subtitle {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sYKzdwrsmi .card-wrapper {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-sYKzdwrsmi .card-wrapper {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-sYKzdwrsmi .card-title {
  color: #fafafa;
}
.cid-sYKzdwrsmi .mbr-text {
  color: #fafafa;
}
.cid-sYKzdwrsmi .price {
  color: #fafafa;
}
.cid-sYKxOLbsFd {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-sYKxOLbsFd .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sYKxOLbsFd .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sYKxOLbsFd .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sYKxOLbsFd .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sYKxOLbsFd .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sYKxOLbsFd .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sYKxOLbsFd .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sYKxOLbsFd .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sYKxOLbsFd .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sYKxOLbsFd .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sYKxOLbsFd .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sYKxOLbsFd .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sYKxOLbsFd .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sYKxOLbsFd .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sYKOH3qJhZ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sYKOH3qJhZ nav.navbar {
  position: fixed;
}
.cid-sYKOH3qJhZ .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-sYKOH3qJhZ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sYKOH3qJhZ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sYKOH3qJhZ .dropdown-item:hover,
.cid-sYKOH3qJhZ .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sYKOH3qJhZ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sYKOH3qJhZ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sYKOH3qJhZ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sYKOH3qJhZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sYKOH3qJhZ .nav-link {
  position: relative;
}
.cid-sYKOH3qJhZ .container {
  display: flex;
  margin: auto;
}
.cid-sYKOH3qJhZ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sYKOH3qJhZ .dropdown-menu,
.cid-sYKOH3qJhZ .navbar.opened {
  background: #000000 !important;
}
.cid-sYKOH3qJhZ .nav-item:focus,
.cid-sYKOH3qJhZ .nav-link:focus {
  outline: none;
}
.cid-sYKOH3qJhZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sYKOH3qJhZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sYKOH3qJhZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sYKOH3qJhZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sYKOH3qJhZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sYKOH3qJhZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sYKOH3qJhZ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-sYKOH3qJhZ .navbar.opened {
  transition: all 0.3s;
}
.cid-sYKOH3qJhZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sYKOH3qJhZ .navbar .navbar-logo img {
  width: auto;
}
.cid-sYKOH3qJhZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sYKOH3qJhZ .navbar.collapsed {
  justify-content: center;
}
.cid-sYKOH3qJhZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sYKOH3qJhZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sYKOH3qJhZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-sYKOH3qJhZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sYKOH3qJhZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sYKOH3qJhZ .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-sYKOH3qJhZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sYKOH3qJhZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sYKOH3qJhZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sYKOH3qJhZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sYKOH3qJhZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sYKOH3qJhZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sYKOH3qJhZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sYKOH3qJhZ .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-sYKOH3qJhZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sYKOH3qJhZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sYKOH3qJhZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sYKOH3qJhZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sYKOH3qJhZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sYKOH3qJhZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sYKOH3qJhZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-sYKOH3qJhZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sYKOH3qJhZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sYKOH3qJhZ .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-sYKOH3qJhZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sYKOH3qJhZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sYKOH3qJhZ .dropdown-item.active,
.cid-sYKOH3qJhZ .dropdown-item:active {
  background-color: transparent;
}
.cid-sYKOH3qJhZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sYKOH3qJhZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sYKOH3qJhZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sYKOH3qJhZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-sYKOH3qJhZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sYKOH3qJhZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sYKOH3qJhZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sYKOH3qJhZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sYKOH3qJhZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sYKOH3qJhZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sYKOH3qJhZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sYKOH3qJhZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sYKOH3qJhZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sYKOH3qJhZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sYKOH3qJhZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sYKOH3qJhZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sYKOH3qJhZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sYKOH3qJhZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sYKOH3qJhZ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sYKOH3qJhZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sYKOH3qJhZ .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-sYKOH3qJhZ .navbar {
    height: 70px;
  }
  .cid-sYKOH3qJhZ .navbar.opened {
    height: auto;
  }
  .cid-sYKOH3qJhZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sYKOH3qJhZ .cid-sYmGYy3bVg .dropdown-item {
  border-bottom: 0px Important;
}
.cid-sYKVeV4Ink {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sYKVeV4Ink .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sYKVeV4Ink .row {
  flex-direction: row-reverse;
}
.cid-sYKVeV4Ink img {
  width: 100%;
}
.cid-sYKQNT800p {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sYKQNT800p .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sYKQNT800p .row {
  flex-direction: row-reverse;
}
.cid-sYKQNT800p img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sYKQNT800p .text-wrapper {
    padding: 2rem;
  }
}
.cid-sYKStWKHle {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sYKStWKHle .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #22a5e5;
  margin-bottom: 2rem;
}
.cid-sYKStWKHle .card-wrapper {
  padding: 3rem;
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-sYKStWKHle .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sYKStWKHle .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-sYKOH3Np8s {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-sYKOH3Np8s .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sYKOH3Np8s .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sYKOH3Np8s .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sYKOH3Np8s .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sYKOH3Np8s .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sYKOH3Np8s .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sYKOH3Np8s .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sYKOH3Np8s .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sYKOH3Np8s .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sYKOH3Np8s .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sYKOH3Np8s .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sYKOH3Np8s .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sYKOH3Np8s .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sYKOH3Np8s .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sZ2iEApSio {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sZ2iEApSio nav.navbar {
  position: fixed;
}
.cid-sZ2iEApSio .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-sZ2iEApSio .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sZ2iEApSio .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sZ2iEApSio .dropdown-item:hover,
.cid-sZ2iEApSio .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sZ2iEApSio .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sZ2iEApSio .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sZ2iEApSio .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sZ2iEApSio .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sZ2iEApSio .nav-link {
  position: relative;
}
.cid-sZ2iEApSio .container {
  display: flex;
  margin: auto;
}
.cid-sZ2iEApSio .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sZ2iEApSio .dropdown-menu,
.cid-sZ2iEApSio .navbar.opened {
  background: #000000 !important;
}
.cid-sZ2iEApSio .nav-item:focus,
.cid-sZ2iEApSio .nav-link:focus {
  outline: none;
}
.cid-sZ2iEApSio .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sZ2iEApSio .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sZ2iEApSio .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sZ2iEApSio .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sZ2iEApSio .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sZ2iEApSio .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sZ2iEApSio .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-sZ2iEApSio .navbar.opened {
  transition: all 0.3s;
}
.cid-sZ2iEApSio .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sZ2iEApSio .navbar .navbar-logo img {
  width: auto;
}
.cid-sZ2iEApSio .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sZ2iEApSio .navbar.collapsed {
  justify-content: center;
}
.cid-sZ2iEApSio .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sZ2iEApSio .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sZ2iEApSio .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-sZ2iEApSio .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sZ2iEApSio .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sZ2iEApSio .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-sZ2iEApSio .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sZ2iEApSio .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sZ2iEApSio .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sZ2iEApSio .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sZ2iEApSio .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sZ2iEApSio .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sZ2iEApSio .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sZ2iEApSio .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-sZ2iEApSio .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sZ2iEApSio .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sZ2iEApSio .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sZ2iEApSio .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sZ2iEApSio .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sZ2iEApSio .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sZ2iEApSio .navbar.navbar-short {
  min-height: 60px;
}
.cid-sZ2iEApSio .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sZ2iEApSio .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sZ2iEApSio .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-sZ2iEApSio .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sZ2iEApSio .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sZ2iEApSio .dropdown-item.active,
.cid-sZ2iEApSio .dropdown-item:active {
  background-color: transparent;
}
.cid-sZ2iEApSio .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sZ2iEApSio .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sZ2iEApSio .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sZ2iEApSio .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-sZ2iEApSio .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sZ2iEApSio ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sZ2iEApSio .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sZ2iEApSio .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sZ2iEApSio button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sZ2iEApSio button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sZ2iEApSio button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sZ2iEApSio button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sZ2iEApSio button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sZ2iEApSio button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sZ2iEApSio nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sZ2iEApSio nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sZ2iEApSio nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sZ2iEApSio nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sZ2iEApSio .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sZ2iEApSio a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sZ2iEApSio .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-sZ2iEApSio .navbar {
    height: 70px;
  }
  .cid-sZ2iEApSio .navbar.opened {
    height: auto;
  }
  .cid-sZ2iEApSio .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sZ2iEApSio .cid-sYmGYy3bVg .dropdown-item {
  border-bottom: 0px Important;
}
.cid-sZ2jP5BmHf {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sZ2jvrWSPB {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-sZ2jvrWSPB .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sZ2jvrWSPB .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-sZ2jvrWSPB .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sZ2jvrWSPB .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-sZ2jvrWSPB .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-sZ2jvrWSPB .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-sZ2jvrWSPB .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sZ2jvrWSPB .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sZ2jvrWSPB .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sZ2jvrWSPB .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-t2emkvHQWW {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t2emkvHQWW .mbr-section-title {
  text-align: center;
}
.cid-sZ2sA0YJiX {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-sZ2sA0YJiX .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sZ2sA0YJiX .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-sZ2sA0YJiX .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sZ2sA0YJiX .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-sZ2sA0YJiX .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-sZ2sA0YJiX .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-sZ2sA0YJiX .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sZ2sA0YJiX .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sZ2sA0YJiX .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sZ2sA0YJiX .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-t2enRGLgDB {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t2enRGLgDB .mbr-section-title {
  text-align: center;
}
.cid-t2en0QduK1 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-t2en0QduK1 .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-t2en0QduK1 .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-t2en0QduK1 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-t2en0QduK1 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-t2en0QduK1 .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-t2en0QduK1 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-t2en0QduK1 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-t2en0QduK1 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-t2en0QduK1 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-t2en0QduK1 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-t2eqqNNtzv {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t2eqqNNtzv .mbr-section-title {
  text-align: center;
}
.cid-sZ2otlLUoC {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-sZ2otlLUoC .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sZ2otlLUoC .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-sZ2otlLUoC .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sZ2otlLUoC .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-sZ2otlLUoC .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-sZ2otlLUoC .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-sZ2otlLUoC .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sZ2otlLUoC .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sZ2otlLUoC .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sZ2otlLUoC .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-sZ2iEBeVCY {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-sZ2iEBeVCY .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sZ2iEBeVCY .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sZ2iEBeVCY .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sZ2iEBeVCY .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sZ2iEBeVCY .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sZ2iEBeVCY .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sZ2iEBeVCY .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sZ2iEBeVCY .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sZ2iEBeVCY .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sZ2iEBeVCY .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sZ2iEBeVCY .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sZ2iEBeVCY .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sZ2iEBeVCY .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sZ2iEBeVCY .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-t1iPJKJPiY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t1iPJKJPiY nav.navbar {
  position: fixed;
}
.cid-t1iPJKJPiY .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-t1iPJKJPiY .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t1iPJKJPiY .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t1iPJKJPiY .dropdown-item:hover,
.cid-t1iPJKJPiY .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-t1iPJKJPiY .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t1iPJKJPiY .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t1iPJKJPiY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t1iPJKJPiY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t1iPJKJPiY .nav-link {
  position: relative;
}
.cid-t1iPJKJPiY .container {
  display: flex;
  margin: auto;
}
.cid-t1iPJKJPiY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t1iPJKJPiY .dropdown-menu,
.cid-t1iPJKJPiY .navbar.opened {
  background: #000000 !important;
}
.cid-t1iPJKJPiY .nav-item:focus,
.cid-t1iPJKJPiY .nav-link:focus {
  outline: none;
}
.cid-t1iPJKJPiY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t1iPJKJPiY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t1iPJKJPiY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t1iPJKJPiY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t1iPJKJPiY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t1iPJKJPiY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t1iPJKJPiY .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-t1iPJKJPiY .navbar.opened {
  transition: all 0.3s;
}
.cid-t1iPJKJPiY .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t1iPJKJPiY .navbar .navbar-logo img {
  width: auto;
}
.cid-t1iPJKJPiY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t1iPJKJPiY .navbar.collapsed {
  justify-content: center;
}
.cid-t1iPJKJPiY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t1iPJKJPiY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t1iPJKJPiY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-t1iPJKJPiY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t1iPJKJPiY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t1iPJKJPiY .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-t1iPJKJPiY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t1iPJKJPiY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t1iPJKJPiY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t1iPJKJPiY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t1iPJKJPiY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t1iPJKJPiY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t1iPJKJPiY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t1iPJKJPiY .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-t1iPJKJPiY .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t1iPJKJPiY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t1iPJKJPiY .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t1iPJKJPiY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t1iPJKJPiY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t1iPJKJPiY .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t1iPJKJPiY .navbar.navbar-short {
  min-height: 60px;
}
.cid-t1iPJKJPiY .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t1iPJKJPiY .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t1iPJKJPiY .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-t1iPJKJPiY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t1iPJKJPiY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t1iPJKJPiY .dropdown-item.active,
.cid-t1iPJKJPiY .dropdown-item:active {
  background-color: transparent;
}
.cid-t1iPJKJPiY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t1iPJKJPiY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t1iPJKJPiY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t1iPJKJPiY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-t1iPJKJPiY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t1iPJKJPiY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t1iPJKJPiY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t1iPJKJPiY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t1iPJKJPiY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t1iPJKJPiY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-t1iPJKJPiY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t1iPJKJPiY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t1iPJKJPiY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t1iPJKJPiY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t1iPJKJPiY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t1iPJKJPiY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t1iPJKJPiY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t1iPJKJPiY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t1iPJKJPiY .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t1iPJKJPiY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t1iPJKJPiY .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-t1iPJKJPiY .navbar {
    height: 70px;
  }
  .cid-t1iPJKJPiY .navbar.opened {
    height: auto;
  }
  .cid-t1iPJKJPiY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t1iPJKJPiY .cid-sYmGYy3bVg .dropdown-item {
  border-bottom: 0px Important;
}
.cid-t1iPJL0o2c {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t1iPJL0o2c .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t1iPJL0o2c img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t1iPJL0o2c .text-wrapper {
    padding: 2rem;
  }
}
.cid-t1iQcqPrfu {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t1iPJLmAqt {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-t1iPJLmAqt .row-links {
  width: 100%;
  justify-content: center;
}
.cid-t1iPJLmAqt .social-row {
  width: 100%;
  justify-content: center;
}
.cid-t1iPJLmAqt .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-t1iPJLmAqt .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-t1iPJLmAqt .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-t1iPJLmAqt .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-t1iPJLmAqt .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-t1iPJLmAqt .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-t1iPJLmAqt .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t1iPJLmAqt .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-t1iPJLmAqt .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t1iPJLmAqt .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t1iPJLmAqt .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-t1iPJLmAqt .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-t1j12QMvxe {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t1j12QMvxe nav.navbar {
  position: fixed;
}
.cid-t1j12QMvxe .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-t1j12QMvxe .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t1j12QMvxe .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t1j12QMvxe .dropdown-item:hover,
.cid-t1j12QMvxe .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-t1j12QMvxe .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t1j12QMvxe .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t1j12QMvxe .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t1j12QMvxe .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t1j12QMvxe .nav-link {
  position: relative;
}
.cid-t1j12QMvxe .container {
  display: flex;
  margin: auto;
}
.cid-t1j12QMvxe .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t1j12QMvxe .dropdown-menu,
.cid-t1j12QMvxe .navbar.opened {
  background: #000000 !important;
}
.cid-t1j12QMvxe .nav-item:focus,
.cid-t1j12QMvxe .nav-link:focus {
  outline: none;
}
.cid-t1j12QMvxe .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t1j12QMvxe .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t1j12QMvxe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t1j12QMvxe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t1j12QMvxe .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t1j12QMvxe .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t1j12QMvxe .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-t1j12QMvxe .navbar.opened {
  transition: all 0.3s;
}
.cid-t1j12QMvxe .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t1j12QMvxe .navbar .navbar-logo img {
  width: auto;
}
.cid-t1j12QMvxe .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t1j12QMvxe .navbar.collapsed {
  justify-content: center;
}
.cid-t1j12QMvxe .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t1j12QMvxe .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t1j12QMvxe .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-t1j12QMvxe .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t1j12QMvxe .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t1j12QMvxe .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-t1j12QMvxe .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t1j12QMvxe .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t1j12QMvxe .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t1j12QMvxe .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t1j12QMvxe .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t1j12QMvxe .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t1j12QMvxe .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t1j12QMvxe .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-t1j12QMvxe .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t1j12QMvxe .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t1j12QMvxe .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t1j12QMvxe .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t1j12QMvxe .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t1j12QMvxe .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t1j12QMvxe .navbar.navbar-short {
  min-height: 60px;
}
.cid-t1j12QMvxe .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t1j12QMvxe .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t1j12QMvxe .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-t1j12QMvxe .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t1j12QMvxe .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t1j12QMvxe .dropdown-item.active,
.cid-t1j12QMvxe .dropdown-item:active {
  background-color: transparent;
}
.cid-t1j12QMvxe .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t1j12QMvxe .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t1j12QMvxe .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t1j12QMvxe .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-t1j12QMvxe .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t1j12QMvxe ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t1j12QMvxe .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t1j12QMvxe .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t1j12QMvxe button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t1j12QMvxe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-t1j12QMvxe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t1j12QMvxe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t1j12QMvxe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t1j12QMvxe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t1j12QMvxe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t1j12QMvxe nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t1j12QMvxe nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t1j12QMvxe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t1j12QMvxe .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t1j12QMvxe a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t1j12QMvxe .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-t1j12QMvxe .navbar {
    height: 70px;
  }
  .cid-t1j12QMvxe .navbar.opened {
    height: auto;
  }
  .cid-t1j12QMvxe .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t1j12QMvxe .cid-sYmGYy3bVg .dropdown-item {
  border-bottom: 0px Important;
}
.cid-t1j3Mhmzjw {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t1j3Mhmzjw .mbr-section-subtitle {
  text-align: center;
}
.cid-t1j2wIni29 {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t1j2wIni29 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t1j2wIni29 .row {
  flex-direction: row-reverse;
}
.cid-t1j2wIni29 img {
  width: 100%;
}
.cid-t1j12RwFJh {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t1j12RHl0J {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-t1j12RHl0J .row-links {
  width: 100%;
  justify-content: center;
}
.cid-t1j12RHl0J .social-row {
  width: 100%;
  justify-content: center;
}
.cid-t1j12RHl0J .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-t1j12RHl0J .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-t1j12RHl0J .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-t1j12RHl0J .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-t1j12RHl0J .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-t1j12RHl0J .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-t1j12RHl0J .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t1j12RHl0J .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-t1j12RHl0J .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t1j12RHl0J .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t1j12RHl0J .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-t1j12RHl0J .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tNQGlj10rI {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tNQGlj10rI nav.navbar {
  position: fixed;
}
.cid-tNQGlj10rI .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-tNQGlj10rI .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tNQGlj10rI .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tNQGlj10rI .dropdown-item:hover,
.cid-tNQGlj10rI .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-tNQGlj10rI .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tNQGlj10rI .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tNQGlj10rI .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tNQGlj10rI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tNQGlj10rI .nav-link {
  position: relative;
}
.cid-tNQGlj10rI .container {
  display: flex;
  margin: auto;
}
.cid-tNQGlj10rI .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tNQGlj10rI .dropdown-menu,
.cid-tNQGlj10rI .navbar.opened {
  background: #000000 !important;
}
.cid-tNQGlj10rI .nav-item:focus,
.cid-tNQGlj10rI .nav-link:focus {
  outline: none;
}
.cid-tNQGlj10rI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tNQGlj10rI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tNQGlj10rI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tNQGlj10rI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tNQGlj10rI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tNQGlj10rI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tNQGlj10rI .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tNQGlj10rI .navbar.opened {
  transition: all 0.3s;
}
.cid-tNQGlj10rI .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tNQGlj10rI .navbar .navbar-logo img {
  width: auto;
}
.cid-tNQGlj10rI .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tNQGlj10rI .navbar.collapsed {
  justify-content: center;
}
.cid-tNQGlj10rI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tNQGlj10rI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tNQGlj10rI .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-tNQGlj10rI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tNQGlj10rI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tNQGlj10rI .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-tNQGlj10rI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tNQGlj10rI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tNQGlj10rI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tNQGlj10rI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tNQGlj10rI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tNQGlj10rI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tNQGlj10rI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tNQGlj10rI .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-tNQGlj10rI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tNQGlj10rI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tNQGlj10rI .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tNQGlj10rI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tNQGlj10rI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tNQGlj10rI .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tNQGlj10rI .navbar.navbar-short {
  min-height: 60px;
}
.cid-tNQGlj10rI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tNQGlj10rI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tNQGlj10rI .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-tNQGlj10rI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tNQGlj10rI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tNQGlj10rI .dropdown-item.active,
.cid-tNQGlj10rI .dropdown-item:active {
  background-color: transparent;
}
.cid-tNQGlj10rI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tNQGlj10rI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tNQGlj10rI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tNQGlj10rI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tNQGlj10rI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tNQGlj10rI ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tNQGlj10rI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tNQGlj10rI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tNQGlj10rI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tNQGlj10rI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tNQGlj10rI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tNQGlj10rI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNQGlj10rI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNQGlj10rI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tNQGlj10rI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNQGlj10rI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tNQGlj10rI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tNQGlj10rI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNQGlj10rI .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tNQGlj10rI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tNQGlj10rI .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-tNQGlj10rI .navbar {
    height: 70px;
  }
  .cid-tNQGlj10rI .navbar.opened {
    height: auto;
  }
  .cid-tNQGlj10rI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tNQGlj10rI .cid-sYmGYy3bVg .dropdown-item {
  border-bottom: 0px Important;
}
.cid-tNQHaq5bQ9 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tNQHaq5bQ9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNQHaq5bQ9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNYEPXpTfh {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tNYEPXpTfh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNYEPXpTfh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNYEPXpTfh .row {
  align-items: stretch;
  justify-content: center;
}
.cid-tNYEPXpTfh .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.cid-tNYEPXpTfh .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
}
.cid-tNQGOByfQj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tNQGOByfQj .mbr-section-subtitle {
  text-align: left;
}
.cid-tUP0GSzbpu {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tUP0GSzbpu .google-map {
  height: 350px;
  position: relative;
}
.cid-tUP0GSzbpu .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tUP0GSzbpu .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-tUP0GSzbpu .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tUP0GSzbpu .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tNQGljUt76 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tNQGljUt76 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tNQGljUt76 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tNQGljUt76 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tNQGljUt76 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tNQGljUt76 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tNQGljUt76 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tNQGljUt76 .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tNQGljUt76 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tNQGljUt76 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tNQGljUt76 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tNQGljUt76 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tNQGljUt76 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tNQGljUt76 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tNQGljUt76 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-u6TsCOLLHE {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u6TsCOLLHE nav.navbar {
  position: fixed;
}
.cid-u6TsCOLLHE .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-u6TsCOLLHE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u6TsCOLLHE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u6TsCOLLHE .dropdown-item:hover,
.cid-u6TsCOLLHE .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-u6TsCOLLHE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u6TsCOLLHE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u6TsCOLLHE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u6TsCOLLHE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u6TsCOLLHE .nav-link {
  position: relative;
}
.cid-u6TsCOLLHE .container {
  display: flex;
  margin: auto;
}
.cid-u6TsCOLLHE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u6TsCOLLHE .dropdown-menu,
.cid-u6TsCOLLHE .navbar.opened {
  background: #000000 !important;
}
.cid-u6TsCOLLHE .nav-item:focus,
.cid-u6TsCOLLHE .nav-link:focus {
  outline: none;
}
.cid-u6TsCOLLHE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u6TsCOLLHE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u6TsCOLLHE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u6TsCOLLHE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u6TsCOLLHE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u6TsCOLLHE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u6TsCOLLHE .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-u6TsCOLLHE .navbar.opened {
  transition: all 0.3s;
}
.cid-u6TsCOLLHE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u6TsCOLLHE .navbar .navbar-logo img {
  width: auto;
}
.cid-u6TsCOLLHE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u6TsCOLLHE .navbar.collapsed {
  justify-content: center;
}
.cid-u6TsCOLLHE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u6TsCOLLHE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u6TsCOLLHE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-u6TsCOLLHE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u6TsCOLLHE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u6TsCOLLHE .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-u6TsCOLLHE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u6TsCOLLHE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u6TsCOLLHE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u6TsCOLLHE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u6TsCOLLHE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u6TsCOLLHE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u6TsCOLLHE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u6TsCOLLHE .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-u6TsCOLLHE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u6TsCOLLHE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u6TsCOLLHE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u6TsCOLLHE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u6TsCOLLHE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u6TsCOLLHE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u6TsCOLLHE .navbar.navbar-short {
  min-height: 60px;
}
.cid-u6TsCOLLHE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u6TsCOLLHE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u6TsCOLLHE .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-u6TsCOLLHE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u6TsCOLLHE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u6TsCOLLHE .dropdown-item.active,
.cid-u6TsCOLLHE .dropdown-item:active {
  background-color: transparent;
}
.cid-u6TsCOLLHE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u6TsCOLLHE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u6TsCOLLHE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u6TsCOLLHE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-u6TsCOLLHE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u6TsCOLLHE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u6TsCOLLHE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u6TsCOLLHE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u6TsCOLLHE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u6TsCOLLHE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-u6TsCOLLHE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u6TsCOLLHE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u6TsCOLLHE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u6TsCOLLHE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u6TsCOLLHE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u6TsCOLLHE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u6TsCOLLHE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u6TsCOLLHE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u6TsCOLLHE .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u6TsCOLLHE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u6TsCOLLHE .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-u6TsCOLLHE .navbar {
    height: 70px;
  }
  .cid-u6TsCOLLHE .navbar.opened {
    height: auto;
  }
  .cid-u6TsCOLLHE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u6TsCOLLHE .cid-sYmGYy3bVg .dropdown-item {
  border-bottom: 0px Important;
}
.cid-v1IDBNuiPs {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v1IDBNuiPs img {
  width: 100%;
  filter: grayscale(0);
}
.cid-v1IDBNuiPs .text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}
.cid-v1IDBNuiPs .block-timeline {
  display: flex;
}
.cid-v1IDBNuiPs .image-wrap {
  padding: 0rem;
  padding-right: 2rem;
}
.cid-v1IDBNuiPs .mbr-timeline-title {
  color: #000000;
  margin-bottom: 0.9rem;
}
.cid-v1IDBNuiPs .inner-date {
  padding: 1rem 1.5rem;
  background-color: #eeeeee;
}
.cid-v1IDBNuiPs .date-block {
  margin-right: 0.6rem;
}
.cid-v1IDBNuiPs .mbr-date-block {
  margin-bottom: 0rem;
}
.cid-v1IDBNuiPs .mbr-timeline-text {
  color: #000000;
  margin-bottom: 1.7rem;
}
.cid-v1IDBNuiPs .mbr-timeline-date {
  color: #eeeeee;
  font-weight: 700;
  margin-bottom: 0rem;
}
.cid-v1IDBNuiPs .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-v1IDBNuiPs .timeline-text-content {
  display: flex;
  background: #eeeeee;
  transition: all 0.4s;
}
.cid-v1IDBNuiPs .month-block {
  font-weight: 700;
  color: #000000;
}
.cid-v1IDBNuiPs .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-v1IDBNuiPs .timeline-element:hover .timeline-text-content {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
}
.cid-v1IDBNuiPs .reverse {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-v1IDBNuiPs .reverse .timeline-text-content {
  margin-right: 0;
}
.cid-v1IDBNuiPs .bottom-date {
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
}
.cid-v1IDBNuiPs .mbr-timeline-location {
  margin-bottom: 0rem;
  font-weight: 700;
}
.cid-v1IDBNuiPs .location {
  display: flex;
  align-items: center;
}
.cid-v1IDBNuiPs .mbr-iconfont {
  font-size: 16px;
  color: #eeeeee;
}
.cid-v1IDBNuiPs .iconsBackground {
  margin-right: 0.8rem;
}
.cid-v1IDBNuiPs .reverseTimeline {
  display: flex;
  flex-direction: column-reverse;
}
@media (max-width: 767px) {
  .cid-v1IDBNuiPs .date-block {
    display: none;
  }
  .cid-v1IDBNuiPs .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v1IDBNuiPs .image-wrap {
    padding-right: 0rem;
  }
  .cid-v1IDBNuiPs .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
  .cid-v1IDBNuiPs .block-timeline {
    padding: 0;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-v1IDBNuiPs .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v1IDBNuiPs .image-wrap {
    padding-right: 0rem;
  }
  .cid-v1IDBNuiPs .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-v1IDBNuiPs .timeline-text-content {
    padding: 1.9rem;
  }
}
@media (min-width: 767px) {
  .cid-v1IDBNuiPs .block-timeline {
    padding: 0;
  }
}
.cid-v1IDBNuiPs .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1IDBNuiPs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1IDBNuiPs H5 {
  color: #000000;
}
.cid-vh3qPq8nwW {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vh3qPq8nwW img {
  width: 100%;
  filter: grayscale(0);
}
.cid-vh3qPq8nwW .text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}
.cid-vh3qPq8nwW .block-timeline {
  display: flex;
}
.cid-vh3qPq8nwW .image-wrap {
  padding: 0rem;
  padding-right: 2rem;
}
.cid-vh3qPq8nwW .mbr-timeline-title {
  color: #000000;
  margin-bottom: 0.9rem;
}
.cid-vh3qPq8nwW .inner-date {
  padding: 1rem 1.5rem;
  background-color: #eeeeee;
}
.cid-vh3qPq8nwW .date-block {
  margin-right: 0.6rem;
}
.cid-vh3qPq8nwW .mbr-date-block {
  margin-bottom: 0rem;
}
.cid-vh3qPq8nwW .mbr-timeline-text {
  color: #000000;
  margin-bottom: 1.7rem;
}
.cid-vh3qPq8nwW .mbr-timeline-date {
  color: #eeeeee;
  font-weight: 700;
  margin-bottom: 0rem;
}
.cid-vh3qPq8nwW .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-vh3qPq8nwW .timeline-text-content {
  display: flex;
  background: #eeeeee;
  transition: all 0.4s;
}
.cid-vh3qPq8nwW .month-block {
  font-weight: 700;
  color: #000000;
}
.cid-vh3qPq8nwW .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-vh3qPq8nwW .timeline-element:hover .timeline-text-content {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
}
.cid-vh3qPq8nwW .reverse {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-vh3qPq8nwW .reverse .timeline-text-content {
  margin-right: 0;
}
.cid-vh3qPq8nwW .bottom-date {
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
}
.cid-vh3qPq8nwW .mbr-timeline-location {
  margin-bottom: 0rem;
  font-weight: 700;
}
.cid-vh3qPq8nwW .location {
  display: flex;
  align-items: center;
}
.cid-vh3qPq8nwW .mbr-iconfont {
  font-size: 16px;
  color: #eeeeee;
}
.cid-vh3qPq8nwW .iconsBackground {
  margin-right: 0.8rem;
}
.cid-vh3qPq8nwW .reverseTimeline {
  display: flex;
  flex-direction: column-reverse;
}
@media (max-width: 767px) {
  .cid-vh3qPq8nwW .date-block {
    display: none;
  }
  .cid-vh3qPq8nwW .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-vh3qPq8nwW .image-wrap {
    padding-right: 0rem;
  }
  .cid-vh3qPq8nwW .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
  .cid-vh3qPq8nwW .block-timeline {
    padding: 0;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-vh3qPq8nwW .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-vh3qPq8nwW .image-wrap {
    padding-right: 0rem;
  }
  .cid-vh3qPq8nwW .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-vh3qPq8nwW .timeline-text-content {
    padding: 1.9rem;
  }
}
@media (min-width: 767px) {
  .cid-vh3qPq8nwW .block-timeline {
    padding: 0;
  }
}
.cid-vh3qPq8nwW .mbr-fallback-image.disabled {
  display: none;
}
.cid-vh3qPq8nwW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vh3qPq8nwW H5 {
  color: #000000;
}
.cid-vgnr1vinSB {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vgnr1vinSB img {
  width: 100%;
  filter: grayscale(0);
}
.cid-vgnr1vinSB .text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}
.cid-vgnr1vinSB .block-timeline {
  display: flex;
}
.cid-vgnr1vinSB .image-wrap {
  padding: 0rem;
  padding-right: 2rem;
}
.cid-vgnr1vinSB .mbr-timeline-title {
  color: #000000;
  margin-bottom: 0.9rem;
}
.cid-vgnr1vinSB .inner-date {
  padding: 1rem 1.5rem;
  background-color: #eeeeee;
}
.cid-vgnr1vinSB .date-block {
  margin-right: 0.6rem;
}
.cid-vgnr1vinSB .mbr-date-block {
  margin-bottom: 0rem;
}
.cid-vgnr1vinSB .mbr-timeline-text {
  color: #000000;
  margin-bottom: 1.7rem;
}
.cid-vgnr1vinSB .mbr-timeline-date {
  color: #eeeeee;
  font-weight: 700;
  margin-bottom: 0rem;
}
.cid-vgnr1vinSB .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-vgnr1vinSB .timeline-text-content {
  display: flex;
  background: #eeeeee;
  transition: all 0.4s;
}
.cid-vgnr1vinSB .month-block {
  font-weight: 700;
  color: #000000;
}
.cid-vgnr1vinSB .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-vgnr1vinSB .timeline-element:hover .timeline-text-content {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
}
.cid-vgnr1vinSB .reverse {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-vgnr1vinSB .reverse .timeline-text-content {
  margin-right: 0;
}
.cid-vgnr1vinSB .bottom-date {
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
}
.cid-vgnr1vinSB .mbr-timeline-location {
  margin-bottom: 0rem;
  font-weight: 700;
}
.cid-vgnr1vinSB .location {
  display: flex;
  align-items: center;
}
.cid-vgnr1vinSB .mbr-iconfont {
  font-size: 16px;
  color: #eeeeee;
}
.cid-vgnr1vinSB .iconsBackground {
  margin-right: 0.8rem;
}
.cid-vgnr1vinSB .reverseTimeline {
  display: flex;
  flex-direction: column-reverse;
}
@media (max-width: 767px) {
  .cid-vgnr1vinSB .date-block {
    display: none;
  }
  .cid-vgnr1vinSB .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-vgnr1vinSB .image-wrap {
    padding-right: 0rem;
  }
  .cid-vgnr1vinSB .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
  .cid-vgnr1vinSB .block-timeline {
    padding: 0;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-vgnr1vinSB .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-vgnr1vinSB .image-wrap {
    padding-right: 0rem;
  }
  .cid-vgnr1vinSB .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-vgnr1vinSB .timeline-text-content {
    padding: 1.9rem;
  }
}
@media (min-width: 767px) {
  .cid-vgnr1vinSB .block-timeline {
    padding: 0;
  }
}
.cid-vgnr1vinSB .mbr-fallback-image.disabled {
  display: none;
}
.cid-vgnr1vinSB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vgnr1vinSB H5 {
  color: #000000;
}
.cid-vgkWHhuMNF {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vgkWHhuMNF img {
  width: 100%;
  filter: grayscale(0);
}
.cid-vgkWHhuMNF .text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}
.cid-vgkWHhuMNF .block-timeline {
  display: flex;
}
.cid-vgkWHhuMNF .image-wrap {
  padding: 0rem;
  padding-right: 2rem;
}
.cid-vgkWHhuMNF .mbr-timeline-title {
  color: #000000;
  margin-bottom: 0.9rem;
}
.cid-vgkWHhuMNF .inner-date {
  padding: 1rem 1.5rem;
  background-color: #eeeeee;
}
.cid-vgkWHhuMNF .date-block {
  margin-right: 0.6rem;
}
.cid-vgkWHhuMNF .mbr-date-block {
  margin-bottom: 0rem;
}
.cid-vgkWHhuMNF .mbr-timeline-text {
  color: #000000;
  margin-bottom: 1.7rem;
}
.cid-vgkWHhuMNF .mbr-timeline-date {
  color: #eeeeee;
  font-weight: 700;
  margin-bottom: 0rem;
}
.cid-vgkWHhuMNF .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-vgkWHhuMNF .timeline-text-content {
  display: flex;
  background: #eeeeee;
  transition: all 0.4s;
}
.cid-vgkWHhuMNF .month-block {
  font-weight: 700;
  color: #000000;
}
.cid-vgkWHhuMNF .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-vgkWHhuMNF .timeline-element:hover .timeline-text-content {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
}
.cid-vgkWHhuMNF .reverse {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-vgkWHhuMNF .reverse .timeline-text-content {
  margin-right: 0;
}
.cid-vgkWHhuMNF .bottom-date {
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
}
.cid-vgkWHhuMNF .mbr-timeline-location {
  margin-bottom: 0rem;
  font-weight: 700;
}
.cid-vgkWHhuMNF .location {
  display: flex;
  align-items: center;
}
.cid-vgkWHhuMNF .mbr-iconfont {
  font-size: 16px;
  color: #eeeeee;
}
.cid-vgkWHhuMNF .iconsBackground {
  margin-right: 0.8rem;
}
.cid-vgkWHhuMNF .reverseTimeline {
  display: flex;
  flex-direction: column-reverse;
}
@media (max-width: 767px) {
  .cid-vgkWHhuMNF .date-block {
    display: none;
  }
  .cid-vgkWHhuMNF .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-vgkWHhuMNF .image-wrap {
    padding-right: 0rem;
  }
  .cid-vgkWHhuMNF .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
  .cid-vgkWHhuMNF .block-timeline {
    padding: 0;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-vgkWHhuMNF .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-vgkWHhuMNF .image-wrap {
    padding-right: 0rem;
  }
  .cid-vgkWHhuMNF .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-vgkWHhuMNF .timeline-text-content {
    padding: 1.9rem;
  }
}
@media (min-width: 767px) {
  .cid-vgkWHhuMNF .block-timeline {
    padding: 0;
  }
}
.cid-vgkWHhuMNF .mbr-fallback-image.disabled {
  display: none;
}
.cid-vgkWHhuMNF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vgkWHhuMNF H5 {
  color: #000000;
}
.cid-veYmX6QorH {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-veYmX6QorH img {
  width: 100%;
  filter: grayscale(0);
}
.cid-veYmX6QorH .text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}
.cid-veYmX6QorH .block-timeline {
  display: flex;
}
.cid-veYmX6QorH .image-wrap {
  padding: 0rem;
  padding-right: 2rem;
}
.cid-veYmX6QorH .mbr-timeline-title {
  color: #000000;
  margin-bottom: 0.9rem;
}
.cid-veYmX6QorH .inner-date {
  padding: 1rem 1.5rem;
  background-color: #eeeeee;
}
.cid-veYmX6QorH .date-block {
  margin-right: 0.6rem;
}
.cid-veYmX6QorH .mbr-date-block {
  margin-bottom: 0rem;
}
.cid-veYmX6QorH .mbr-timeline-text {
  color: #000000;
  margin-bottom: 1.7rem;
}
.cid-veYmX6QorH .mbr-timeline-date {
  color: #eeeeee;
  font-weight: 700;
  margin-bottom: 0rem;
}
.cid-veYmX6QorH .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-veYmX6QorH .timeline-text-content {
  display: flex;
  background: #eeeeee;
  transition: all 0.4s;
}
.cid-veYmX6QorH .month-block {
  font-weight: 700;
  color: #000000;
}
.cid-veYmX6QorH .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-veYmX6QorH .timeline-element:hover .timeline-text-content {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
}
.cid-veYmX6QorH .reverse {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-veYmX6QorH .reverse .timeline-text-content {
  margin-right: 0;
}
.cid-veYmX6QorH .bottom-date {
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
}
.cid-veYmX6QorH .mbr-timeline-location {
  margin-bottom: 0rem;
  font-weight: 700;
}
.cid-veYmX6QorH .location {
  display: flex;
  align-items: center;
}
.cid-veYmX6QorH .mbr-iconfont {
  font-size: 16px;
  color: #eeeeee;
}
.cid-veYmX6QorH .iconsBackground {
  margin-right: 0.8rem;
}
.cid-veYmX6QorH .reverseTimeline {
  display: flex;
  flex-direction: column-reverse;
}
@media (max-width: 767px) {
  .cid-veYmX6QorH .date-block {
    display: none;
  }
  .cid-veYmX6QorH .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-veYmX6QorH .image-wrap {
    padding-right: 0rem;
  }
  .cid-veYmX6QorH .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
  .cid-veYmX6QorH .block-timeline {
    padding: 0;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-veYmX6QorH .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-veYmX6QorH .image-wrap {
    padding-right: 0rem;
  }
  .cid-veYmX6QorH .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-veYmX6QorH .timeline-text-content {
    padding: 1.9rem;
  }
}
@media (min-width: 767px) {
  .cid-veYmX6QorH .block-timeline {
    padding: 0;
  }
}
.cid-veYmX6QorH .mbr-fallback-image.disabled {
  display: none;
}
.cid-veYmX6QorH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-veYmX6QorH H5 {
  color: #000000;
}
.cid-veqCsq8soA {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-veqCsq8soA img {
  width: 100%;
  filter: grayscale(0);
}
.cid-veqCsq8soA .text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}
.cid-veqCsq8soA .block-timeline {
  display: flex;
}
.cid-veqCsq8soA .image-wrap {
  padding: 0rem;
  padding-right: 2rem;
}
.cid-veqCsq8soA .mbr-timeline-title {
  color: #000000;
  margin-bottom: 0.9rem;
}
.cid-veqCsq8soA .inner-date {
  padding: 1rem 1.5rem;
  background-color: #eeeeee;
}
.cid-veqCsq8soA .date-block {
  margin-right: 0.6rem;
}
.cid-veqCsq8soA .mbr-date-block {
  margin-bottom: 0rem;
}
.cid-veqCsq8soA .mbr-timeline-text {
  color: #000000;
  margin-bottom: 1.7rem;
}
.cid-veqCsq8soA .mbr-timeline-date {
  color: #eeeeee;
  font-weight: 700;
  margin-bottom: 0rem;
}
.cid-veqCsq8soA .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-veqCsq8soA .timeline-text-content {
  display: flex;
  background: #eeeeee;
  transition: all 0.4s;
}
.cid-veqCsq8soA .month-block {
  font-weight: 700;
  color: #000000;
}
.cid-veqCsq8soA .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-veqCsq8soA .timeline-element:hover .timeline-text-content {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
}
.cid-veqCsq8soA .reverse {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-veqCsq8soA .reverse .timeline-text-content {
  margin-right: 0;
}
.cid-veqCsq8soA .bottom-date {
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
}
.cid-veqCsq8soA .mbr-timeline-location {
  margin-bottom: 0rem;
  font-weight: 700;
}
.cid-veqCsq8soA .location {
  display: flex;
  align-items: center;
}
.cid-veqCsq8soA .mbr-iconfont {
  font-size: 16px;
  color: #eeeeee;
}
.cid-veqCsq8soA .iconsBackground {
  margin-right: 0.8rem;
}
.cid-veqCsq8soA .reverseTimeline {
  display: flex;
  flex-direction: column-reverse;
}
@media (max-width: 767px) {
  .cid-veqCsq8soA .date-block {
    display: none;
  }
  .cid-veqCsq8soA .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-veqCsq8soA .image-wrap {
    padding-right: 0rem;
  }
  .cid-veqCsq8soA .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
  .cid-veqCsq8soA .block-timeline {
    padding: 0;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-veqCsq8soA .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-veqCsq8soA .image-wrap {
    padding-right: 0rem;
  }
  .cid-veqCsq8soA .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-veqCsq8soA .timeline-text-content {
    padding: 1.9rem;
  }
}
@media (min-width: 767px) {
  .cid-veqCsq8soA .block-timeline {
    padding: 0;
  }
}
.cid-veqCsq8soA .mbr-fallback-image.disabled {
  display: none;
}
.cid-veqCsq8soA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-veqCsq8soA H5 {
  color: #000000;
}
.cid-vdK06Ph7ik {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vdK06Ph7ik img {
  width: 100%;
  filter: grayscale(0);
}
.cid-vdK06Ph7ik .text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}
.cid-vdK06Ph7ik .block-timeline {
  display: flex;
}
.cid-vdK06Ph7ik .image-wrap {
  padding: 0rem;
  padding-right: 2rem;
}
.cid-vdK06Ph7ik .mbr-timeline-title {
  color: #000000;
  margin-bottom: 0.9rem;
}
.cid-vdK06Ph7ik .inner-date {
  padding: 1rem 1.5rem;
  background-color: #eeeeee;
}
.cid-vdK06Ph7ik .date-block {
  margin-right: 0.6rem;
}
.cid-vdK06Ph7ik .mbr-date-block {
  margin-bottom: 0rem;
}
.cid-vdK06Ph7ik .mbr-timeline-text {
  color: #000000;
  margin-bottom: 1.7rem;
}
.cid-vdK06Ph7ik .mbr-timeline-date {
  color: #eeeeee;
  font-weight: 700;
  margin-bottom: 0rem;
}
.cid-vdK06Ph7ik .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-vdK06Ph7ik .timeline-text-content {
  display: flex;
  background: #eeeeee;
  transition: all 0.4s;
}
.cid-vdK06Ph7ik .month-block {
  font-weight: 700;
  color: #000000;
}
.cid-vdK06Ph7ik .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-vdK06Ph7ik .timeline-element:hover .timeline-text-content {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
}
.cid-vdK06Ph7ik .reverse {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-vdK06Ph7ik .reverse .timeline-text-content {
  margin-right: 0;
}
.cid-vdK06Ph7ik .bottom-date {
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
}
.cid-vdK06Ph7ik .mbr-timeline-location {
  margin-bottom: 0rem;
  font-weight: 700;
}
.cid-vdK06Ph7ik .location {
  display: flex;
  align-items: center;
}
.cid-vdK06Ph7ik .mbr-iconfont {
  font-size: 16px;
  color: #eeeeee;
}
.cid-vdK06Ph7ik .iconsBackground {
  margin-right: 0.8rem;
}
.cid-vdK06Ph7ik .reverseTimeline {
  display: flex;
  flex-direction: column-reverse;
}
@media (max-width: 767px) {
  .cid-vdK06Ph7ik .date-block {
    display: none;
  }
  .cid-vdK06Ph7ik .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-vdK06Ph7ik .image-wrap {
    padding-right: 0rem;
  }
  .cid-vdK06Ph7ik .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
  .cid-vdK06Ph7ik .block-timeline {
    padding: 0;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-vdK06Ph7ik .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-vdK06Ph7ik .image-wrap {
    padding-right: 0rem;
  }
  .cid-vdK06Ph7ik .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-vdK06Ph7ik .timeline-text-content {
    padding: 1.9rem;
  }
}
@media (min-width: 767px) {
  .cid-vdK06Ph7ik .block-timeline {
    padding: 0;
  }
}
.cid-vdK06Ph7ik .mbr-fallback-image.disabled {
  display: none;
}
.cid-vdK06Ph7ik .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vdK06Ph7ik H5 {
  color: #000000;
}
.cid-vd670kYLEl {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vd670kYLEl img {
  width: 100%;
  filter: grayscale(0);
}
.cid-vd670kYLEl .text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}
.cid-vd670kYLEl .block-timeline {
  display: flex;
}
.cid-vd670kYLEl .image-wrap {
  padding: 0rem;
  padding-right: 2rem;
}
.cid-vd670kYLEl .mbr-timeline-title {
  color: #000000;
  margin-bottom: 0.9rem;
}
.cid-vd670kYLEl .inner-date {
  padding: 1rem 1.5rem;
  background-color: #eeeeee;
}
.cid-vd670kYLEl .date-block {
  margin-right: 0.6rem;
}
.cid-vd670kYLEl .mbr-date-block {
  margin-bottom: 0rem;
}
.cid-vd670kYLEl .mbr-timeline-text {
  color: #000000;
  margin-bottom: 1.7rem;
}
.cid-vd670kYLEl .mbr-timeline-date {
  color: #eeeeee;
  font-weight: 700;
  margin-bottom: 0rem;
}
.cid-vd670kYLEl .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-vd670kYLEl .timeline-text-content {
  display: flex;
  background: #eeeeee;
  transition: all 0.4s;
}
.cid-vd670kYLEl .month-block {
  font-weight: 700;
  color: #000000;
}
.cid-vd670kYLEl .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-vd670kYLEl .timeline-element:hover .timeline-text-content {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
}
.cid-vd670kYLEl .reverse {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-vd670kYLEl .reverse .timeline-text-content {
  margin-right: 0;
}
.cid-vd670kYLEl .bottom-date {
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
}
.cid-vd670kYLEl .mbr-timeline-location {
  margin-bottom: 0rem;
  font-weight: 700;
}
.cid-vd670kYLEl .location {
  display: flex;
  align-items: center;
}
.cid-vd670kYLEl .mbr-iconfont {
  font-size: 16px;
  color: #eeeeee;
}
.cid-vd670kYLEl .iconsBackground {
  margin-right: 0.8rem;
}
.cid-vd670kYLEl .reverseTimeline {
  display: flex;
  flex-direction: column-reverse;
}
@media (max-width: 767px) {
  .cid-vd670kYLEl .date-block {
    display: none;
  }
  .cid-vd670kYLEl .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-vd670kYLEl .image-wrap {
    padding-right: 0rem;
  }
  .cid-vd670kYLEl .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
  .cid-vd670kYLEl .block-timeline {
    padding: 0;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-vd670kYLEl .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-vd670kYLEl .image-wrap {
    padding-right: 0rem;
  }
  .cid-vd670kYLEl .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-vd670kYLEl .timeline-text-content {
    padding: 1.9rem;
  }
}
@media (min-width: 767px) {
  .cid-vd670kYLEl .block-timeline {
    padding: 0;
  }
}
.cid-vd670kYLEl .mbr-fallback-image.disabled {
  display: none;
}
.cid-vd670kYLEl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vd670kYLEl H5 {
  color: #000000;
}
.cid-vcqZNkRLQC {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vcqZNkRLQC img {
  width: 100%;
  filter: grayscale(0);
}
.cid-vcqZNkRLQC .text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}
.cid-vcqZNkRLQC .block-timeline {
  display: flex;
}
.cid-vcqZNkRLQC .image-wrap {
  padding: 0rem;
  padding-right: 2rem;
}
.cid-vcqZNkRLQC .mbr-timeline-title {
  color: #000000;
  margin-bottom: 0.9rem;
}
.cid-vcqZNkRLQC .inner-date {
  padding: 1rem 1.5rem;
  background-color: #eeeeee;
}
.cid-vcqZNkRLQC .date-block {
  margin-right: 0.6rem;
}
.cid-vcqZNkRLQC .mbr-date-block {
  margin-bottom: 0rem;
}
.cid-vcqZNkRLQC .mbr-timeline-text {
  color: #000000;
  margin-bottom: 1.7rem;
}
.cid-vcqZNkRLQC .mbr-timeline-date {
  color: #eeeeee;
  font-weight: 700;
  margin-bottom: 0rem;
}
.cid-vcqZNkRLQC .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-vcqZNkRLQC .timeline-text-content {
  display: flex;
  background: #eeeeee;
  transition: all 0.4s;
}
.cid-vcqZNkRLQC .month-block {
  font-weight: 700;
  color: #000000;
}
.cid-vcqZNkRLQC .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-vcqZNkRLQC .timeline-element:hover .timeline-text-content {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
}
.cid-vcqZNkRLQC .reverse {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-vcqZNkRLQC .reverse .timeline-text-content {
  margin-right: 0;
}
.cid-vcqZNkRLQC .bottom-date {
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
}
.cid-vcqZNkRLQC .mbr-timeline-location {
  margin-bottom: 0rem;
  font-weight: 700;
}
.cid-vcqZNkRLQC .location {
  display: flex;
  align-items: center;
}
.cid-vcqZNkRLQC .mbr-iconfont {
  font-size: 16px;
  color: #eeeeee;
}
.cid-vcqZNkRLQC .iconsBackground {
  margin-right: 0.8rem;
}
.cid-vcqZNkRLQC .reverseTimeline {
  display: flex;
  flex-direction: column-reverse;
}
@media (max-width: 767px) {
  .cid-vcqZNkRLQC .date-block {
    display: none;
  }
  .cid-vcqZNkRLQC .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-vcqZNkRLQC .image-wrap {
    padding-right: 0rem;
  }
  .cid-vcqZNkRLQC .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
  .cid-vcqZNkRLQC .block-timeline {
    padding: 0;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-vcqZNkRLQC .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-vcqZNkRLQC .image-wrap {
    padding-right: 0rem;
  }
  .cid-vcqZNkRLQC .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-vcqZNkRLQC .timeline-text-content {
    padding: 1.9rem;
  }
}
@media (min-width: 767px) {
  .cid-vcqZNkRLQC .block-timeline {
    padding: 0;
  }
}
.cid-vcqZNkRLQC .mbr-fallback-image.disabled {
  display: none;
}
.cid-vcqZNkRLQC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vcqZNkRLQC H5 {
  color: #000000;
}
.cid-vb0VlnnDwz {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vb0VlnnDwz img {
  width: 100%;
  filter: grayscale(0);
}
.cid-vb0VlnnDwz .text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}
.cid-vb0VlnnDwz .block-timeline {
  display: flex;
}
.cid-vb0VlnnDwz .image-wrap {
  padding: 0rem;
  padding-right: 2rem;
}
.cid-vb0VlnnDwz .mbr-timeline-title {
  color: #000000;
  margin-bottom: 0.9rem;
}
.cid-vb0VlnnDwz .inner-date {
  padding: 1rem 1.5rem;
  background-color: #eeeeee;
}
.cid-vb0VlnnDwz .date-block {
  margin-right: 0.6rem;
}
.cid-vb0VlnnDwz .mbr-date-block {
  margin-bottom: 0rem;
}
.cid-vb0VlnnDwz .mbr-timeline-text {
  color: #000000;
  margin-bottom: 1.7rem;
}
.cid-vb0VlnnDwz .mbr-timeline-date {
  color: #eeeeee;
  font-weight: 700;
  margin-bottom: 0rem;
}
.cid-vb0VlnnDwz .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-vb0VlnnDwz .timeline-text-content {
  display: flex;
  background: #eeeeee;
  transition: all 0.4s;
}
.cid-vb0VlnnDwz .month-block {
  font-weight: 700;
  color: #000000;
}
.cid-vb0VlnnDwz .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-vb0VlnnDwz .timeline-element:hover .timeline-text-content {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
}
.cid-vb0VlnnDwz .reverse {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-vb0VlnnDwz .reverse .timeline-text-content {
  margin-right: 0;
}
.cid-vb0VlnnDwz .bottom-date {
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
}
.cid-vb0VlnnDwz .mbr-timeline-location {
  margin-bottom: 0rem;
  font-weight: 700;
}
.cid-vb0VlnnDwz .location {
  display: flex;
  align-items: center;
}
.cid-vb0VlnnDwz .mbr-iconfont {
  font-size: 16px;
  color: #eeeeee;
}
.cid-vb0VlnnDwz .iconsBackground {
  margin-right: 0.8rem;
}
.cid-vb0VlnnDwz .reverseTimeline {
  display: flex;
  flex-direction: column-reverse;
}
@media (max-width: 767px) {
  .cid-vb0VlnnDwz .date-block {
    display: none;
  }
  .cid-vb0VlnnDwz .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-vb0VlnnDwz .image-wrap {
    padding-right: 0rem;
  }
  .cid-vb0VlnnDwz .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
  .cid-vb0VlnnDwz .block-timeline {
    padding: 0;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-vb0VlnnDwz .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-vb0VlnnDwz .image-wrap {
    padding-right: 0rem;
  }
  .cid-vb0VlnnDwz .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-vb0VlnnDwz .timeline-text-content {
    padding: 1.9rem;
  }
}
@media (min-width: 767px) {
  .cid-vb0VlnnDwz .block-timeline {
    padding: 0;
  }
}
.cid-vb0VlnnDwz .mbr-fallback-image.disabled {
  display: none;
}
.cid-vb0VlnnDwz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vb0VlnnDwz H5 {
  color: #000000;
}
.cid-vaVTwLnves {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vaVTwLnves img {
  width: 100%;
  filter: grayscale(0);
}
.cid-vaVTwLnves .text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}
.cid-vaVTwLnves .block-timeline {
  display: flex;
}
.cid-vaVTwLnves .image-wrap {
  padding: 0rem;
  padding-right: 2rem;
}
.cid-vaVTwLnves .mbr-timeline-title {
  color: #000000;
  margin-bottom: 0.9rem;
}
.cid-vaVTwLnves .inner-date {
  padding: 1rem 1.5rem;
  background-color: #eeeeee;
}
.cid-vaVTwLnves .date-block {
  margin-right: 0.6rem;
}
.cid-vaVTwLnves .mbr-date-block {
  margin-bottom: 0rem;
}
.cid-vaVTwLnves .mbr-timeline-text {
  color: #000000;
  margin-bottom: 1.7rem;
}
.cid-vaVTwLnves .mbr-timeline-date {
  color: #eeeeee;
  font-weight: 700;
  margin-bottom: 0rem;
}
.cid-vaVTwLnves .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-vaVTwLnves .timeline-text-content {
  display: flex;
  background: #eeeeee;
  transition: all 0.4s;
}
.cid-vaVTwLnves .month-block {
  font-weight: 700;
  color: #000000;
}
.cid-vaVTwLnves .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-vaVTwLnves .timeline-element:hover .timeline-text-content {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
}
.cid-vaVTwLnves .reverse {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-vaVTwLnves .reverse .timeline-text-content {
  margin-right: 0;
}
.cid-vaVTwLnves .bottom-date {
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
}
.cid-vaVTwLnves .mbr-timeline-location {
  margin-bottom: 0rem;
  font-weight: 700;
}
.cid-vaVTwLnves .location {
  display: flex;
  align-items: center;
}
.cid-vaVTwLnves .mbr-iconfont {
  font-size: 16px;
  color: #eeeeee;
}
.cid-vaVTwLnves .iconsBackground {
  margin-right: 0.8rem;
}
.cid-vaVTwLnves .reverseTimeline {
  display: flex;
  flex-direction: column-reverse;
}
@media (max-width: 767px) {
  .cid-vaVTwLnves .date-block {
    display: none;
  }
  .cid-vaVTwLnves .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-vaVTwLnves .image-wrap {
    padding-right: 0rem;
  }
  .cid-vaVTwLnves .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
  .cid-vaVTwLnves .block-timeline {
    padding: 0;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-vaVTwLnves .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-vaVTwLnves .image-wrap {
    padding-right: 0rem;
  }
  .cid-vaVTwLnves .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-vaVTwLnves .timeline-text-content {
    padding: 1.9rem;
  }
}
@media (min-width: 767px) {
  .cid-vaVTwLnves .block-timeline {
    padding: 0;
  }
}
.cid-vaVTwLnves .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaVTwLnves .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaVTwLnves H5 {
  color: #000000;
}
.cid-valhyFyd6J {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-valhyFyd6J img {
  width: 100%;
  filter: grayscale(0);
}
.cid-valhyFyd6J .text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}
.cid-valhyFyd6J .block-timeline {
  display: flex;
}
.cid-valhyFyd6J .image-wrap {
  padding: 0rem;
  padding-right: 2rem;
}
.cid-valhyFyd6J .mbr-timeline-title {
  color: #000000;
  margin-bottom: 0.9rem;
}
.cid-valhyFyd6J .inner-date {
  padding: 1rem 1.5rem;
  background-color: #eeeeee;
}
.cid-valhyFyd6J .date-block {
  margin-right: 0.6rem;
}
.cid-valhyFyd6J .mbr-date-block {
  margin-bottom: 0rem;
}
.cid-valhyFyd6J .mbr-timeline-text {
  color: #000000;
  margin-bottom: 1.7rem;
}
.cid-valhyFyd6J .mbr-timeline-date {
  color: #eeeeee;
  font-weight: 700;
  margin-bottom: 0rem;
}
.cid-valhyFyd6J .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-valhyFyd6J .timeline-text-content {
  display: flex;
  background: #eeeeee;
  transition: all 0.4s;
}
.cid-valhyFyd6J .month-block {
  font-weight: 700;
  color: #000000;
}
.cid-valhyFyd6J .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-valhyFyd6J .timeline-element:hover .timeline-text-content {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
}
.cid-valhyFyd6J .reverse {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-valhyFyd6J .reverse .timeline-text-content {
  margin-right: 0;
}
.cid-valhyFyd6J .bottom-date {
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
}
.cid-valhyFyd6J .mbr-timeline-location {
  margin-bottom: 0rem;
  font-weight: 700;
}
.cid-valhyFyd6J .location {
  display: flex;
  align-items: center;
}
.cid-valhyFyd6J .mbr-iconfont {
  font-size: 16px;
  color: #eeeeee;
}
.cid-valhyFyd6J .iconsBackground {
  margin-right: 0.8rem;
}
.cid-valhyFyd6J .reverseTimeline {
  display: flex;
  flex-direction: column-reverse;
}
@media (max-width: 767px) {
  .cid-valhyFyd6J .date-block {
    display: none;
  }
  .cid-valhyFyd6J .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-valhyFyd6J .image-wrap {
    padding-right: 0rem;
  }
  .cid-valhyFyd6J .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
  .cid-valhyFyd6J .block-timeline {
    padding: 0;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-valhyFyd6J .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-valhyFyd6J .image-wrap {
    padding-right: 0rem;
  }
  .cid-valhyFyd6J .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-valhyFyd6J .timeline-text-content {
    padding: 1.9rem;
  }
}
@media (min-width: 767px) {
  .cid-valhyFyd6J .block-timeline {
    padding: 0;
  }
}
.cid-valhyFyd6J .mbr-fallback-image.disabled {
  display: none;
}
.cid-valhyFyd6J .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-valhyFyd6J H5 {
  color: #000000;
}
.cid-v9M6kp6tMG {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v9M6kp6tMG img {
  width: 100%;
  filter: grayscale(0);
}
.cid-v9M6kp6tMG .text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}
.cid-v9M6kp6tMG .block-timeline {
  display: flex;
}
.cid-v9M6kp6tMG .image-wrap {
  padding: 0rem;
  padding-right: 2rem;
}
.cid-v9M6kp6tMG .mbr-timeline-title {
  color: #000000;
  margin-bottom: 0.9rem;
}
.cid-v9M6kp6tMG .inner-date {
  padding: 1rem 1.5rem;
  background-color: #eeeeee;
}
.cid-v9M6kp6tMG .date-block {
  margin-right: 0.6rem;
}
.cid-v9M6kp6tMG .mbr-date-block {
  margin-bottom: 0rem;
}
.cid-v9M6kp6tMG .mbr-timeline-text {
  color: #000000;
  margin-bottom: 1.7rem;
}
.cid-v9M6kp6tMG .mbr-timeline-date {
  color: #eeeeee;
  font-weight: 700;
  margin-bottom: 0rem;
}
.cid-v9M6kp6tMG .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-v9M6kp6tMG .timeline-text-content {
  display: flex;
  background: #eeeeee;
  transition: all 0.4s;
}
.cid-v9M6kp6tMG .month-block {
  font-weight: 700;
  color: #000000;
}
.cid-v9M6kp6tMG .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-v9M6kp6tMG .timeline-element:hover .timeline-text-content {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
}
.cid-v9M6kp6tMG .reverse {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-v9M6kp6tMG .reverse .timeline-text-content {
  margin-right: 0;
}
.cid-v9M6kp6tMG .bottom-date {
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
}
.cid-v9M6kp6tMG .mbr-timeline-location {
  margin-bottom: 0rem;
  font-weight: 700;
}
.cid-v9M6kp6tMG .location {
  display: flex;
  align-items: center;
}
.cid-v9M6kp6tMG .mbr-iconfont {
  font-size: 16px;
  color: #eeeeee;
}
.cid-v9M6kp6tMG .iconsBackground {
  margin-right: 0.8rem;
}
.cid-v9M6kp6tMG .reverseTimeline {
  display: flex;
  flex-direction: column-reverse;
}
@media (max-width: 767px) {
  .cid-v9M6kp6tMG .date-block {
    display: none;
  }
  .cid-v9M6kp6tMG .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v9M6kp6tMG .image-wrap {
    padding-right: 0rem;
  }
  .cid-v9M6kp6tMG .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
  .cid-v9M6kp6tMG .block-timeline {
    padding: 0;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-v9M6kp6tMG .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v9M6kp6tMG .image-wrap {
    padding-right: 0rem;
  }
  .cid-v9M6kp6tMG .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-v9M6kp6tMG .timeline-text-content {
    padding: 1.9rem;
  }
}
@media (min-width: 767px) {
  .cid-v9M6kp6tMG .block-timeline {
    padding: 0;
  }
}
.cid-v9M6kp6tMG .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9M6kp6tMG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9M6kp6tMG H5 {
  color: #000000;
}
.cid-v97x8bhmYx {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v97x8bhmYx img {
  width: 100%;
  filter: grayscale(0);
}
.cid-v97x8bhmYx .text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}
.cid-v97x8bhmYx .block-timeline {
  display: flex;
}
.cid-v97x8bhmYx .image-wrap {
  padding: 0rem;
  padding-right: 2rem;
}
.cid-v97x8bhmYx .mbr-timeline-title {
  color: #000000;
  margin-bottom: 0.9rem;
}
.cid-v97x8bhmYx .inner-date {
  padding: 1rem 1.5rem;
  background-color: #eeeeee;
}
.cid-v97x8bhmYx .date-block {
  margin-right: 0.6rem;
}
.cid-v97x8bhmYx .mbr-date-block {
  margin-bottom: 0rem;
}
.cid-v97x8bhmYx .mbr-timeline-text {
  color: #000000;
  margin-bottom: 1.7rem;
}
.cid-v97x8bhmYx .mbr-timeline-date {
  color: #eeeeee;
  font-weight: 700;
  margin-bottom: 0rem;
}
.cid-v97x8bhmYx .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-v97x8bhmYx .timeline-text-content {
  display: flex;
  background: #eeeeee;
  transition: all 0.4s;
}
.cid-v97x8bhmYx .month-block {
  font-weight: 700;
  color: #000000;
}
.cid-v97x8bhmYx .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-v97x8bhmYx .timeline-element:hover .timeline-text-content {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
}
.cid-v97x8bhmYx .reverse {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-v97x8bhmYx .reverse .timeline-text-content {
  margin-right: 0;
}
.cid-v97x8bhmYx .bottom-date {
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
}
.cid-v97x8bhmYx .mbr-timeline-location {
  margin-bottom: 0rem;
  font-weight: 700;
}
.cid-v97x8bhmYx .location {
  display: flex;
  align-items: center;
}
.cid-v97x8bhmYx .mbr-iconfont {
  font-size: 16px;
  color: #eeeeee;
}
.cid-v97x8bhmYx .iconsBackground {
  margin-right: 0.8rem;
}
.cid-v97x8bhmYx .reverseTimeline {
  display: flex;
  flex-direction: column-reverse;
}
@media (max-width: 767px) {
  .cid-v97x8bhmYx .date-block {
    display: none;
  }
  .cid-v97x8bhmYx .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v97x8bhmYx .image-wrap {
    padding-right: 0rem;
  }
  .cid-v97x8bhmYx .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
  .cid-v97x8bhmYx .block-timeline {
    padding: 0;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-v97x8bhmYx .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v97x8bhmYx .image-wrap {
    padding-right: 0rem;
  }
  .cid-v97x8bhmYx .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-v97x8bhmYx .timeline-text-content {
    padding: 1.9rem;
  }
}
@media (min-width: 767px) {
  .cid-v97x8bhmYx .block-timeline {
    padding: 0;
  }
}
.cid-v97x8bhmYx .mbr-fallback-image.disabled {
  display: none;
}
.cid-v97x8bhmYx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v97x8bhmYx H5 {
  color: #000000;
}
.cid-v8u5hK1xpd {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v8u5hK1xpd img {
  width: 100%;
  filter: grayscale(0);
}
.cid-v8u5hK1xpd .text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}
.cid-v8u5hK1xpd .block-timeline {
  display: flex;
}
.cid-v8u5hK1xpd .image-wrap {
  padding: 0rem;
  padding-right: 2rem;
}
.cid-v8u5hK1xpd .mbr-timeline-title {
  color: #000000;
  margin-bottom: 0.9rem;
}
.cid-v8u5hK1xpd .inner-date {
  padding: 1rem 1.5rem;
  background-color: #eeeeee;
}
.cid-v8u5hK1xpd .date-block {
  margin-right: 0.6rem;
}
.cid-v8u5hK1xpd .mbr-date-block {
  margin-bottom: 0rem;
}
.cid-v8u5hK1xpd .mbr-timeline-text {
  color: #000000;
  margin-bottom: 1.7rem;
}
.cid-v8u5hK1xpd .mbr-timeline-date {
  color: #eeeeee;
  font-weight: 700;
  margin-bottom: 0rem;
}
.cid-v8u5hK1xpd .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-v8u5hK1xpd .timeline-text-content {
  display: flex;
  background: #eeeeee;
  transition: all 0.4s;
}
.cid-v8u5hK1xpd .month-block {
  font-weight: 700;
  color: #000000;
}
.cid-v8u5hK1xpd .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-v8u5hK1xpd .timeline-element:hover .timeline-text-content {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
}
.cid-v8u5hK1xpd .reverse {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-v8u5hK1xpd .reverse .timeline-text-content {
  margin-right: 0;
}
.cid-v8u5hK1xpd .bottom-date {
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
}
.cid-v8u5hK1xpd .mbr-timeline-location {
  margin-bottom: 0rem;
  font-weight: 700;
}
.cid-v8u5hK1xpd .location {
  display: flex;
  align-items: center;
}
.cid-v8u5hK1xpd .mbr-iconfont {
  font-size: 16px;
  color: #eeeeee;
}
.cid-v8u5hK1xpd .iconsBackground {
  margin-right: 0.8rem;
}
.cid-v8u5hK1xpd .reverseTimeline {
  display: flex;
  flex-direction: column-reverse;
}
@media (max-width: 767px) {
  .cid-v8u5hK1xpd .date-block {
    display: none;
  }
  .cid-v8u5hK1xpd .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v8u5hK1xpd .image-wrap {
    padding-right: 0rem;
  }
  .cid-v8u5hK1xpd .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
  .cid-v8u5hK1xpd .block-timeline {
    padding: 0;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-v8u5hK1xpd .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v8u5hK1xpd .image-wrap {
    padding-right: 0rem;
  }
  .cid-v8u5hK1xpd .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-v8u5hK1xpd .timeline-text-content {
    padding: 1.9rem;
  }
}
@media (min-width: 767px) {
  .cid-v8u5hK1xpd .block-timeline {
    padding: 0;
  }
}
.cid-v8u5hK1xpd .mbr-fallback-image.disabled {
  display: none;
}
.cid-v8u5hK1xpd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v8u5hK1xpd H5 {
  color: #000000;
}
.cid-v7I3bks4TL {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v7I3bks4TL img {
  width: 100%;
  filter: grayscale(0);
}
.cid-v7I3bks4TL .text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}
.cid-v7I3bks4TL .block-timeline {
  display: flex;
}
.cid-v7I3bks4TL .image-wrap {
  padding: 0rem;
  padding-right: 2rem;
}
.cid-v7I3bks4TL .mbr-timeline-title {
  color: #000000;
  margin-bottom: 0.9rem;
}
.cid-v7I3bks4TL .inner-date {
  padding: 1rem 1.5rem;
  background-color: #eeeeee;
}
.cid-v7I3bks4TL .date-block {
  margin-right: 0.6rem;
}
.cid-v7I3bks4TL .mbr-date-block {
  margin-bottom: 0rem;
}
.cid-v7I3bks4TL .mbr-timeline-text {
  color: #000000;
  margin-bottom: 1.7rem;
}
.cid-v7I3bks4TL .mbr-timeline-date {
  color: #eeeeee;
  font-weight: 700;
  margin-bottom: 0rem;
}
.cid-v7I3bks4TL .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-v7I3bks4TL .timeline-text-content {
  display: flex;
  background: #eeeeee;
  transition: all 0.4s;
}
.cid-v7I3bks4TL .month-block {
  font-weight: 700;
  color: #000000;
}
.cid-v7I3bks4TL .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-v7I3bks4TL .timeline-element:hover .timeline-text-content {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
}
.cid-v7I3bks4TL .reverse {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-v7I3bks4TL .reverse .timeline-text-content {
  margin-right: 0;
}
.cid-v7I3bks4TL .bottom-date {
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
}
.cid-v7I3bks4TL .mbr-timeline-location {
  margin-bottom: 0rem;
  font-weight: 700;
}
.cid-v7I3bks4TL .location {
  display: flex;
  align-items: center;
}
.cid-v7I3bks4TL .mbr-iconfont {
  font-size: 16px;
  color: #eeeeee;
}
.cid-v7I3bks4TL .iconsBackground {
  margin-right: 0.8rem;
}
.cid-v7I3bks4TL .reverseTimeline {
  display: flex;
  flex-direction: column-reverse;
}
@media (max-width: 767px) {
  .cid-v7I3bks4TL .date-block {
    display: none;
  }
  .cid-v7I3bks4TL .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v7I3bks4TL .image-wrap {
    padding-right: 0rem;
  }
  .cid-v7I3bks4TL .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
  .cid-v7I3bks4TL .block-timeline {
    padding: 0;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-v7I3bks4TL .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v7I3bks4TL .image-wrap {
    padding-right: 0rem;
  }
  .cid-v7I3bks4TL .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-v7I3bks4TL .timeline-text-content {
    padding: 1.9rem;
  }
}
@media (min-width: 767px) {
  .cid-v7I3bks4TL .block-timeline {
    padding: 0;
  }
}
.cid-v7I3bks4TL .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7I3bks4TL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7I3bks4TL H5 {
  color: #000000;
}
.cid-v561liT1Mr {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v561liT1Mr img {
  width: 100%;
  filter: grayscale(0);
}
.cid-v561liT1Mr .text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}
.cid-v561liT1Mr .block-timeline {
  display: flex;
}
.cid-v561liT1Mr .image-wrap {
  padding: 0rem;
  padding-right: 2rem;
}
.cid-v561liT1Mr .mbr-timeline-title {
  color: #000000;
  margin-bottom: 0.9rem;
}
.cid-v561liT1Mr .inner-date {
  padding: 1rem 1.5rem;
  background-color: #eeeeee;
}
.cid-v561liT1Mr .date-block {
  margin-right: 0.6rem;
}
.cid-v561liT1Mr .mbr-date-block {
  margin-bottom: 0rem;
}
.cid-v561liT1Mr .mbr-timeline-text {
  color: #000000;
  margin-bottom: 1.7rem;
}
.cid-v561liT1Mr .mbr-timeline-date {
  color: #eeeeee;
  font-weight: 700;
  margin-bottom: 0rem;
}
.cid-v561liT1Mr .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-v561liT1Mr .timeline-text-content {
  display: flex;
  background: #eeeeee;
  transition: all 0.4s;
}
.cid-v561liT1Mr .month-block {
  font-weight: 700;
  color: #000000;
}
.cid-v561liT1Mr .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-v561liT1Mr .timeline-element:hover .timeline-text-content {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
}
.cid-v561liT1Mr .reverse {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-v561liT1Mr .reverse .timeline-text-content {
  margin-right: 0;
}
.cid-v561liT1Mr .bottom-date {
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
}
.cid-v561liT1Mr .mbr-timeline-location {
  margin-bottom: 0rem;
  font-weight: 700;
}
.cid-v561liT1Mr .location {
  display: flex;
  align-items: center;
}
.cid-v561liT1Mr .mbr-iconfont {
  font-size: 16px;
  color: #eeeeee;
}
.cid-v561liT1Mr .iconsBackground {
  margin-right: 0.8rem;
}
.cid-v561liT1Mr .reverseTimeline {
  display: flex;
  flex-direction: column-reverse;
}
@media (max-width: 767px) {
  .cid-v561liT1Mr .date-block {
    display: none;
  }
  .cid-v561liT1Mr .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v561liT1Mr .image-wrap {
    padding-right: 0rem;
  }
  .cid-v561liT1Mr .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
  .cid-v561liT1Mr .block-timeline {
    padding: 0;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-v561liT1Mr .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v561liT1Mr .image-wrap {
    padding-right: 0rem;
  }
  .cid-v561liT1Mr .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-v561liT1Mr .timeline-text-content {
    padding: 1.9rem;
  }
}
@media (min-width: 767px) {
  .cid-v561liT1Mr .block-timeline {
    padding: 0;
  }
}
.cid-v561liT1Mr .mbr-fallback-image.disabled {
  display: none;
}
.cid-v561liT1Mr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v561liT1Mr H5 {
  color: #000000;
}
.cid-v4vVA54GfQ {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v4vVA54GfQ img {
  width: 100%;
  filter: grayscale(0);
}
.cid-v4vVA54GfQ .text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}
.cid-v4vVA54GfQ .block-timeline {
  display: flex;
}
.cid-v4vVA54GfQ .image-wrap {
  padding: 0rem;
  padding-right: 2rem;
}
.cid-v4vVA54GfQ .mbr-timeline-title {
  color: #000000;
  margin-bottom: 0.9rem;
}
.cid-v4vVA54GfQ .inner-date {
  padding: 1rem 1.5rem;
  background-color: #eeeeee;
}
.cid-v4vVA54GfQ .date-block {
  margin-right: 0.6rem;
}
.cid-v4vVA54GfQ .mbr-date-block {
  margin-bottom: 0rem;
}
.cid-v4vVA54GfQ .mbr-timeline-text {
  color: #000000;
  margin-bottom: 1.7rem;
}
.cid-v4vVA54GfQ .mbr-timeline-date {
  color: #eeeeee;
  font-weight: 700;
  margin-bottom: 0rem;
}
.cid-v4vVA54GfQ .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-v4vVA54GfQ .timeline-text-content {
  display: flex;
  background: #eeeeee;
  transition: all 0.4s;
}
.cid-v4vVA54GfQ .month-block {
  font-weight: 700;
  color: #000000;
}
.cid-v4vVA54GfQ .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-v4vVA54GfQ .timeline-element:hover .timeline-text-content {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
}
.cid-v4vVA54GfQ .reverse {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-v4vVA54GfQ .reverse .timeline-text-content {
  margin-right: 0;
}
.cid-v4vVA54GfQ .bottom-date {
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
}
.cid-v4vVA54GfQ .mbr-timeline-location {
  margin-bottom: 0rem;
  font-weight: 700;
}
.cid-v4vVA54GfQ .location {
  display: flex;
  align-items: center;
}
.cid-v4vVA54GfQ .mbr-iconfont {
  font-size: 16px;
  color: #eeeeee;
}
.cid-v4vVA54GfQ .iconsBackground {
  margin-right: 0.8rem;
}
.cid-v4vVA54GfQ .reverseTimeline {
  display: flex;
  flex-direction: column-reverse;
}
@media (max-width: 767px) {
  .cid-v4vVA54GfQ .date-block {
    display: none;
  }
  .cid-v4vVA54GfQ .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v4vVA54GfQ .image-wrap {
    padding-right: 0rem;
  }
  .cid-v4vVA54GfQ .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
  .cid-v4vVA54GfQ .block-timeline {
    padding: 0;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-v4vVA54GfQ .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v4vVA54GfQ .image-wrap {
    padding-right: 0rem;
  }
  .cid-v4vVA54GfQ .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-v4vVA54GfQ .timeline-text-content {
    padding: 1.9rem;
  }
}
@media (min-width: 767px) {
  .cid-v4vVA54GfQ .block-timeline {
    padding: 0;
  }
}
.cid-v4vVA54GfQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4vVA54GfQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4vVA54GfQ H5 {
  color: #000000;
}
.cid-v3XI6EDwss {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v3XI6EDwss img {
  width: 100%;
  filter: grayscale(0);
}
.cid-v3XI6EDwss .text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}
.cid-v3XI6EDwss .block-timeline {
  display: flex;
}
.cid-v3XI6EDwss .image-wrap {
  padding: 0rem;
  padding-right: 2rem;
}
.cid-v3XI6EDwss .mbr-timeline-title {
  color: #000000;
  margin-bottom: 0.9rem;
}
.cid-v3XI6EDwss .inner-date {
  padding: 1rem 1.5rem;
  background-color: #eeeeee;
}
.cid-v3XI6EDwss .date-block {
  margin-right: 0.6rem;
}
.cid-v3XI6EDwss .mbr-date-block {
  margin-bottom: 0rem;
}
.cid-v3XI6EDwss .mbr-timeline-text {
  color: #000000;
  margin-bottom: 1.7rem;
}
.cid-v3XI6EDwss .mbr-timeline-date {
  color: #eeeeee;
  font-weight: 700;
  margin-bottom: 0rem;
}
.cid-v3XI6EDwss .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-v3XI6EDwss .timeline-text-content {
  display: flex;
  background: #eeeeee;
  transition: all 0.4s;
}
.cid-v3XI6EDwss .month-block {
  font-weight: 700;
  color: #000000;
}
.cid-v3XI6EDwss .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-v3XI6EDwss .timeline-element:hover .timeline-text-content {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
}
.cid-v3XI6EDwss .reverse {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-v3XI6EDwss .reverse .timeline-text-content {
  margin-right: 0;
}
.cid-v3XI6EDwss .bottom-date {
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
}
.cid-v3XI6EDwss .mbr-timeline-location {
  margin-bottom: 0rem;
  font-weight: 700;
}
.cid-v3XI6EDwss .location {
  display: flex;
  align-items: center;
}
.cid-v3XI6EDwss .mbr-iconfont {
  font-size: 16px;
  color: #eeeeee;
}
.cid-v3XI6EDwss .iconsBackground {
  margin-right: 0.8rem;
}
.cid-v3XI6EDwss .reverseTimeline {
  display: flex;
  flex-direction: column-reverse;
}
@media (max-width: 767px) {
  .cid-v3XI6EDwss .date-block {
    display: none;
  }
  .cid-v3XI6EDwss .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v3XI6EDwss .image-wrap {
    padding-right: 0rem;
  }
  .cid-v3XI6EDwss .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
  .cid-v3XI6EDwss .block-timeline {
    padding: 0;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-v3XI6EDwss .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v3XI6EDwss .image-wrap {
    padding-right: 0rem;
  }
  .cid-v3XI6EDwss .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-v3XI6EDwss .timeline-text-content {
    padding: 1.9rem;
  }
}
@media (min-width: 767px) {
  .cid-v3XI6EDwss .block-timeline {
    padding: 0;
  }
}
.cid-v3XI6EDwss .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3XI6EDwss .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3XI6EDwss H5 {
  color: #000000;
}
.cid-v3cdeue3pY {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v3cdeue3pY img {
  width: 100%;
  filter: grayscale(0);
}
.cid-v3cdeue3pY .text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}
.cid-v3cdeue3pY .block-timeline {
  display: flex;
}
.cid-v3cdeue3pY .image-wrap {
  padding: 0rem;
  padding-right: 2rem;
}
.cid-v3cdeue3pY .mbr-timeline-title {
  color: #000000;
  margin-bottom: 0.9rem;
}
.cid-v3cdeue3pY .inner-date {
  padding: 1rem 1.5rem;
  background-color: #eeeeee;
}
.cid-v3cdeue3pY .date-block {
  margin-right: 0.6rem;
}
.cid-v3cdeue3pY .mbr-date-block {
  margin-bottom: 0rem;
}
.cid-v3cdeue3pY .mbr-timeline-text {
  color: #000000;
  margin-bottom: 1.7rem;
}
.cid-v3cdeue3pY .mbr-timeline-date {
  color: #eeeeee;
  font-weight: 700;
  margin-bottom: 0rem;
}
.cid-v3cdeue3pY .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-v3cdeue3pY .timeline-text-content {
  display: flex;
  background: #eeeeee;
  transition: all 0.4s;
}
.cid-v3cdeue3pY .month-block {
  font-weight: 700;
  color: #000000;
}
.cid-v3cdeue3pY .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-v3cdeue3pY .timeline-element:hover .timeline-text-content {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
}
.cid-v3cdeue3pY .reverse {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-v3cdeue3pY .reverse .timeline-text-content {
  margin-right: 0;
}
.cid-v3cdeue3pY .bottom-date {
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
}
.cid-v3cdeue3pY .mbr-timeline-location {
  margin-bottom: 0rem;
  font-weight: 700;
}
.cid-v3cdeue3pY .location {
  display: flex;
  align-items: center;
}
.cid-v3cdeue3pY .mbr-iconfont {
  font-size: 16px;
  color: #eeeeee;
}
.cid-v3cdeue3pY .iconsBackground {
  margin-right: 0.8rem;
}
.cid-v3cdeue3pY .reverseTimeline {
  display: flex;
  flex-direction: column-reverse;
}
@media (max-width: 767px) {
  .cid-v3cdeue3pY .date-block {
    display: none;
  }
  .cid-v3cdeue3pY .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v3cdeue3pY .image-wrap {
    padding-right: 0rem;
  }
  .cid-v3cdeue3pY .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
  .cid-v3cdeue3pY .block-timeline {
    padding: 0;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-v3cdeue3pY .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v3cdeue3pY .image-wrap {
    padding-right: 0rem;
  }
  .cid-v3cdeue3pY .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-v3cdeue3pY .timeline-text-content {
    padding: 1.9rem;
  }
}
@media (min-width: 767px) {
  .cid-v3cdeue3pY .block-timeline {
    padding: 0;
  }
}
.cid-v3cdeue3pY .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3cdeue3pY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3cdeue3pY H5 {
  color: #000000;
}
.cid-v2nG1jzAgM {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v2nG1jzAgM img {
  width: 100%;
  filter: grayscale(0);
}
.cid-v2nG1jzAgM .text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}
.cid-v2nG1jzAgM .block-timeline {
  display: flex;
}
.cid-v2nG1jzAgM .image-wrap {
  padding: 0rem;
  padding-right: 2rem;
}
.cid-v2nG1jzAgM .mbr-timeline-title {
  color: #000000;
  margin-bottom: 0.9rem;
}
.cid-v2nG1jzAgM .inner-date {
  padding: 1rem 1.5rem;
  background-color: #eeeeee;
}
.cid-v2nG1jzAgM .date-block {
  margin-right: 0.6rem;
}
.cid-v2nG1jzAgM .mbr-date-block {
  margin-bottom: 0rem;
}
.cid-v2nG1jzAgM .mbr-timeline-text {
  color: #000000;
  margin-bottom: 1.7rem;
}
.cid-v2nG1jzAgM .mbr-timeline-date {
  color: #eeeeee;
  font-weight: 700;
  margin-bottom: 0rem;
}
.cid-v2nG1jzAgM .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-v2nG1jzAgM .timeline-text-content {
  display: flex;
  background: #eeeeee;
  transition: all 0.4s;
}
.cid-v2nG1jzAgM .month-block {
  font-weight: 700;
  color: #000000;
}
.cid-v2nG1jzAgM .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-v2nG1jzAgM .timeline-element:hover .timeline-text-content {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
}
.cid-v2nG1jzAgM .reverse {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-v2nG1jzAgM .reverse .timeline-text-content {
  margin-right: 0;
}
.cid-v2nG1jzAgM .bottom-date {
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
}
.cid-v2nG1jzAgM .mbr-timeline-location {
  margin-bottom: 0rem;
  font-weight: 700;
}
.cid-v2nG1jzAgM .location {
  display: flex;
  align-items: center;
}
.cid-v2nG1jzAgM .mbr-iconfont {
  font-size: 16px;
  color: #eeeeee;
}
.cid-v2nG1jzAgM .iconsBackground {
  margin-right: 0.8rem;
}
.cid-v2nG1jzAgM .reverseTimeline {
  display: flex;
  flex-direction: column-reverse;
}
@media (max-width: 767px) {
  .cid-v2nG1jzAgM .date-block {
    display: none;
  }
  .cid-v2nG1jzAgM .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v2nG1jzAgM .image-wrap {
    padding-right: 0rem;
  }
  .cid-v2nG1jzAgM .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
  .cid-v2nG1jzAgM .block-timeline {
    padding: 0;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-v2nG1jzAgM .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v2nG1jzAgM .image-wrap {
    padding-right: 0rem;
  }
  .cid-v2nG1jzAgM .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-v2nG1jzAgM .timeline-text-content {
    padding: 1.9rem;
  }
}
@media (min-width: 767px) {
  .cid-v2nG1jzAgM .block-timeline {
    padding: 0;
  }
}
.cid-v2nG1jzAgM .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2nG1jzAgM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2nG1jzAgM H5 {
  color: #000000;
}
.cid-v1Adw9O3RX {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v1Adw9O3RX img {
  width: 100%;
  filter: grayscale(0);
}
.cid-v1Adw9O3RX .text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}
.cid-v1Adw9O3RX .block-timeline {
  display: flex;
}
.cid-v1Adw9O3RX .image-wrap {
  padding: 0rem;
  padding-right: 2rem;
}
.cid-v1Adw9O3RX .mbr-timeline-title {
  color: #000000;
  margin-bottom: 0.9rem;
}
.cid-v1Adw9O3RX .inner-date {
  padding: 1rem 1.5rem;
  background-color: #eeeeee;
}
.cid-v1Adw9O3RX .date-block {
  margin-right: 0.6rem;
}
.cid-v1Adw9O3RX .mbr-date-block {
  margin-bottom: 0rem;
}
.cid-v1Adw9O3RX .mbr-timeline-text {
  color: #000000;
  margin-bottom: 1.7rem;
}
.cid-v1Adw9O3RX .mbr-timeline-date {
  color: #eeeeee;
  font-weight: 700;
  margin-bottom: 0rem;
}
.cid-v1Adw9O3RX .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-v1Adw9O3RX .timeline-text-content {
  display: flex;
  background: #eeeeee;
  transition: all 0.4s;
}
.cid-v1Adw9O3RX .month-block {
  font-weight: 700;
  color: #000000;
}
.cid-v1Adw9O3RX .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-v1Adw9O3RX .timeline-element:hover .timeline-text-content {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
}
.cid-v1Adw9O3RX .reverse {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-v1Adw9O3RX .reverse .timeline-text-content {
  margin-right: 0;
}
.cid-v1Adw9O3RX .bottom-date {
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
}
.cid-v1Adw9O3RX .mbr-timeline-location {
  margin-bottom: 0rem;
  font-weight: 700;
}
.cid-v1Adw9O3RX .location {
  display: flex;
  align-items: center;
}
.cid-v1Adw9O3RX .mbr-iconfont {
  font-size: 16px;
  color: #eeeeee;
}
.cid-v1Adw9O3RX .iconsBackground {
  margin-right: 0.8rem;
}
.cid-v1Adw9O3RX .reverseTimeline {
  display: flex;
  flex-direction: column-reverse;
}
@media (max-width: 767px) {
  .cid-v1Adw9O3RX .date-block {
    display: none;
  }
  .cid-v1Adw9O3RX .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v1Adw9O3RX .image-wrap {
    padding-right: 0rem;
  }
  .cid-v1Adw9O3RX .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
  .cid-v1Adw9O3RX .block-timeline {
    padding: 0;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-v1Adw9O3RX .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v1Adw9O3RX .image-wrap {
    padding-right: 0rem;
  }
  .cid-v1Adw9O3RX .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-v1Adw9O3RX .timeline-text-content {
    padding: 1.9rem;
  }
}
@media (min-width: 767px) {
  .cid-v1Adw9O3RX .block-timeline {
    padding: 0;
  }
}
.cid-v1Adw9O3RX .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1Adw9O3RX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1Adw9O3RX H5 {
  color: #000000;
}
.cid-v1c9WUkvqm {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v1c9WUkvqm img {
  width: 100%;
  filter: grayscale(0);
}
.cid-v1c9WUkvqm .text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}
.cid-v1c9WUkvqm .block-timeline {
  display: flex;
}
.cid-v1c9WUkvqm .image-wrap {
  padding: 0rem;
  padding-right: 2rem;
}
.cid-v1c9WUkvqm .mbr-timeline-title {
  color: #000000;
  margin-bottom: 0.9rem;
}
.cid-v1c9WUkvqm .inner-date {
  padding: 1rem 1.5rem;
  background-color: #eeeeee;
}
.cid-v1c9WUkvqm .date-block {
  margin-right: 0.6rem;
}
.cid-v1c9WUkvqm .mbr-date-block {
  margin-bottom: 0rem;
}
.cid-v1c9WUkvqm .mbr-timeline-text {
  color: #000000;
  margin-bottom: 1.7rem;
}
.cid-v1c9WUkvqm .mbr-timeline-date {
  color: #eeeeee;
  font-weight: 700;
  margin-bottom: 0rem;
}
.cid-v1c9WUkvqm .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-v1c9WUkvqm .timeline-text-content {
  display: flex;
  background: #eeeeee;
  transition: all 0.4s;
}
.cid-v1c9WUkvqm .month-block {
  font-weight: 700;
  color: #000000;
}
.cid-v1c9WUkvqm .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-v1c9WUkvqm .timeline-element:hover .timeline-text-content {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
}
.cid-v1c9WUkvqm .reverse {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-v1c9WUkvqm .reverse .timeline-text-content {
  margin-right: 0;
}
.cid-v1c9WUkvqm .bottom-date {
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
}
.cid-v1c9WUkvqm .mbr-timeline-location {
  margin-bottom: 0rem;
  font-weight: 700;
}
.cid-v1c9WUkvqm .location {
  display: flex;
  align-items: center;
}
.cid-v1c9WUkvqm .mbr-iconfont {
  font-size: 16px;
  color: #eeeeee;
}
.cid-v1c9WUkvqm .iconsBackground {
  margin-right: 0.8rem;
}
.cid-v1c9WUkvqm .reverseTimeline {
  display: flex;
  flex-direction: column-reverse;
}
@media (max-width: 767px) {
  .cid-v1c9WUkvqm .date-block {
    display: none;
  }
  .cid-v1c9WUkvqm .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v1c9WUkvqm .image-wrap {
    padding-right: 0rem;
  }
  .cid-v1c9WUkvqm .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
  .cid-v1c9WUkvqm .block-timeline {
    padding: 0;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-v1c9WUkvqm .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v1c9WUkvqm .image-wrap {
    padding-right: 0rem;
  }
  .cid-v1c9WUkvqm .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-v1c9WUkvqm .timeline-text-content {
    padding: 1.9rem;
  }
}
@media (min-width: 767px) {
  .cid-v1c9WUkvqm .block-timeline {
    padding: 0;
  }
}
.cid-v1c9WUkvqm .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1c9WUkvqm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1c9WUkvqm H5 {
  color: #000000;
}
.cid-v0lUB07Hza {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v0lUB07Hza img {
  width: 100%;
  filter: grayscale(0);
}
.cid-v0lUB07Hza .text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}
.cid-v0lUB07Hza .block-timeline {
  display: flex;
}
.cid-v0lUB07Hza .image-wrap {
  padding: 0rem;
  padding-right: 2rem;
}
.cid-v0lUB07Hza .mbr-timeline-title {
  color: #000000;
  margin-bottom: 0.9rem;
}
.cid-v0lUB07Hza .inner-date {
  padding: 1rem 1.5rem;
  background-color: #eeeeee;
}
.cid-v0lUB07Hza .date-block {
  margin-right: 0.6rem;
}
.cid-v0lUB07Hza .mbr-date-block {
  margin-bottom: 0rem;
}
.cid-v0lUB07Hza .mbr-timeline-text {
  color: #000000;
  margin-bottom: 1.7rem;
}
.cid-v0lUB07Hza .mbr-timeline-date {
  color: #eeeeee;
  font-weight: 700;
  margin-bottom: 0rem;
}
.cid-v0lUB07Hza .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-v0lUB07Hza .timeline-text-content {
  display: flex;
  background: #eeeeee;
  transition: all 0.4s;
}
.cid-v0lUB07Hza .month-block {
  font-weight: 700;
  color: #000000;
}
.cid-v0lUB07Hza .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-v0lUB07Hza .timeline-element:hover .timeline-text-content {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
}
.cid-v0lUB07Hza .reverse {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-v0lUB07Hza .reverse .timeline-text-content {
  margin-right: 0;
}
.cid-v0lUB07Hza .bottom-date {
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
}
.cid-v0lUB07Hza .mbr-timeline-location {
  margin-bottom: 0rem;
  font-weight: 700;
}
.cid-v0lUB07Hza .location {
  display: flex;
  align-items: center;
}
.cid-v0lUB07Hza .mbr-iconfont {
  font-size: 16px;
  color: #eeeeee;
}
.cid-v0lUB07Hza .iconsBackground {
  margin-right: 0.8rem;
}
.cid-v0lUB07Hza .reverseTimeline {
  display: flex;
  flex-direction: column-reverse;
}
@media (max-width: 767px) {
  .cid-v0lUB07Hza .date-block {
    display: none;
  }
  .cid-v0lUB07Hza .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v0lUB07Hza .image-wrap {
    padding-right: 0rem;
  }
  .cid-v0lUB07Hza .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
  .cid-v0lUB07Hza .block-timeline {
    padding: 0;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-v0lUB07Hza .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v0lUB07Hza .image-wrap {
    padding-right: 0rem;
  }
  .cid-v0lUB07Hza .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-v0lUB07Hza .timeline-text-content {
    padding: 1.9rem;
  }
}
@media (min-width: 767px) {
  .cid-v0lUB07Hza .block-timeline {
    padding: 0;
  }
}
.cid-v0lUB07Hza .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0lUB07Hza .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0lUB07Hza H5 {
  color: #000000;
}
.cid-uXsGNboA2G {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uXsGNboA2G img {
  width: 100%;
  filter: grayscale(0);
}
.cid-uXsGNboA2G .text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}
.cid-uXsGNboA2G .block-timeline {
  display: flex;
}
.cid-uXsGNboA2G .image-wrap {
  padding: 0rem;
  padding-right: 2rem;
}
.cid-uXsGNboA2G .mbr-timeline-title {
  color: #000000;
  margin-bottom: 0.9rem;
}
.cid-uXsGNboA2G .inner-date {
  padding: 1rem 1.5rem;
  background-color: #eeeeee;
}
.cid-uXsGNboA2G .date-block {
  margin-right: 0.6rem;
}
.cid-uXsGNboA2G .mbr-date-block {
  margin-bottom: 0rem;
}
.cid-uXsGNboA2G .mbr-timeline-text {
  color: #000000;
  margin-bottom: 1.7rem;
}
.cid-uXsGNboA2G .mbr-timeline-date {
  color: #eeeeee;
  font-weight: 700;
  margin-bottom: 0rem;
}
.cid-uXsGNboA2G .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-uXsGNboA2G .timeline-text-content {
  display: flex;
  background: #eeeeee;
  transition: all 0.4s;
}
.cid-uXsGNboA2G .month-block {
  font-weight: 700;
  color: #000000;
}
.cid-uXsGNboA2G .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-uXsGNboA2G .timeline-element:hover .timeline-text-content {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
}
.cid-uXsGNboA2G .reverse {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-uXsGNboA2G .reverse .timeline-text-content {
  margin-right: 0;
}
.cid-uXsGNboA2G .bottom-date {
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
}
.cid-uXsGNboA2G .mbr-timeline-location {
  margin-bottom: 0rem;
  font-weight: 700;
}
.cid-uXsGNboA2G .location {
  display: flex;
  align-items: center;
}
.cid-uXsGNboA2G .mbr-iconfont {
  font-size: 16px;
  color: #eeeeee;
}
.cid-uXsGNboA2G .iconsBackground {
  margin-right: 0.8rem;
}
.cid-uXsGNboA2G .reverseTimeline {
  display: flex;
  flex-direction: column-reverse;
}
@media (max-width: 767px) {
  .cid-uXsGNboA2G .date-block {
    display: none;
  }
  .cid-uXsGNboA2G .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-uXsGNboA2G .image-wrap {
    padding-right: 0rem;
  }
  .cid-uXsGNboA2G .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
  .cid-uXsGNboA2G .block-timeline {
    padding: 0;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-uXsGNboA2G .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-uXsGNboA2G .image-wrap {
    padding-right: 0rem;
  }
  .cid-uXsGNboA2G .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uXsGNboA2G .timeline-text-content {
    padding: 1.9rem;
  }
}
@media (min-width: 767px) {
  .cid-uXsGNboA2G .block-timeline {
    padding: 0;
  }
}
.cid-uXsGNboA2G .mbr-fallback-image.disabled {
  display: none;
}
.cid-uXsGNboA2G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uXsGNboA2G H5 {
  color: #000000;
}
.cid-v1ccMH4YRR {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #034d71;
}
.cid-v1ccMH4YRR .mbr-section-subtitle {
  color: #767676;
}
.cid-v1ccMH4YRR H2 {
  color: #ffffff;
}
.cid-v1cd3cd34F {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #034d71;
}
.cid-u6TsCPM1iE {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u6TsCPM1iE .row-links {
  width: 100%;
  justify-content: center;
}
.cid-u6TsCPM1iE .social-row {
  width: 100%;
  justify-content: center;
}
.cid-u6TsCPM1iE .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-u6TsCPM1iE .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u6TsCPM1iE .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u6TsCPM1iE .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u6TsCPM1iE .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-u6TsCPM1iE .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-u6TsCPM1iE .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u6TsCPM1iE .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-u6TsCPM1iE .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u6TsCPM1iE .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u6TsCPM1iE .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-u6TsCPM1iE .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sYFtWODu5B {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sYFtWODu5B nav.navbar {
  position: fixed;
}
.cid-sYFtWODu5B .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-sYFtWODu5B .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sYFtWODu5B .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sYFtWODu5B .dropdown-item:hover,
.cid-sYFtWODu5B .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-sYFtWODu5B .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sYFtWODu5B .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sYFtWODu5B .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sYFtWODu5B .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sYFtWODu5B .nav-link {
  position: relative;
}
.cid-sYFtWODu5B .container {
  display: flex;
  margin: auto;
}
.cid-sYFtWODu5B .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sYFtWODu5B .dropdown-menu,
.cid-sYFtWODu5B .navbar.opened {
  background: #000000 !important;
}
.cid-sYFtWODu5B .nav-item:focus,
.cid-sYFtWODu5B .nav-link:focus {
  outline: none;
}
.cid-sYFtWODu5B .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sYFtWODu5B .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sYFtWODu5B .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sYFtWODu5B .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sYFtWODu5B .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sYFtWODu5B .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sYFtWODu5B .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-sYFtWODu5B .navbar.opened {
  transition: all 0.3s;
}
.cid-sYFtWODu5B .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sYFtWODu5B .navbar .navbar-logo img {
  width: auto;
}
.cid-sYFtWODu5B .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sYFtWODu5B .navbar.collapsed {
  justify-content: center;
}
.cid-sYFtWODu5B .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sYFtWODu5B .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sYFtWODu5B .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-sYFtWODu5B .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sYFtWODu5B .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sYFtWODu5B .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-sYFtWODu5B .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sYFtWODu5B .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sYFtWODu5B .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sYFtWODu5B .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sYFtWODu5B .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sYFtWODu5B .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sYFtWODu5B .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sYFtWODu5B .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-sYFtWODu5B .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sYFtWODu5B .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sYFtWODu5B .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sYFtWODu5B .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sYFtWODu5B .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sYFtWODu5B .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sYFtWODu5B .navbar.navbar-short {
  min-height: 60px;
}
.cid-sYFtWODu5B .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sYFtWODu5B .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sYFtWODu5B .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-sYFtWODu5B .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sYFtWODu5B .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sYFtWODu5B .dropdown-item.active,
.cid-sYFtWODu5B .dropdown-item:active {
  background-color: transparent;
}
.cid-sYFtWODu5B .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sYFtWODu5B .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sYFtWODu5B .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sYFtWODu5B .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-sYFtWODu5B .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sYFtWODu5B ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sYFtWODu5B .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sYFtWODu5B .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sYFtWODu5B button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sYFtWODu5B button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sYFtWODu5B button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sYFtWODu5B button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sYFtWODu5B button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sYFtWODu5B button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sYFtWODu5B nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sYFtWODu5B nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sYFtWODu5B nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sYFtWODu5B nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sYFtWODu5B .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sYFtWODu5B a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sYFtWODu5B .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-sYFtWODu5B .navbar {
    height: 70px;
  }
  .cid-sYFtWODu5B .navbar.opened {
    height: auto;
  }
  .cid-sYFtWODu5B .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sYFtWODu5B .cid-sYmGYy3bVg .dropdown-item {
  border-bottom: 0px Important;
}
.cid-tNHoisg7Tw {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #034d71;
}
.cid-tNHoisg7Tw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNHoisg7Tw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNHoisg7Tw .mbr-iconfont {
  color: #ff526b;
  font-size: 5rem;
  width: 5rem;
  padding-bottom: 5% !important;
}
.cid-tNHoisg7Tw .iconfont-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.cid-tNHoisg7Tw .mbr-section-title {
  color: #ffffff;
}
.cid-tNHoisg7Tw .mbr-section-subtitle,
.cid-tNHoisg7Tw .mbr-section-btn {
  color: #ffffff;
}
.cid-tRC337AvrO {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tRC337AvrO .mbr-section-title {
  font-weight: 900;
  letter-spacing: 0.1em;
}
.cid-tRC337AvrO .mbr-section-subtitle {
  color: #000000;
  letter-spacing: 0.03em;
}
.cid-tRC337AvrO .form-control {
  padding: 8px 15px 8px 15px;
  border-color: #cccccc;
  border-radius: 0px !important;
  background-color: #ffffff;
}
.cid-tRC337AvrO .container-table {
  margin: 0 auto;
}
.cid-tRC337AvrO .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-tRC337AvrO .dataTables_wrapper {
  display: block;
}
.cid-tRC337AvrO .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-tRC337AvrO .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-tRC337AvrO table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-tRC337AvrO table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-tRC337AvrO table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-tRC337AvrO table td {
  border-top: 1px solid #cccccc;
}
.cid-tRC337AvrO table.table {
  background: #ffffff;
}
.cid-tRC337AvrO .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-tRC337AvrO .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-tRC337AvrO .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-tRC337AvrO .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  color: #000000;
}
@media (max-width: 992px) {
  .cid-tRC337AvrO .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-tRC337AvrO .dataTables_filter {
    text-align: center;
  }
  .cid-tRC337AvrO .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-tRC337AvrO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRC337AvrO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRC337AvrO .head-item {
  text-align: left;
}
.cid-tRC337AvrO .body-item {
  text-align: left;
}
.cid-sYFtWPmMyV {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-sYFtWPmMyV .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sYFtWPmMyV .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sYFtWPmMyV .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sYFtWPmMyV .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sYFtWPmMyV .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sYFtWPmMyV .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sYFtWPmMyV .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sYFtWPmMyV .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sYFtWPmMyV .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sYFtWPmMyV .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sYFtWPmMyV .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sYFtWPmMyV .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sYFtWPmMyV .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sYFtWPmMyV .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uXsE0HaPjv {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uXsE0HaPjv nav.navbar {
  position: fixed;
}
.cid-uXsE0HaPjv .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-uXsE0HaPjv .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uXsE0HaPjv .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uXsE0HaPjv .dropdown-item:hover,
.cid-uXsE0HaPjv .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-uXsE0HaPjv .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uXsE0HaPjv .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uXsE0HaPjv .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uXsE0HaPjv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uXsE0HaPjv .nav-link {
  position: relative;
}
.cid-uXsE0HaPjv .container {
  display: flex;
  margin: auto;
}
.cid-uXsE0HaPjv .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uXsE0HaPjv .dropdown-menu,
.cid-uXsE0HaPjv .navbar.opened {
  background: #000000 !important;
}
.cid-uXsE0HaPjv .nav-item:focus,
.cid-uXsE0HaPjv .nav-link:focus {
  outline: none;
}
.cid-uXsE0HaPjv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uXsE0HaPjv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uXsE0HaPjv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uXsE0HaPjv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uXsE0HaPjv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uXsE0HaPjv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uXsE0HaPjv .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uXsE0HaPjv .navbar.opened {
  transition: all 0.3s;
}
.cid-uXsE0HaPjv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uXsE0HaPjv .navbar .navbar-logo img {
  width: auto;
}
.cid-uXsE0HaPjv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uXsE0HaPjv .navbar.collapsed {
  justify-content: center;
}
.cid-uXsE0HaPjv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uXsE0HaPjv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uXsE0HaPjv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-uXsE0HaPjv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uXsE0HaPjv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uXsE0HaPjv .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-uXsE0HaPjv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uXsE0HaPjv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uXsE0HaPjv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uXsE0HaPjv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uXsE0HaPjv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uXsE0HaPjv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uXsE0HaPjv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uXsE0HaPjv .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-uXsE0HaPjv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uXsE0HaPjv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uXsE0HaPjv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uXsE0HaPjv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uXsE0HaPjv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uXsE0HaPjv .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uXsE0HaPjv .navbar.navbar-short {
  min-height: 60px;
}
.cid-uXsE0HaPjv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uXsE0HaPjv .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uXsE0HaPjv .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-uXsE0HaPjv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uXsE0HaPjv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uXsE0HaPjv .dropdown-item.active,
.cid-uXsE0HaPjv .dropdown-item:active {
  background-color: transparent;
}
.cid-uXsE0HaPjv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uXsE0HaPjv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uXsE0HaPjv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uXsE0HaPjv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uXsE0HaPjv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uXsE0HaPjv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uXsE0HaPjv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uXsE0HaPjv .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uXsE0HaPjv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uXsE0HaPjv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uXsE0HaPjv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uXsE0HaPjv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uXsE0HaPjv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uXsE0HaPjv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uXsE0HaPjv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uXsE0HaPjv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uXsE0HaPjv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uXsE0HaPjv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uXsE0HaPjv .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uXsE0HaPjv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uXsE0HaPjv .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-uXsE0HaPjv .navbar {
    height: 70px;
  }
  .cid-uXsE0HaPjv .navbar.opened {
    height: auto;
  }
  .cid-uXsE0HaPjv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uXsE0HaPjv .cid-sYmGYy3bVg .dropdown-item {
  border-bottom: 0px Important;
}
.cid-uXsE0Hz79b {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #034d71;
}
.cid-uXsE0Hz79b .mbr-fallback-image.disabled {
  display: none;
}
.cid-uXsE0Hz79b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uXsE0Hz79b .mbr-iconfont {
  color: #ff526b;
  font-size: 5rem;
  width: 5rem;
  padding-bottom: 5% !important;
}
.cid-uXsE0Hz79b .iconfont-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.cid-uXsE0Hz79b .mbr-section-title {
  color: #ffffff;
}
.cid-uXsE0Hz79b .mbr-section-subtitle,
.cid-uXsE0Hz79b .mbr-section-btn {
  color: #ffffff;
}
.cid-uXsE0JgGWB {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uXsE0JgGWB .mbr-section-title {
  font-weight: 900;
  letter-spacing: 0.1em;
}
.cid-uXsE0JgGWB .mbr-section-subtitle {
  color: #000000;
  letter-spacing: 0.03em;
}
.cid-uXsE0JgGWB .form-control {
  padding: 8px 15px 8px 15px;
  border-color: #cccccc;
  border-radius: 0px !important;
  background-color: #ffffff;
}
.cid-uXsE0JgGWB .container-table {
  margin: 0 auto;
}
.cid-uXsE0JgGWB .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uXsE0JgGWB .dataTables_wrapper {
  display: block;
}
.cid-uXsE0JgGWB .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-uXsE0JgGWB .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uXsE0JgGWB table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-uXsE0JgGWB table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-uXsE0JgGWB table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-uXsE0JgGWB table td {
  border-top: 1px solid #cccccc;
}
.cid-uXsE0JgGWB table.table {
  background: #ffffff;
}
.cid-uXsE0JgGWB .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-uXsE0JgGWB .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uXsE0JgGWB .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-uXsE0JgGWB .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  color: #000000;
}
@media (max-width: 992px) {
  .cid-uXsE0JgGWB .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-uXsE0JgGWB .dataTables_filter {
    text-align: center;
  }
  .cid-uXsE0JgGWB .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-uXsE0JgGWB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uXsE0JgGWB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uXsE0JgGWB .head-item {
  text-align: left;
}
.cid-uXsE0JgGWB .body-item {
  text-align: left;
}
.cid-uXsE0KNSBn {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uXsE0KNSBn .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uXsE0KNSBn .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uXsE0KNSBn .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uXsE0KNSBn .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uXsE0KNSBn .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uXsE0KNSBn .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uXsE0KNSBn .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uXsE0KNSBn .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uXsE0KNSBn .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uXsE0KNSBn .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uXsE0KNSBn .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uXsE0KNSBn .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uXsE0KNSBn .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uXsE0KNSBn .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v1cbHUR0pF {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v1cbHUR0pF nav.navbar {
  position: fixed;
}
.cid-v1cbHUR0pF .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-v1cbHUR0pF .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v1cbHUR0pF .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v1cbHUR0pF .dropdown-item:hover,
.cid-v1cbHUR0pF .dropdown-item:focus {
  background: #22a5e5 !important;
  color: white !important;
}
.cid-v1cbHUR0pF .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v1cbHUR0pF .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v1cbHUR0pF .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v1cbHUR0pF .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v1cbHUR0pF .nav-link {
  position: relative;
}
.cid-v1cbHUR0pF .container {
  display: flex;
  margin: auto;
}
.cid-v1cbHUR0pF .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v1cbHUR0pF .dropdown-menu,
.cid-v1cbHUR0pF .navbar.opened {
  background: #000000 !important;
}
.cid-v1cbHUR0pF .nav-item:focus,
.cid-v1cbHUR0pF .nav-link:focus {
  outline: none;
}
.cid-v1cbHUR0pF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v1cbHUR0pF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v1cbHUR0pF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v1cbHUR0pF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v1cbHUR0pF .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v1cbHUR0pF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v1cbHUR0pF .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-v1cbHUR0pF .navbar.opened {
  transition: all 0.3s;
}
.cid-v1cbHUR0pF .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v1cbHUR0pF .navbar .navbar-logo img {
  width: auto;
}
.cid-v1cbHUR0pF .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v1cbHUR0pF .navbar.collapsed {
  justify-content: center;
}
.cid-v1cbHUR0pF .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v1cbHUR0pF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v1cbHUR0pF .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-v1cbHUR0pF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v1cbHUR0pF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v1cbHUR0pF .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-v1cbHUR0pF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v1cbHUR0pF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v1cbHUR0pF .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v1cbHUR0pF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v1cbHUR0pF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v1cbHUR0pF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v1cbHUR0pF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v1cbHUR0pF .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-v1cbHUR0pF .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v1cbHUR0pF .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v1cbHUR0pF .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v1cbHUR0pF .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v1cbHUR0pF .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v1cbHUR0pF .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v1cbHUR0pF .navbar.navbar-short {
  min-height: 60px;
}
.cid-v1cbHUR0pF .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v1cbHUR0pF .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v1cbHUR0pF .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-v1cbHUR0pF .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v1cbHUR0pF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v1cbHUR0pF .dropdown-item.active,
.cid-v1cbHUR0pF .dropdown-item:active {
  background-color: transparent;
}
.cid-v1cbHUR0pF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v1cbHUR0pF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v1cbHUR0pF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v1cbHUR0pF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-v1cbHUR0pF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v1cbHUR0pF ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v1cbHUR0pF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v1cbHUR0pF .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v1cbHUR0pF button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v1cbHUR0pF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v1cbHUR0pF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v1cbHUR0pF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v1cbHUR0pF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v1cbHUR0pF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v1cbHUR0pF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v1cbHUR0pF nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v1cbHUR0pF nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v1cbHUR0pF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v1cbHUR0pF .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v1cbHUR0pF a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v1cbHUR0pF .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-v1cbHUR0pF .navbar {
    height: 70px;
  }
  .cid-v1cbHUR0pF .navbar.opened {
    height: auto;
  }
  .cid-v1cbHUR0pF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v1cbHUR0pF .cid-sYmGYy3bVg .dropdown-item {
  border-bottom: 0px Important;
}
.cid-v1cbHYLzb4 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v1cbHYLzb4 img {
  width: 100%;
  filter: grayscale(0);
}
.cid-v1cbHYLzb4 .text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}
.cid-v1cbHYLzb4 .block-timeline {
  display: flex;
}
.cid-v1cbHYLzb4 .image-wrap {
  padding: 0rem;
  padding-right: 2rem;
}
.cid-v1cbHYLzb4 .mbr-timeline-title {
  color: #000000;
  margin-bottom: 0.9rem;
}
.cid-v1cbHYLzb4 .inner-date {
  padding: 1rem 1.5rem;
  background-color: #eeeeee;
}
.cid-v1cbHYLzb4 .date-block {
  margin-right: 0.6rem;
}
.cid-v1cbHYLzb4 .mbr-date-block {
  margin-bottom: 0rem;
}
.cid-v1cbHYLzb4 .mbr-timeline-text {
  color: #000000;
  margin-bottom: 1.7rem;
}
.cid-v1cbHYLzb4 .mbr-timeline-date {
  color: #eeeeee;
  font-weight: 700;
  margin-bottom: 0rem;
}
.cid-v1cbHYLzb4 .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-v1cbHYLzb4 .timeline-text-content {
  display: flex;
  background: #eeeeee;
  transition: all 0.4s;
}
.cid-v1cbHYLzb4 .month-block {
  font-weight: 700;
  color: #000000;
}
.cid-v1cbHYLzb4 .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-v1cbHYLzb4 .timeline-element:hover .timeline-text-content {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
}
.cid-v1cbHYLzb4 .reverse {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-v1cbHYLzb4 .reverse .timeline-text-content {
  margin-right: 0;
}
.cid-v1cbHYLzb4 .bottom-date {
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
}
.cid-v1cbHYLzb4 .mbr-timeline-location {
  margin-bottom: 0rem;
  font-weight: 700;
}
.cid-v1cbHYLzb4 .location {
  display: flex;
  align-items: center;
}
.cid-v1cbHYLzb4 .mbr-iconfont {
  font-size: 16px;
  color: #eeeeee;
}
.cid-v1cbHYLzb4 .iconsBackground {
  margin-right: 0.8rem;
}
.cid-v1cbHYLzb4 .reverseTimeline {
  display: flex;
  flex-direction: column-reverse;
}
@media (max-width: 767px) {
  .cid-v1cbHYLzb4 .date-block {
    display: none;
  }
  .cid-v1cbHYLzb4 .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v1cbHYLzb4 .image-wrap {
    padding-right: 0rem;
  }
  .cid-v1cbHYLzb4 .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
  .cid-v1cbHYLzb4 .block-timeline {
    padding: 0;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-v1cbHYLzb4 .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v1cbHYLzb4 .image-wrap {
    padding-right: 0rem;
  }
  .cid-v1cbHYLzb4 .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-v1cbHYLzb4 .timeline-text-content {
    padding: 1.9rem;
  }
}
@media (min-width: 767px) {
  .cid-v1cbHYLzb4 .block-timeline {
    padding: 0;
  }
}
.cid-v1cbHYLzb4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1cbHYLzb4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1cbHYLzb4 H5 {
  color: #000000;
}
.cid-v1cbHZTel9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v1cbHZTel9 img {
  width: 100%;
  filter: grayscale(0);
}
.cid-v1cbHZTel9 .text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}
.cid-v1cbHZTel9 .block-timeline {
  display: flex;
}
.cid-v1cbHZTel9 .image-wrap {
  padding: 0rem;
  padding-right: 2rem;
}
.cid-v1cbHZTel9 .mbr-timeline-title {
  color: #000000;
  margin-bottom: 0.9rem;
}
.cid-v1cbHZTel9 .inner-date {
  padding: 1rem 1.5rem;
  background-color: #eeeeee;
}
.cid-v1cbHZTel9 .date-block {
  margin-right: 0.6rem;
}
.cid-v1cbHZTel9 .mbr-date-block {
  margin-bottom: 0rem;
}
.cid-v1cbHZTel9 .mbr-timeline-text {
  color: #000000;
  margin-bottom: 1.7rem;
}
.cid-v1cbHZTel9 .mbr-timeline-date {
  color: #eeeeee;
  font-weight: 700;
  margin-bottom: 0rem;
}
.cid-v1cbHZTel9 .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-v1cbHZTel9 .timeline-text-content {
  display: flex;
  background: #eeeeee;
  transition: all 0.4s;
}
.cid-v1cbHZTel9 .month-block {
  font-weight: 700;
  color: #000000;
}
.cid-v1cbHZTel9 .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-v1cbHZTel9 .timeline-element:hover .timeline-text-content {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
}
.cid-v1cbHZTel9 .reverse {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-v1cbHZTel9 .reverse .timeline-text-content {
  margin-right: 0;
}
.cid-v1cbHZTel9 .bottom-date {
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
}
.cid-v1cbHZTel9 .mbr-timeline-location {
  margin-bottom: 0rem;
  font-weight: 700;
}
.cid-v1cbHZTel9 .location {
  display: flex;
  align-items: center;
}
.cid-v1cbHZTel9 .mbr-iconfont {
  font-size: 16px;
  color: #eeeeee;
}
.cid-v1cbHZTel9 .iconsBackground {
  margin-right: 0.8rem;
}
.cid-v1cbHZTel9 .reverseTimeline {
  display: flex;
  flex-direction: column-reverse;
}
@media (max-width: 767px) {
  .cid-v1cbHZTel9 .date-block {
    display: none;
  }
  .cid-v1cbHZTel9 .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v1cbHZTel9 .image-wrap {
    padding-right: 0rem;
  }
  .cid-v1cbHZTel9 .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
  .cid-v1cbHZTel9 .block-timeline {
    padding: 0;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-v1cbHZTel9 .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v1cbHZTel9 .image-wrap {
    padding-right: 0rem;
  }
  .cid-v1cbHZTel9 .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-v1cbHZTel9 .timeline-text-content {
    padding: 1.9rem;
  }
}
@media (min-width: 767px) {
  .cid-v1cbHZTel9 .block-timeline {
    padding: 0;
  }
}
.cid-v1cbHZTel9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1cbHZTel9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1cbHZTel9 H5 {
  color: #000000;
}
.cid-v1cbI13Arp {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v1cbI13Arp img {
  width: 100%;
  filter: grayscale(0);
}
.cid-v1cbI13Arp .text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}
.cid-v1cbI13Arp .block-timeline {
  display: flex;
}
.cid-v1cbI13Arp .image-wrap {
  padding: 0rem;
  padding-right: 2rem;
}
.cid-v1cbI13Arp .mbr-timeline-title {
  color: #000000;
  margin-bottom: 0.9rem;
}
.cid-v1cbI13Arp .inner-date {
  padding: 1rem 1.5rem;
  background-color: #eeeeee;
}
.cid-v1cbI13Arp .date-block {
  margin-right: 0.6rem;
}
.cid-v1cbI13Arp .mbr-date-block {
  margin-bottom: 0rem;
}
.cid-v1cbI13Arp .mbr-timeline-text {
  color: #000000;
  margin-bottom: 1.7rem;
}
.cid-v1cbI13Arp .mbr-timeline-date {
  color: #eeeeee;
  font-weight: 700;
  margin-bottom: 0rem;
}
.cid-v1cbI13Arp .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-v1cbI13Arp .timeline-text-content {
  display: flex;
  background: #eeeeee;
  transition: all 0.4s;
}
.cid-v1cbI13Arp .month-block {
  font-weight: 700;
  color: #000000;
}
.cid-v1cbI13Arp .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-v1cbI13Arp .timeline-element:hover .timeline-text-content {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
}
.cid-v1cbI13Arp .reverse {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-v1cbI13Arp .reverse .timeline-text-content {
  margin-right: 0;
}
.cid-v1cbI13Arp .bottom-date {
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
}
.cid-v1cbI13Arp .mbr-timeline-location {
  margin-bottom: 0rem;
  font-weight: 700;
}
.cid-v1cbI13Arp .location {
  display: flex;
  align-items: center;
}
.cid-v1cbI13Arp .mbr-iconfont {
  font-size: 16px;
  color: #eeeeee;
}
.cid-v1cbI13Arp .iconsBackground {
  margin-right: 0.8rem;
}
.cid-v1cbI13Arp .reverseTimeline {
  display: flex;
  flex-direction: column-reverse;
}
@media (max-width: 767px) {
  .cid-v1cbI13Arp .date-block {
    display: none;
  }
  .cid-v1cbI13Arp .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v1cbI13Arp .image-wrap {
    padding-right: 0rem;
  }
  .cid-v1cbI13Arp .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
  .cid-v1cbI13Arp .block-timeline {
    padding: 0;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-v1cbI13Arp .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v1cbI13Arp .image-wrap {
    padding-right: 0rem;
  }
  .cid-v1cbI13Arp .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-v1cbI13Arp .timeline-text-content {
    padding: 1.9rem;
  }
}
@media (min-width: 767px) {
  .cid-v1cbI13Arp .block-timeline {
    padding: 0;
  }
}
.cid-v1cbI13Arp .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1cbI13Arp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1cbI13Arp H5 {
  color: #000000;
}
.cid-v1cbI2gjoM {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v1cbI2gjoM img {
  width: 100%;
  filter: grayscale(0);
}
.cid-v1cbI2gjoM .text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}
.cid-v1cbI2gjoM .block-timeline {
  display: flex;
}
.cid-v1cbI2gjoM .image-wrap {
  padding: 0rem;
  padding-right: 2rem;
}
.cid-v1cbI2gjoM .mbr-timeline-title {
  color: #000000;
  margin-bottom: 0.9rem;
}
.cid-v1cbI2gjoM .inner-date {
  padding: 1rem 1.5rem;
  background-color: #eeeeee;
}
.cid-v1cbI2gjoM .date-block {
  margin-right: 0.6rem;
}
.cid-v1cbI2gjoM .mbr-date-block {
  margin-bottom: 0rem;
}
.cid-v1cbI2gjoM .mbr-timeline-text {
  color: #000000;
  margin-bottom: 1.7rem;
}
.cid-v1cbI2gjoM .mbr-timeline-date {
  color: #eeeeee;
  font-weight: 700;
  margin-bottom: 0rem;
}
.cid-v1cbI2gjoM .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-v1cbI2gjoM .timeline-text-content {
  display: flex;
  background: #eeeeee;
  transition: all 0.4s;
}
.cid-v1cbI2gjoM .month-block {
  font-weight: 700;
  color: #000000;
}
.cid-v1cbI2gjoM .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-v1cbI2gjoM .timeline-element:hover .timeline-text-content {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
}
.cid-v1cbI2gjoM .reverse {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-v1cbI2gjoM .reverse .timeline-text-content {
  margin-right: 0;
}
.cid-v1cbI2gjoM .bottom-date {
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
}
.cid-v1cbI2gjoM .mbr-timeline-location {
  margin-bottom: 0rem;
  font-weight: 700;
}
.cid-v1cbI2gjoM .location {
  display: flex;
  align-items: center;
}
.cid-v1cbI2gjoM .mbr-iconfont {
  font-size: 16px;
  color: #eeeeee;
}
.cid-v1cbI2gjoM .iconsBackground {
  margin-right: 0.8rem;
}
.cid-v1cbI2gjoM .reverseTimeline {
  display: flex;
  flex-direction: column-reverse;
}
@media (max-width: 767px) {
  .cid-v1cbI2gjoM .date-block {
    display: none;
  }
  .cid-v1cbI2gjoM .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v1cbI2gjoM .image-wrap {
    padding-right: 0rem;
  }
  .cid-v1cbI2gjoM .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
  .cid-v1cbI2gjoM .block-timeline {
    padding: 0;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-v1cbI2gjoM .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v1cbI2gjoM .image-wrap {
    padding-right: 0rem;
  }
  .cid-v1cbI2gjoM .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-v1cbI2gjoM .timeline-text-content {
    padding: 1.9rem;
  }
}
@media (min-width: 767px) {
  .cid-v1cbI2gjoM .block-timeline {
    padding: 0;
  }
}
.cid-v1cbI2gjoM .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1cbI2gjoM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1cbI2gjoM H5 {
  color: #000000;
}
.cid-v1cbI3vvlg {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v1cbI3vvlg img {
  width: 100%;
  filter: grayscale(0);
}
.cid-v1cbI3vvlg .text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}
.cid-v1cbI3vvlg .block-timeline {
  display: flex;
}
.cid-v1cbI3vvlg .image-wrap {
  padding: 0rem;
  padding-right: 2rem;
}
.cid-v1cbI3vvlg .mbr-timeline-title {
  color: #000000;
  margin-bottom: 0.9rem;
}
.cid-v1cbI3vvlg .inner-date {
  padding: 1rem 1.5rem;
  background-color: #eeeeee;
}
.cid-v1cbI3vvlg .date-block {
  margin-right: 0.6rem;
}
.cid-v1cbI3vvlg .mbr-date-block {
  margin-bottom: 0rem;
}
.cid-v1cbI3vvlg .mbr-timeline-text {
  color: #000000;
  margin-bottom: 1.7rem;
}
.cid-v1cbI3vvlg .mbr-timeline-date {
  color: #eeeeee;
  font-weight: 700;
  margin-bottom: 0rem;
}
.cid-v1cbI3vvlg .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-v1cbI3vvlg .timeline-text-content {
  display: flex;
  background: #eeeeee;
  transition: all 0.4s;
}
.cid-v1cbI3vvlg .month-block {
  font-weight: 700;
  color: #000000;
}
.cid-v1cbI3vvlg .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-v1cbI3vvlg .timeline-element:hover .timeline-text-content {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
}
.cid-v1cbI3vvlg .reverse {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-v1cbI3vvlg .reverse .timeline-text-content {
  margin-right: 0;
}
.cid-v1cbI3vvlg .bottom-date {
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
}
.cid-v1cbI3vvlg .mbr-timeline-location {
  margin-bottom: 0rem;
  font-weight: 700;
}
.cid-v1cbI3vvlg .location {
  display: flex;
  align-items: center;
}
.cid-v1cbI3vvlg .mbr-iconfont {
  font-size: 16px;
  color: #eeeeee;
}
.cid-v1cbI3vvlg .iconsBackground {
  margin-right: 0.8rem;
}
.cid-v1cbI3vvlg .reverseTimeline {
  display: flex;
  flex-direction: column-reverse;
}
@media (max-width: 767px) {
  .cid-v1cbI3vvlg .date-block {
    display: none;
  }
  .cid-v1cbI3vvlg .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v1cbI3vvlg .image-wrap {
    padding-right: 0rem;
  }
  .cid-v1cbI3vvlg .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
  .cid-v1cbI3vvlg .block-timeline {
    padding: 0;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-v1cbI3vvlg .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v1cbI3vvlg .image-wrap {
    padding-right: 0rem;
  }
  .cid-v1cbI3vvlg .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-v1cbI3vvlg .timeline-text-content {
    padding: 1.9rem;
  }
}
@media (min-width: 767px) {
  .cid-v1cbI3vvlg .block-timeline {
    padding: 0;
  }
}
.cid-v1cbI3vvlg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1cbI3vvlg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1cbI3vvlg H5 {
  color: #000000;
}
.cid-v1cbI4LglX {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v1cbI4LglX img {
  width: 100%;
  filter: grayscale(0);
}
.cid-v1cbI4LglX .text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}
.cid-v1cbI4LglX .block-timeline {
  display: flex;
}
.cid-v1cbI4LglX .image-wrap {
  padding: 0rem;
  padding-right: 2rem;
}
.cid-v1cbI4LglX .mbr-timeline-title {
  color: #000000;
  margin-bottom: 0.9rem;
}
.cid-v1cbI4LglX .inner-date {
  padding: 1rem 1.5rem;
  background-color: #eeeeee;
}
.cid-v1cbI4LglX .date-block {
  margin-right: 0.6rem;
}
.cid-v1cbI4LglX .mbr-date-block {
  margin-bottom: 0rem;
}
.cid-v1cbI4LglX .mbr-timeline-text {
  color: #000000;
  margin-bottom: 1.7rem;
}
.cid-v1cbI4LglX .mbr-timeline-date {
  color: #eeeeee;
  font-weight: 700;
  margin-bottom: 0rem;
}
.cid-v1cbI4LglX .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-v1cbI4LglX .timeline-text-content {
  display: flex;
  background: #eeeeee;
  transition: all 0.4s;
}
.cid-v1cbI4LglX .month-block {
  font-weight: 700;
  color: #000000;
}
.cid-v1cbI4LglX .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-v1cbI4LglX .timeline-element:hover .timeline-text-content {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
}
.cid-v1cbI4LglX .reverse {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-v1cbI4LglX .reverse .timeline-text-content {
  margin-right: 0;
}
.cid-v1cbI4LglX .bottom-date {
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
}
.cid-v1cbI4LglX .mbr-timeline-location {
  margin-bottom: 0rem;
  font-weight: 700;
}
.cid-v1cbI4LglX .location {
  display: flex;
  align-items: center;
}
.cid-v1cbI4LglX .mbr-iconfont {
  font-size: 16px;
  color: #eeeeee;
}
.cid-v1cbI4LglX .iconsBackground {
  margin-right: 0.8rem;
}
.cid-v1cbI4LglX .reverseTimeline {
  display: flex;
  flex-direction: column-reverse;
}
@media (max-width: 767px) {
  .cid-v1cbI4LglX .date-block {
    display: none;
  }
  .cid-v1cbI4LglX .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v1cbI4LglX .image-wrap {
    padding-right: 0rem;
  }
  .cid-v1cbI4LglX .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
  .cid-v1cbI4LglX .block-timeline {
    padding: 0;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-v1cbI4LglX .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v1cbI4LglX .image-wrap {
    padding-right: 0rem;
  }
  .cid-v1cbI4LglX .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-v1cbI4LglX .timeline-text-content {
    padding: 1.9rem;
  }
}
@media (min-width: 767px) {
  .cid-v1cbI4LglX .block-timeline {
    padding: 0;
  }
}
.cid-v1cbI4LglX .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1cbI4LglX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1cbI4LglX H5 {
  color: #000000;
}
.cid-v1cbI63HBP {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v1cbI63HBP img {
  width: 100%;
  filter: grayscale(0);
}
.cid-v1cbI63HBP .text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}
.cid-v1cbI63HBP .block-timeline {
  display: flex;
}
.cid-v1cbI63HBP .image-wrap {
  padding: 0rem;
  padding-right: 2rem;
}
.cid-v1cbI63HBP .mbr-timeline-title {
  color: #000000;
  margin-bottom: 0.9rem;
}
.cid-v1cbI63HBP .inner-date {
  padding: 1rem 1.5rem;
  background-color: #eeeeee;
}
.cid-v1cbI63HBP .date-block {
  margin-right: 0.6rem;
}
.cid-v1cbI63HBP .mbr-date-block {
  margin-bottom: 0rem;
}
.cid-v1cbI63HBP .mbr-timeline-text {
  color: #000000;
  margin-bottom: 1.7rem;
}
.cid-v1cbI63HBP .mbr-timeline-date {
  color: #eeeeee;
  font-weight: 700;
  margin-bottom: 0rem;
}
.cid-v1cbI63HBP .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-v1cbI63HBP .timeline-text-content {
  display: flex;
  background: #eeeeee;
  transition: all 0.4s;
}
.cid-v1cbI63HBP .month-block {
  font-weight: 700;
  color: #000000;
}
.cid-v1cbI63HBP .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-v1cbI63HBP .timeline-element:hover .timeline-text-content {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
}
.cid-v1cbI63HBP .reverse {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-v1cbI63HBP .reverse .timeline-text-content {
  margin-right: 0;
}
.cid-v1cbI63HBP .bottom-date {
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
}
.cid-v1cbI63HBP .mbr-timeline-location {
  margin-bottom: 0rem;
  font-weight: 700;
}
.cid-v1cbI63HBP .location {
  display: flex;
  align-items: center;
}
.cid-v1cbI63HBP .mbr-iconfont {
  font-size: 16px;
  color: #eeeeee;
}
.cid-v1cbI63HBP .iconsBackground {
  margin-right: 0.8rem;
}
.cid-v1cbI63HBP .reverseTimeline {
  display: flex;
  flex-direction: column-reverse;
}
@media (max-width: 767px) {
  .cid-v1cbI63HBP .date-block {
    display: none;
  }
  .cid-v1cbI63HBP .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v1cbI63HBP .image-wrap {
    padding-right: 0rem;
  }
  .cid-v1cbI63HBP .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
  .cid-v1cbI63HBP .block-timeline {
    padding: 0;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-v1cbI63HBP .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v1cbI63HBP .image-wrap {
    padding-right: 0rem;
  }
  .cid-v1cbI63HBP .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-v1cbI63HBP .timeline-text-content {
    padding: 1.9rem;
  }
}
@media (min-width: 767px) {
  .cid-v1cbI63HBP .block-timeline {
    padding: 0;
  }
}
.cid-v1cbI63HBP .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1cbI63HBP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1cbI63HBP H5 {
  color: #000000;
}
.cid-v1cbI7mcn6 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v1cbI7mcn6 img {
  width: 100%;
  filter: grayscale(0);
}
.cid-v1cbI7mcn6 .text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}
.cid-v1cbI7mcn6 .block-timeline {
  display: flex;
}
.cid-v1cbI7mcn6 .image-wrap {
  padding: 0rem;
  padding-right: 2rem;
}
.cid-v1cbI7mcn6 .mbr-timeline-title {
  color: #000000;
  margin-bottom: 0.9rem;
}
.cid-v1cbI7mcn6 .inner-date {
  padding: 1rem 1.5rem;
  background-color: #eeeeee;
}
.cid-v1cbI7mcn6 .date-block {
  margin-right: 0.6rem;
}
.cid-v1cbI7mcn6 .mbr-date-block {
  margin-bottom: 0rem;
}
.cid-v1cbI7mcn6 .mbr-timeline-text {
  color: #000000;
  margin-bottom: 1.7rem;
}
.cid-v1cbI7mcn6 .mbr-timeline-date {
  color: #eeeeee;
  font-weight: 700;
  margin-bottom: 0rem;
}
.cid-v1cbI7mcn6 .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-v1cbI7mcn6 .timeline-text-content {
  display: flex;
  background: #eeeeee;
  transition: all 0.4s;
}
.cid-v1cbI7mcn6 .month-block {
  font-weight: 700;
  color: #000000;
}
.cid-v1cbI7mcn6 .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-v1cbI7mcn6 .timeline-element:hover .timeline-text-content {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
}
.cid-v1cbI7mcn6 .reverse {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-v1cbI7mcn6 .reverse .timeline-text-content {
  margin-right: 0;
}
.cid-v1cbI7mcn6 .bottom-date {
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
}
.cid-v1cbI7mcn6 .mbr-timeline-location {
  margin-bottom: 0rem;
  font-weight: 700;
}
.cid-v1cbI7mcn6 .location {
  display: flex;
  align-items: center;
}
.cid-v1cbI7mcn6 .mbr-iconfont {
  font-size: 16px;
  color: #eeeeee;
}
.cid-v1cbI7mcn6 .iconsBackground {
  margin-right: 0.8rem;
}
.cid-v1cbI7mcn6 .reverseTimeline {
  display: flex;
  flex-direction: column-reverse;
}
@media (max-width: 767px) {
  .cid-v1cbI7mcn6 .date-block {
    display: none;
  }
  .cid-v1cbI7mcn6 .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v1cbI7mcn6 .image-wrap {
    padding-right: 0rem;
  }
  .cid-v1cbI7mcn6 .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
  .cid-v1cbI7mcn6 .block-timeline {
    padding: 0;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-v1cbI7mcn6 .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v1cbI7mcn6 .image-wrap {
    padding-right: 0rem;
  }
  .cid-v1cbI7mcn6 .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-v1cbI7mcn6 .timeline-text-content {
    padding: 1.9rem;
  }
}
@media (min-width: 767px) {
  .cid-v1cbI7mcn6 .block-timeline {
    padding: 0;
  }
}
.cid-v1cbI7mcn6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1cbI7mcn6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1cbI7mcn6 H5 {
  color: #000000;
}
.cid-v1cbI9aKOi {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v1cbI9aKOi img {
  width: 100%;
  filter: grayscale(0);
}
.cid-v1cbI9aKOi .text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}
.cid-v1cbI9aKOi .block-timeline {
  display: flex;
}
.cid-v1cbI9aKOi .image-wrap {
  padding: 0rem;
  padding-right: 2rem;
}
.cid-v1cbI9aKOi .mbr-timeline-title {
  color: #000000;
  margin-bottom: 0.9rem;
}
.cid-v1cbI9aKOi .inner-date {
  padding: 1rem 1.5rem;
  background-color: #eeeeee;
}
.cid-v1cbI9aKOi .date-block {
  margin-right: 0.6rem;
}
.cid-v1cbI9aKOi .mbr-date-block {
  margin-bottom: 0rem;
}
.cid-v1cbI9aKOi .mbr-timeline-text {
  color: #000000;
  margin-bottom: 1.7rem;
}
.cid-v1cbI9aKOi .mbr-timeline-date {
  color: #eeeeee;
  font-weight: 700;
  margin-bottom: 0rem;
}
.cid-v1cbI9aKOi .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-v1cbI9aKOi .timeline-text-content {
  display: flex;
  background: #eeeeee;
  transition: all 0.4s;
}
.cid-v1cbI9aKOi .month-block {
  font-weight: 700;
  color: #000000;
}
.cid-v1cbI9aKOi .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-v1cbI9aKOi .timeline-element:hover .timeline-text-content {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
}
.cid-v1cbI9aKOi .reverse {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-v1cbI9aKOi .reverse .timeline-text-content {
  margin-right: 0;
}
.cid-v1cbI9aKOi .bottom-date {
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
}
.cid-v1cbI9aKOi .mbr-timeline-location {
  margin-bottom: 0rem;
  font-weight: 700;
}
.cid-v1cbI9aKOi .location {
  display: flex;
  align-items: center;
}
.cid-v1cbI9aKOi .mbr-iconfont {
  font-size: 16px;
  color: #eeeeee;
}
.cid-v1cbI9aKOi .iconsBackground {
  margin-right: 0.8rem;
}
.cid-v1cbI9aKOi .reverseTimeline {
  display: flex;
  flex-direction: column-reverse;
}
@media (max-width: 767px) {
  .cid-v1cbI9aKOi .date-block {
    display: none;
  }
  .cid-v1cbI9aKOi .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v1cbI9aKOi .image-wrap {
    padding-right: 0rem;
  }
  .cid-v1cbI9aKOi .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
  .cid-v1cbI9aKOi .block-timeline {
    padding: 0;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-v1cbI9aKOi .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v1cbI9aKOi .image-wrap {
    padding-right: 0rem;
  }
  .cid-v1cbI9aKOi .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-v1cbI9aKOi .timeline-text-content {
    padding: 1.9rem;
  }
}
@media (min-width: 767px) {
  .cid-v1cbI9aKOi .block-timeline {
    padding: 0;
  }
}
.cid-v1cbI9aKOi .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1cbI9aKOi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1cbI9aKOi H5 {
  color: #000000;
}
.cid-v1cbIaV4AQ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v1cbIaV4AQ img {
  width: 100%;
  filter: grayscale(0);
}
.cid-v1cbIaV4AQ .text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}
.cid-v1cbIaV4AQ .block-timeline {
  display: flex;
}
.cid-v1cbIaV4AQ .image-wrap {
  padding: 0rem;
  padding-right: 2rem;
}
.cid-v1cbIaV4AQ .mbr-timeline-title {
  color: #000000;
  margin-bottom: 0.9rem;
}
.cid-v1cbIaV4AQ .inner-date {
  padding: 1rem 1.5rem;
  background-color: #eeeeee;
}
.cid-v1cbIaV4AQ .date-block {
  margin-right: 0.6rem;
}
.cid-v1cbIaV4AQ .mbr-date-block {
  margin-bottom: 0rem;
}
.cid-v1cbIaV4AQ .mbr-timeline-text {
  color: #000000;
  margin-bottom: 1.7rem;
}
.cid-v1cbIaV4AQ .mbr-timeline-date {
  color: #eeeeee;
  font-weight: 700;
  margin-bottom: 0rem;
}
.cid-v1cbIaV4AQ .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-v1cbIaV4AQ .timeline-text-content {
  display: flex;
  background: #eeeeee;
  transition: all 0.4s;
}
.cid-v1cbIaV4AQ .month-block {
  font-weight: 700;
  color: #000000;
}
.cid-v1cbIaV4AQ .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-v1cbIaV4AQ .timeline-element:hover .timeline-text-content {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
}
.cid-v1cbIaV4AQ .reverse {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-v1cbIaV4AQ .reverse .timeline-text-content {
  margin-right: 0;
}
.cid-v1cbIaV4AQ .bottom-date {
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
}
.cid-v1cbIaV4AQ .mbr-timeline-location {
  margin-bottom: 0rem;
  font-weight: 700;
}
.cid-v1cbIaV4AQ .location {
  display: flex;
  align-items: center;
}
.cid-v1cbIaV4AQ .mbr-iconfont {
  font-size: 16px;
  color: #eeeeee;
}
.cid-v1cbIaV4AQ .iconsBackground {
  margin-right: 0.8rem;
}
.cid-v1cbIaV4AQ .reverseTimeline {
  display: flex;
  flex-direction: column-reverse;
}
@media (max-width: 767px) {
  .cid-v1cbIaV4AQ .date-block {
    display: none;
  }
  .cid-v1cbIaV4AQ .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v1cbIaV4AQ .image-wrap {
    padding-right: 0rem;
  }
  .cid-v1cbIaV4AQ .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
  .cid-v1cbIaV4AQ .block-timeline {
    padding: 0;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-v1cbIaV4AQ .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v1cbIaV4AQ .image-wrap {
    padding-right: 0rem;
  }
  .cid-v1cbIaV4AQ .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-v1cbIaV4AQ .timeline-text-content {
    padding: 1.9rem;
  }
}
@media (min-width: 767px) {
  .cid-v1cbIaV4AQ .block-timeline {
    padding: 0;
  }
}
.cid-v1cbIaV4AQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1cbIaV4AQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1cbIaV4AQ H5 {
  color: #000000;
}
.cid-v1cbIcksQ6 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v1cbIcksQ6 img {
  width: 100%;
  filter: grayscale(0);
}
.cid-v1cbIcksQ6 .text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}
.cid-v1cbIcksQ6 .block-timeline {
  display: flex;
}
.cid-v1cbIcksQ6 .image-wrap {
  padding: 0rem;
  padding-right: 2rem;
}
.cid-v1cbIcksQ6 .mbr-timeline-title {
  color: #000000;
  margin-bottom: 0.9rem;
}
.cid-v1cbIcksQ6 .inner-date {
  padding: 1rem 1.5rem;
  background-color: #eeeeee;
}
.cid-v1cbIcksQ6 .date-block {
  margin-right: 0.6rem;
}
.cid-v1cbIcksQ6 .mbr-date-block {
  margin-bottom: 0rem;
}
.cid-v1cbIcksQ6 .mbr-timeline-text {
  color: #000000;
  margin-bottom: 1.7rem;
}
.cid-v1cbIcksQ6 .mbr-timeline-date {
  color: #eeeeee;
  font-weight: 700;
  margin-bottom: 0rem;
}
.cid-v1cbIcksQ6 .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-v1cbIcksQ6 .timeline-text-content {
  display: flex;
  background: #eeeeee;
  transition: all 0.4s;
}
.cid-v1cbIcksQ6 .month-block {
  font-weight: 700;
  color: #000000;
}
.cid-v1cbIcksQ6 .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-v1cbIcksQ6 .timeline-element:hover .timeline-text-content {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
}
.cid-v1cbIcksQ6 .reverse {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-v1cbIcksQ6 .reverse .timeline-text-content {
  margin-right: 0;
}
.cid-v1cbIcksQ6 .bottom-date {
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
}
.cid-v1cbIcksQ6 .mbr-timeline-location {
  margin-bottom: 0rem;
  font-weight: 700;
}
.cid-v1cbIcksQ6 .location {
  display: flex;
  align-items: center;
}
.cid-v1cbIcksQ6 .mbr-iconfont {
  font-size: 16px;
  color: #eeeeee;
}
.cid-v1cbIcksQ6 .iconsBackground {
  margin-right: 0.8rem;
}
.cid-v1cbIcksQ6 .reverseTimeline {
  display: flex;
  flex-direction: column-reverse;
}
@media (max-width: 767px) {
  .cid-v1cbIcksQ6 .date-block {
    display: none;
  }
  .cid-v1cbIcksQ6 .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v1cbIcksQ6 .image-wrap {
    padding-right: 0rem;
  }
  .cid-v1cbIcksQ6 .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
  .cid-v1cbIcksQ6 .block-timeline {
    padding: 0;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-v1cbIcksQ6 .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v1cbIcksQ6 .image-wrap {
    padding-right: 0rem;
  }
  .cid-v1cbIcksQ6 .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-v1cbIcksQ6 .timeline-text-content {
    padding: 1.9rem;
  }
}
@media (min-width: 767px) {
  .cid-v1cbIcksQ6 .block-timeline {
    padding: 0;
  }
}
.cid-v1cbIcksQ6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1cbIcksQ6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1cbIcksQ6 H5 {
  color: #000000;
}
.cid-v1cbIdKUIm {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v1cbIdKUIm img {
  width: 100%;
  filter: grayscale(0);
}
.cid-v1cbIdKUIm .text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}
.cid-v1cbIdKUIm .block-timeline {
  display: flex;
}
.cid-v1cbIdKUIm .image-wrap {
  padding: 0rem;
  padding-right: 2rem;
}
.cid-v1cbIdKUIm .mbr-timeline-title {
  color: #000000;
  margin-bottom: 0.9rem;
}
.cid-v1cbIdKUIm .inner-date {
  padding: 1rem 1.5rem;
  background-color: #eeeeee;
}
.cid-v1cbIdKUIm .date-block {
  margin-right: 0.6rem;
}
.cid-v1cbIdKUIm .mbr-date-block {
  margin-bottom: 0rem;
}
.cid-v1cbIdKUIm .mbr-timeline-text {
  color: #000000;
  margin-bottom: 1.7rem;
}
.cid-v1cbIdKUIm .mbr-timeline-date {
  color: #eeeeee;
  font-weight: 700;
  margin-bottom: 0rem;
}
.cid-v1cbIdKUIm .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-v1cbIdKUIm .timeline-text-content {
  display: flex;
  background: #eeeeee;
  transition: all 0.4s;
}
.cid-v1cbIdKUIm .month-block {
  font-weight: 700;
  color: #000000;
}
.cid-v1cbIdKUIm .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-v1cbIdKUIm .timeline-element:hover .timeline-text-content {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
}
.cid-v1cbIdKUIm .reverse {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-v1cbIdKUIm .reverse .timeline-text-content {
  margin-right: 0;
}
.cid-v1cbIdKUIm .bottom-date {
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
}
.cid-v1cbIdKUIm .mbr-timeline-location {
  margin-bottom: 0rem;
  font-weight: 700;
}
.cid-v1cbIdKUIm .location {
  display: flex;
  align-items: center;
}
.cid-v1cbIdKUIm .mbr-iconfont {
  font-size: 16px;
  color: #eeeeee;
}
.cid-v1cbIdKUIm .iconsBackground {
  margin-right: 0.8rem;
}
.cid-v1cbIdKUIm .reverseTimeline {
  display: flex;
  flex-direction: column-reverse;
}
@media (max-width: 767px) {
  .cid-v1cbIdKUIm .date-block {
    display: none;
  }
  .cid-v1cbIdKUIm .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v1cbIdKUIm .image-wrap {
    padding-right: 0rem;
  }
  .cid-v1cbIdKUIm .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
  .cid-v1cbIdKUIm .block-timeline {
    padding: 0;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-v1cbIdKUIm .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v1cbIdKUIm .image-wrap {
    padding-right: 0rem;
  }
  .cid-v1cbIdKUIm .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-v1cbIdKUIm .timeline-text-content {
    padding: 1.9rem;
  }
}
@media (min-width: 767px) {
  .cid-v1cbIdKUIm .block-timeline {
    padding: 0;
  }
}
.cid-v1cbIdKUIm .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1cbIdKUIm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1cbIdKUIm H5 {
  color: #000000;
}
.cid-v1cbIfdy9k {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v1cbIfdy9k img {
  width: 100%;
  filter: grayscale(0);
}
.cid-v1cbIfdy9k .text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}
.cid-v1cbIfdy9k .block-timeline {
  display: flex;
}
.cid-v1cbIfdy9k .image-wrap {
  padding: 0rem;
  padding-right: 2rem;
}
.cid-v1cbIfdy9k .mbr-timeline-title {
  color: #000000;
  margin-bottom: 0.9rem;
}
.cid-v1cbIfdy9k .inner-date {
  padding: 1rem 1.5rem;
  background-color: #eeeeee;
}
.cid-v1cbIfdy9k .date-block {
  margin-right: 0.6rem;
}
.cid-v1cbIfdy9k .mbr-date-block {
  margin-bottom: 0rem;
}
.cid-v1cbIfdy9k .mbr-timeline-text {
  color: #000000;
  margin-bottom: 1.7rem;
}
.cid-v1cbIfdy9k .mbr-timeline-date {
  color: #eeeeee;
  font-weight: 700;
  margin-bottom: 0rem;
}
.cid-v1cbIfdy9k .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-v1cbIfdy9k .timeline-text-content {
  display: flex;
  background: #eeeeee;
  transition: all 0.4s;
}
.cid-v1cbIfdy9k .month-block {
  font-weight: 700;
  color: #000000;
}
.cid-v1cbIfdy9k .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-v1cbIfdy9k .timeline-element:hover .timeline-text-content {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
}
.cid-v1cbIfdy9k .reverse {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-v1cbIfdy9k .reverse .timeline-text-content {
  margin-right: 0;
}
.cid-v1cbIfdy9k .bottom-date {
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
}
.cid-v1cbIfdy9k .mbr-timeline-location {
  margin-bottom: 0rem;
  font-weight: 700;
}
.cid-v1cbIfdy9k .location {
  display: flex;
  align-items: center;
}
.cid-v1cbIfdy9k .mbr-iconfont {
  font-size: 16px;
  color: #eeeeee;
}
.cid-v1cbIfdy9k .iconsBackground {
  margin-right: 0.8rem;
}
.cid-v1cbIfdy9k .reverseTimeline {
  display: flex;
  flex-direction: column-reverse;
}
@media (max-width: 767px) {
  .cid-v1cbIfdy9k .date-block {
    display: none;
  }
  .cid-v1cbIfdy9k .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v1cbIfdy9k .image-wrap {
    padding-right: 0rem;
  }
  .cid-v1cbIfdy9k .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
  .cid-v1cbIfdy9k .block-timeline {
    padding: 0;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-v1cbIfdy9k .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v1cbIfdy9k .image-wrap {
    padding-right: 0rem;
  }
  .cid-v1cbIfdy9k .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-v1cbIfdy9k .timeline-text-content {
    padding: 1.9rem;
  }
}
@media (min-width: 767px) {
  .cid-v1cbIfdy9k .block-timeline {
    padding: 0;
  }
}
.cid-v1cbIfdy9k .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1cbIfdy9k .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1cbIfdy9k H5 {
  color: #000000;
}
.cid-v1cbIgKBi6 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v1cbIgKBi6 img {
  width: 100%;
  filter: grayscale(0);
}
.cid-v1cbIgKBi6 .text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}
.cid-v1cbIgKBi6 .block-timeline {
  display: flex;
}
.cid-v1cbIgKBi6 .image-wrap {
  padding: 0rem;
  padding-right: 2rem;
}
.cid-v1cbIgKBi6 .mbr-timeline-title {
  color: #000000;
  margin-bottom: 0.9rem;
}
.cid-v1cbIgKBi6 .inner-date {
  padding: 1rem 1.5rem;
  background-color: #eeeeee;
}
.cid-v1cbIgKBi6 .date-block {
  margin-right: 0.6rem;
}
.cid-v1cbIgKBi6 .mbr-date-block {
  margin-bottom: 0rem;
}
.cid-v1cbIgKBi6 .mbr-timeline-text {
  color: #000000;
  margin-bottom: 1.7rem;
}
.cid-v1cbIgKBi6 .mbr-timeline-date {
  color: #eeeeee;
  font-weight: 700;
  margin-bottom: 0rem;
}
.cid-v1cbIgKBi6 .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-v1cbIgKBi6 .timeline-text-content {
  display: flex;
  background: #eeeeee;
  transition: all 0.4s;
}
.cid-v1cbIgKBi6 .month-block {
  font-weight: 700;
  color: #000000;
}
.cid-v1cbIgKBi6 .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-v1cbIgKBi6 .timeline-element:hover .timeline-text-content {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
}
.cid-v1cbIgKBi6 .reverse {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-v1cbIgKBi6 .reverse .timeline-text-content {
  margin-right: 0;
}
.cid-v1cbIgKBi6 .bottom-date {
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
}
.cid-v1cbIgKBi6 .mbr-timeline-location {
  margin-bottom: 0rem;
  font-weight: 700;
}
.cid-v1cbIgKBi6 .location {
  display: flex;
  align-items: center;
}
.cid-v1cbIgKBi6 .mbr-iconfont {
  font-size: 16px;
  color: #eeeeee;
}
.cid-v1cbIgKBi6 .iconsBackground {
  margin-right: 0.8rem;
}
.cid-v1cbIgKBi6 .reverseTimeline {
  display: flex;
  flex-direction: column-reverse;
}
@media (max-width: 767px) {
  .cid-v1cbIgKBi6 .date-block {
    display: none;
  }
  .cid-v1cbIgKBi6 .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v1cbIgKBi6 .image-wrap {
    padding-right: 0rem;
  }
  .cid-v1cbIgKBi6 .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
  .cid-v1cbIgKBi6 .block-timeline {
    padding: 0;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-v1cbIgKBi6 .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v1cbIgKBi6 .image-wrap {
    padding-right: 0rem;
  }
  .cid-v1cbIgKBi6 .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-v1cbIgKBi6 .timeline-text-content {
    padding: 1.9rem;
  }
}
@media (min-width: 767px) {
  .cid-v1cbIgKBi6 .block-timeline {
    padding: 0;
  }
}
.cid-v1cbIgKBi6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1cbIgKBi6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1cbIgKBi6 H5 {
  color: #000000;
}
.cid-v1cbIig1iG {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v1cbIig1iG img {
  width: 100%;
  filter: grayscale(0);
}
.cid-v1cbIig1iG .text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}
.cid-v1cbIig1iG .block-timeline {
  display: flex;
}
.cid-v1cbIig1iG .image-wrap {
  padding: 0rem;
  padding-right: 2rem;
}
.cid-v1cbIig1iG .mbr-timeline-title {
  color: #000000;
  margin-bottom: 0.9rem;
}
.cid-v1cbIig1iG .inner-date {
  padding: 1rem 1.5rem;
  background-color: #eeeeee;
}
.cid-v1cbIig1iG .date-block {
  margin-right: 0.6rem;
}
.cid-v1cbIig1iG .mbr-date-block {
  margin-bottom: 0rem;
}
.cid-v1cbIig1iG .mbr-timeline-text {
  color: #000000;
  margin-bottom: 1.7rem;
}
.cid-v1cbIig1iG .mbr-timeline-date {
  color: #eeeeee;
  font-weight: 700;
  margin-bottom: 0rem;
}
.cid-v1cbIig1iG .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-v1cbIig1iG .timeline-text-content {
  display: flex;
  background: #eeeeee;
  transition: all 0.4s;
}
.cid-v1cbIig1iG .month-block {
  font-weight: 700;
  color: #000000;
}
.cid-v1cbIig1iG .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-v1cbIig1iG .timeline-element:hover .timeline-text-content {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
}
.cid-v1cbIig1iG .reverse {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-v1cbIig1iG .reverse .timeline-text-content {
  margin-right: 0;
}
.cid-v1cbIig1iG .bottom-date {
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
}
.cid-v1cbIig1iG .mbr-timeline-location {
  margin-bottom: 0rem;
  font-weight: 700;
}
.cid-v1cbIig1iG .location {
  display: flex;
  align-items: center;
}
.cid-v1cbIig1iG .mbr-iconfont {
  font-size: 16px;
  color: #eeeeee;
}
.cid-v1cbIig1iG .iconsBackground {
  margin-right: 0.8rem;
}
.cid-v1cbIig1iG .reverseTimeline {
  display: flex;
  flex-direction: column-reverse;
}
@media (max-width: 767px) {
  .cid-v1cbIig1iG .date-block {
    display: none;
  }
  .cid-v1cbIig1iG .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v1cbIig1iG .image-wrap {
    padding-right: 0rem;
  }
  .cid-v1cbIig1iG .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
  .cid-v1cbIig1iG .block-timeline {
    padding: 0;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-v1cbIig1iG .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v1cbIig1iG .image-wrap {
    padding-right: 0rem;
  }
  .cid-v1cbIig1iG .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-v1cbIig1iG .timeline-text-content {
    padding: 1.9rem;
  }
}
@media (min-width: 767px) {
  .cid-v1cbIig1iG .block-timeline {
    padding: 0;
  }
}
.cid-v1cbIig1iG .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1cbIig1iG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1cbIig1iG H5 {
  color: #000000;
}
.cid-v1cbIjP6Nk {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v1cbIjP6Nk img {
  width: 100%;
  filter: grayscale(0);
}
.cid-v1cbIjP6Nk .text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}
.cid-v1cbIjP6Nk .block-timeline {
  display: flex;
}
.cid-v1cbIjP6Nk .image-wrap {
  padding: 0rem;
  padding-right: 2rem;
}
.cid-v1cbIjP6Nk .mbr-timeline-title {
  color: #000000;
  margin-bottom: 0.9rem;
}
.cid-v1cbIjP6Nk .inner-date {
  padding: 1rem 1.5rem;
  background-color: #eeeeee;
}
.cid-v1cbIjP6Nk .date-block {
  margin-right: 0.6rem;
}
.cid-v1cbIjP6Nk .mbr-date-block {
  margin-bottom: 0rem;
}
.cid-v1cbIjP6Nk .mbr-timeline-text {
  color: #000000;
  margin-bottom: 1.7rem;
}
.cid-v1cbIjP6Nk .mbr-timeline-date {
  color: #eeeeee;
  font-weight: 700;
  margin-bottom: 0rem;
}
.cid-v1cbIjP6Nk .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-v1cbIjP6Nk .timeline-text-content {
  display: flex;
  background: #eeeeee;
  transition: all 0.4s;
}
.cid-v1cbIjP6Nk .month-block {
  font-weight: 700;
  color: #000000;
}
.cid-v1cbIjP6Nk .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-v1cbIjP6Nk .timeline-element:hover .timeline-text-content {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
}
.cid-v1cbIjP6Nk .reverse {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-v1cbIjP6Nk .reverse .timeline-text-content {
  margin-right: 0;
}
.cid-v1cbIjP6Nk .bottom-date {
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
}
.cid-v1cbIjP6Nk .mbr-timeline-location {
  margin-bottom: 0rem;
  font-weight: 700;
}
.cid-v1cbIjP6Nk .location {
  display: flex;
  align-items: center;
}
.cid-v1cbIjP6Nk .mbr-iconfont {
  font-size: 16px;
  color: #eeeeee;
}
.cid-v1cbIjP6Nk .iconsBackground {
  margin-right: 0.8rem;
}
.cid-v1cbIjP6Nk .reverseTimeline {
  display: flex;
  flex-direction: column-reverse;
}
@media (max-width: 767px) {
  .cid-v1cbIjP6Nk .date-block {
    display: none;
  }
  .cid-v1cbIjP6Nk .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v1cbIjP6Nk .image-wrap {
    padding-right: 0rem;
  }
  .cid-v1cbIjP6Nk .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
  .cid-v1cbIjP6Nk .block-timeline {
    padding: 0;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-v1cbIjP6Nk .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v1cbIjP6Nk .image-wrap {
    padding-right: 0rem;
  }
  .cid-v1cbIjP6Nk .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-v1cbIjP6Nk .timeline-text-content {
    padding: 1.9rem;
  }
}
@media (min-width: 767px) {
  .cid-v1cbIjP6Nk .block-timeline {
    padding: 0;
  }
}
.cid-v1cbIjP6Nk .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1cbIjP6Nk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1cbIjP6Nk H5 {
  color: #000000;
}
.cid-v1cbIlptPs {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v1cbIlptPs img {
  width: 100%;
  filter: grayscale(0);
}
.cid-v1cbIlptPs .text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}
.cid-v1cbIlptPs .block-timeline {
  display: flex;
}
.cid-v1cbIlptPs .image-wrap {
  padding: 0rem;
  padding-right: 2rem;
}
.cid-v1cbIlptPs .mbr-timeline-title {
  color: #000000;
  margin-bottom: 0.9rem;
}
.cid-v1cbIlptPs .inner-date {
  padding: 1rem 1.5rem;
  background-color: #eeeeee;
}
.cid-v1cbIlptPs .date-block {
  margin-right: 0.6rem;
}
.cid-v1cbIlptPs .mbr-date-block {
  margin-bottom: 0rem;
}
.cid-v1cbIlptPs .mbr-timeline-text {
  color: #000000;
  margin-bottom: 1.7rem;
}
.cid-v1cbIlptPs .mbr-timeline-date {
  color: #eeeeee;
  font-weight: 700;
  margin-bottom: 0rem;
}
.cid-v1cbIlptPs .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-v1cbIlptPs .timeline-text-content {
  display: flex;
  background: #eeeeee;
  transition: all 0.4s;
}
.cid-v1cbIlptPs .month-block {
  font-weight: 700;
  color: #000000;
}
.cid-v1cbIlptPs .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-v1cbIlptPs .timeline-element:hover .timeline-text-content {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
}
.cid-v1cbIlptPs .reverse {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-v1cbIlptPs .reverse .timeline-text-content {
  margin-right: 0;
}
.cid-v1cbIlptPs .bottom-date {
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
}
.cid-v1cbIlptPs .mbr-timeline-location {
  margin-bottom: 0rem;
  font-weight: 700;
}
.cid-v1cbIlptPs .location {
  display: flex;
  align-items: center;
}
.cid-v1cbIlptPs .mbr-iconfont {
  font-size: 16px;
  color: #eeeeee;
}
.cid-v1cbIlptPs .iconsBackground {
  margin-right: 0.8rem;
}
.cid-v1cbIlptPs .reverseTimeline {
  display: flex;
  flex-direction: column-reverse;
}
@media (max-width: 767px) {
  .cid-v1cbIlptPs .date-block {
    display: none;
  }
  .cid-v1cbIlptPs .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v1cbIlptPs .image-wrap {
    padding-right: 0rem;
  }
  .cid-v1cbIlptPs .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
  .cid-v1cbIlptPs .block-timeline {
    padding: 0;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-v1cbIlptPs .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v1cbIlptPs .image-wrap {
    padding-right: 0rem;
  }
  .cid-v1cbIlptPs .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-v1cbIlptPs .timeline-text-content {
    padding: 1.9rem;
  }
}
@media (min-width: 767px) {
  .cid-v1cbIlptPs .block-timeline {
    padding: 0;
  }
}
.cid-v1cbIlptPs .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1cbIlptPs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1cbIlptPs H5 {
  color: #000000;
}
.cid-v1cbIn52US {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v1cbIn52US img {
  width: 100%;
  filter: grayscale(0);
}
.cid-v1cbIn52US .text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}
.cid-v1cbIn52US .block-timeline {
  display: flex;
}
.cid-v1cbIn52US .image-wrap {
  padding: 0rem;
  padding-right: 2rem;
}
.cid-v1cbIn52US .mbr-timeline-title {
  color: #000000;
  margin-bottom: 0.9rem;
}
.cid-v1cbIn52US .inner-date {
  padding: 1rem 1.5rem;
  background-color: #eeeeee;
}
.cid-v1cbIn52US .date-block {
  margin-right: 0.6rem;
}
.cid-v1cbIn52US .mbr-date-block {
  margin-bottom: 0rem;
}
.cid-v1cbIn52US .mbr-timeline-text {
  color: #000000;
  margin-bottom: 1.7rem;
}
.cid-v1cbIn52US .mbr-timeline-date {
  color: #eeeeee;
  font-weight: 700;
  margin-bottom: 0rem;
}
.cid-v1cbIn52US .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-v1cbIn52US .timeline-text-content {
  display: flex;
  background: #eeeeee;
  transition: all 0.4s;
}
.cid-v1cbIn52US .month-block {
  font-weight: 700;
  color: #000000;
}
.cid-v1cbIn52US .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-v1cbIn52US .timeline-element:hover .timeline-text-content {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
}
.cid-v1cbIn52US .reverse {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-v1cbIn52US .reverse .timeline-text-content {
  margin-right: 0;
}
.cid-v1cbIn52US .bottom-date {
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
}
.cid-v1cbIn52US .mbr-timeline-location {
  margin-bottom: 0rem;
  font-weight: 700;
}
.cid-v1cbIn52US .location {
  display: flex;
  align-items: center;
}
.cid-v1cbIn52US .mbr-iconfont {
  font-size: 16px;
  color: #eeeeee;
}
.cid-v1cbIn52US .iconsBackground {
  margin-right: 0.8rem;
}
.cid-v1cbIn52US .reverseTimeline {
  display: flex;
  flex-direction: column-reverse;
}
@media (max-width: 767px) {
  .cid-v1cbIn52US .date-block {
    display: none;
  }
  .cid-v1cbIn52US .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v1cbIn52US .image-wrap {
    padding-right: 0rem;
  }
  .cid-v1cbIn52US .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
  .cid-v1cbIn52US .block-timeline {
    padding: 0;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-v1cbIn52US .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-v1cbIn52US .image-wrap {
    padding-right: 0rem;
  }
  .cid-v1cbIn52US .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-v1cbIn52US .timeline-text-content {
    padding: 1.9rem;
  }
}
@media (min-width: 767px) {
  .cid-v1cbIn52US .block-timeline {
    padding: 0;
  }
}
.cid-v1cbIn52US .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1cbIn52US .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1cbIn52US H5 {
  color: #000000;
}
.cid-v1cbIoG6E7 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-v1cbIoG6E7 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-v1cbIoG6E7 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-v1cbIoG6E7 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-v1cbIoG6E7 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-v1cbIoG6E7 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-v1cbIoG6E7 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-v1cbIoG6E7 .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-v1cbIoG6E7 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-v1cbIoG6E7 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-v1cbIoG6E7 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-v1cbIoG6E7 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v1cbIoG6E7 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v1cbIoG6E7 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-v1cbIoG6E7 .media-container-row .row-copirayt p {
  width: 100%;
}
