body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Inter', sans-serif;
  font-size: 5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 6.25rem;
}
.display-2 {
  font-family: 'Inter', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2rem;
}
.display-7 {
  font-family: 'Inter', 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: 4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.5rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #05386b !important;
}
.bg-success {
  background-color: #40b0bf !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: #05386b !important;
  border-color: #05386b !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: #010d18 !important;
  border-color: #010d18 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #010d18 !important;
  border-color: #010d18 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #5cdb95 !important;
  border-color: #5cdb95 !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: #29b869 !important;
  border-color: #29b869 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #29b869 !important;
  border-color: #29b869 !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #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: #05386b;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #010d18 !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: #05386b !important;
  border-color: #05386b !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #5cdb95;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #29b869 !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: #5cdb95 !important;
  border-color: #5cdb95 !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: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #05386b !important;
}
.text-secondary {
  color: #5cdb95 !important;
}
.text-success {
  color: #40b0bf !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: #00050a !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #26ab62 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #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: #05386b;
}
.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: #05386b;
  border-color: #05386b;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #05386b;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #0b78e5;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Inter', 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: #05386b !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Inter', 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: #05386b;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #05386b;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #05386b;
}
.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: #05386b;
  border-bottom-color: #05386b;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #05386b !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: #5cdb95 !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='%2305386b' %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-tmWnlzjCkT {
  padding-top: 7rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/wechat-20221125125352-1706x1280.jpg");
}
.cid-tmWnlzjCkT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tmWnlzjCkT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tmWnlzjCkT .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-tmWs59Z49k {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ebe8e8;
}
.cid-tmWs59Z49k .mbr-section-title {
  color: #05386b;
  text-align: left;
}
.cid-tmWs59Z49k .mbr-section-subtitle {
  color: #05386b;
  text-align: left;
}
.cid-tnUaOW3pkK {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ebe8e8;
}
@media (min-width: 992px) {
  .cid-tnUaOW3pkK .carousel {
    min-height: 500px;
  }
  .cid-tnUaOW3pkK .carousel img {
    max-height: 500px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tnUaOW3pkK .carousel {
    min-height: 325px;
  }
  .cid-tnUaOW3pkK .carousel img {
    max-height: 325px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-tnUaOW3pkK .carousel {
    min-height: 275px;
  }
  .cid-tnUaOW3pkK .carousel img {
    max-height: 275px;
    object-fit: contain;
  }
  .cid-tnUaOW3pkK .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tnUaOW3pkK .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tnUaOW3pkK .carousel,
.cid-tnUaOW3pkK .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tnUaOW3pkK .item-wrapper {
  width: 100%;
}
.cid-tnUaOW3pkK .carousel-caption {
  bottom: 40px;
}
.cid-tnUaOW3pkK .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tnUaOW3pkK .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tnUaOW3pkK .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tnUaOW3pkK .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tnUaOW3pkK .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tnUaOW3pkK .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tnUaOW3pkK .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tnUaOW3pkK .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tnUaOW3pkK .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tnUaOW3pkK .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tnUaOW3pkK .carousel-indicators li.active,
.cid-tnUaOW3pkK .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tnUaOW3pkK .carousel-indicators li::after,
.cid-tnUaOW3pkK .carousel-indicators li::before {
  content: none;
}
.cid-tnUaOW3pkK .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tnUaOW3pkK .carousel-indicators {
    display: none !important;
  }
}
.cid-tnUaOW3pkK H5 {
  color: #353535;
}
.cid-tn8eTO4R5g {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ebe8e8;
}
.cid-tn8eTO4R5g .mbr-fallback-image.disabled {
  display: none;
}
.cid-tn8eTO4R5g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tn8eTO4R5g .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-tn8eTO4R5g .currentcost {
  color: #232323;
}
.cid-tn8eTO4R5g .card-wrapper {
  border-radius: 4px;
  background: #ebe8e8;
}
@media (min-width: 992px) {
  .cid-tn8eTO4R5g .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tn8eTO4R5g .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tn8eTO4R5g .text-box {
    padding: 1rem;
  }
}
.cid-tn8eTO4R5g .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tn8eTO4R5g H5 {
  text-align: left;
}
.cid-tn8f2RWG7Z {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ebe8e8;
}
.cid-tn8f2RWG7Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-tn8f2RWG7Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tn8f2RWG7Z .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-tn8f2RWG7Z .currentcost {
  color: #232323;
}
.cid-tn8f2RWG7Z .card-wrapper {
  border-radius: 4px;
  background: #ebe8e8;
}
@media (min-width: 992px) {
  .cid-tn8f2RWG7Z .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tn8f2RWG7Z .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tn8f2RWG7Z .text-box {
    padding: 1rem;
  }
}
.cid-tn8f2RWG7Z .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tn8hlDuJ7u {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ebe8e8;
}
.cid-tn8hlDuJ7u .mbr-fallback-image.disabled {
  display: none;
}
.cid-tn8hlDuJ7u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tn8hlDuJ7u .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-tn8hlDuJ7u .currentcost {
  color: #232323;
}
.cid-tn8hlDuJ7u .card-wrapper {
  border-radius: 4px;
  background: #ebe8e8;
}
@media (min-width: 992px) {
  .cid-tn8hlDuJ7u .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tn8hlDuJ7u .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tn8hlDuJ7u .text-box {
    padding: 1rem;
  }
}
.cid-tn8hlDuJ7u .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tn8hmm81d7 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ebe8e8;
}
.cid-tn8hmm81d7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tn8hmm81d7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tn8hmm81d7 .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-tn8hmm81d7 .currentcost {
  color: #232323;
}
.cid-tn8hmm81d7 .card-wrapper {
  border-radius: 4px;
  background: #ebe8e8;
}
@media (min-width: 992px) {
  .cid-tn8hmm81d7 .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tn8hmm81d7 .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tn8hmm81d7 .text-box {
    padding: 1rem;
  }
}
.cid-tn8hmm81d7 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tn8hkfrgLK {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ebe8e8;
}
.cid-tn8hkfrgLK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tn8hkfrgLK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tn8hkfrgLK .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-tn8hkfrgLK .currentcost {
  color: #232323;
}
.cid-tn8hkfrgLK .card-wrapper {
  border-radius: 4px;
  background: #ebe8e8;
}
@media (min-width: 992px) {
  .cid-tn8hkfrgLK .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tn8hkfrgLK .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tn8hkfrgLK .text-box {
    padding: 1rem;
  }
}
.cid-tn8hkfrgLK .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tn8hl0nyGj {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ebe8e8;
}
.cid-tn8hl0nyGj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tn8hl0nyGj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tn8hl0nyGj .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-tn8hl0nyGj .currentcost {
  color: #232323;
}
.cid-tn8hl0nyGj .card-wrapper {
  border-radius: 4px;
  background: #ebe8e8;
}
@media (min-width: 992px) {
  .cid-tn8hl0nyGj .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tn8hl0nyGj .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tn8hl0nyGj .text-box {
    padding: 1rem;
  }
}
.cid-tn8hl0nyGj .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tn8lJftNsN {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ebe8e8;
}
.cid-tn8lJftNsN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tn8lJftNsN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tn8lJftNsN .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-tn8lJftNsN .currentcost {
  color: #232323;
}
.cid-tn8lJftNsN .card-wrapper {
  border-radius: 4px;
  background: #ebe8e8;
}
@media (min-width: 992px) {
  .cid-tn8lJftNsN .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tn8lJftNsN .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tn8lJftNsN .text-box {
    padding: 1rem;
  }
}
.cid-tn8lJftNsN .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tn8lIBWNwQ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ebe8e8;
}
.cid-tn8lIBWNwQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tn8lIBWNwQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tn8lIBWNwQ .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-tn8lIBWNwQ .currentcost {
  color: #232323;
}
.cid-tn8lIBWNwQ .card-wrapper {
  border-radius: 4px;
  background: #ebe8e8;
}
@media (min-width: 992px) {
  .cid-tn8lIBWNwQ .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tn8lIBWNwQ .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tn8lIBWNwQ .text-box {
    padding: 1rem;
  }
}
.cid-tn8lIBWNwQ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tn8Vemx0TE {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ebe8e8;
}
.cid-tn8Vemx0TE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tn8Vemx0TE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tn8Vemx0TE .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-tn8Vemx0TE .currentcost {
  color: #232323;
}
.cid-tn8Vemx0TE .card-wrapper {
  border-radius: 4px;
  background: #ebe8e8;
}
@media (min-width: 992px) {
  .cid-tn8Vemx0TE .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tn8Vemx0TE .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tn8Vemx0TE .text-box {
    padding: 1rem;
  }
}
.cid-tn8Vemx0TE .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-toy6TEY4uQ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-toy6TEY4uQ nav.navbar {
  position: fixed;
}
.cid-toy6TEY4uQ .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-toy6TEY4uQ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-toy6TEY4uQ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-toy6TEY4uQ .dropdown-item:hover,
.cid-toy6TEY4uQ .dropdown-item:focus {
  background: #05386b !important;
  color: white !important;
}
.cid-toy6TEY4uQ .dropdown-item:hover span {
  color: white;
}
.cid-toy6TEY4uQ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-toy6TEY4uQ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-toy6TEY4uQ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-toy6TEY4uQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-toy6TEY4uQ .nav-link {
  position: relative;
}
.cid-toy6TEY4uQ .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-toy6TEY4uQ .container {
    flex-wrap: nowrap;
  }
}
.cid-toy6TEY4uQ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-toy6TEY4uQ .dropdown-menu,
.cid-toy6TEY4uQ .navbar.opened {
  background: #ebe8e8 !important;
}
.cid-toy6TEY4uQ .nav-item:focus,
.cid-toy6TEY4uQ .nav-link:focus {
  outline: none;
}
.cid-toy6TEY4uQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-toy6TEY4uQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-toy6TEY4uQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-toy6TEY4uQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-toy6TEY4uQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-toy6TEY4uQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-toy6TEY4uQ .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: #ebe8e8;
}
.cid-toy6TEY4uQ .navbar.opened {
  transition: all 0.3s;
}
.cid-toy6TEY4uQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-toy6TEY4uQ .navbar .navbar-logo img {
  width: auto;
}
.cid-toy6TEY4uQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-toy6TEY4uQ .navbar.collapsed {
  justify-content: center;
}
.cid-toy6TEY4uQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-toy6TEY4uQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-toy6TEY4uQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.1rem);
  }
}
.cid-toy6TEY4uQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-toy6TEY4uQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-toy6TEY4uQ .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-toy6TEY4uQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-toy6TEY4uQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-toy6TEY4uQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-toy6TEY4uQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-toy6TEY4uQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-toy6TEY4uQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-toy6TEY4uQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-toy6TEY4uQ .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-toy6TEY4uQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-toy6TEY4uQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-toy6TEY4uQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-toy6TEY4uQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-toy6TEY4uQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-toy6TEY4uQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-toy6TEY4uQ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-toy6TEY4uQ .navbar.navbar-short {
  min-height: 60px;
}
.cid-toy6TEY4uQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-toy6TEY4uQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-toy6TEY4uQ .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-toy6TEY4uQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-toy6TEY4uQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-toy6TEY4uQ .dropdown-item.active,
.cid-toy6TEY4uQ .dropdown-item:active {
  background-color: transparent;
}
.cid-toy6TEY4uQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-toy6TEY4uQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-toy6TEY4uQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-toy6TEY4uQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ebe8e8;
}
.cid-toy6TEY4uQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-toy6TEY4uQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-toy6TEY4uQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-toy6TEY4uQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-toy6TEY4uQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-toy6TEY4uQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #353535;
}
.cid-toy6TEY4uQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-toy6TEY4uQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toy6TEY4uQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toy6TEY4uQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-toy6TEY4uQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toy6TEY4uQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-toy6TEY4uQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-toy6TEY4uQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toy6TEY4uQ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-toy6TEY4uQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-toy6TEY4uQ .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-toy6TEY4uQ .navbar {
    height: 70px;
  }
  .cid-toy6TEY4uQ .navbar.opened {
    height: auto;
  }
  .cid-toy6TEY4uQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-toy70ZxB0z {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-toy70ZxB0z .row-links {
  width: 100%;
  justify-content: center;
}
.cid-toy70ZxB0z .social-row {
  width: 100%;
  justify-content: center;
}
.cid-toy70ZxB0z .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-toy70ZxB0z .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-toy70ZxB0z .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-toy70ZxB0z .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-toy70ZxB0z .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-toy70ZxB0z .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-toy70ZxB0z .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-toy70ZxB0z .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-toy70ZxB0z .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-toy70ZxB0z .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-toy70ZxB0z .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-toy70ZxB0z .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tnqB7uQjoE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tnqB7uQjoE .carousel {
    min-height: 800px;
  }
  .cid-tnqB7uQjoE .carousel img {
    max-height: 800px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tnqB7uQjoE .carousel {
    min-height: 520px;
  }
  .cid-tnqB7uQjoE .carousel img {
    max-height: 520px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-tnqB7uQjoE .carousel {
    min-height: 440px;
  }
  .cid-tnqB7uQjoE .carousel img {
    max-height: 440px;
    object-fit: contain;
  }
  .cid-tnqB7uQjoE .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tnqB7uQjoE .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tnqB7uQjoE .carousel,
.cid-tnqB7uQjoE .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tnqB7uQjoE .item-wrapper {
  width: 100%;
}
.cid-tnqB7uQjoE .carousel-caption {
  bottom: 40px;
}
.cid-tnqB7uQjoE .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tnqB7uQjoE .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tnqB7uQjoE .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tnqB7uQjoE .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tnqB7uQjoE .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tnqB7uQjoE .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tnqB7uQjoE .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tnqB7uQjoE .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tnqB7uQjoE .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tnqB7uQjoE .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tnqB7uQjoE .carousel-indicators li.active,
.cid-tnqB7uQjoE .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tnqB7uQjoE .carousel-indicators li::after,
.cid-tnqB7uQjoE .carousel-indicators li::before {
  content: none;
}
.cid-tnqB7uQjoE .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tnqB7uQjoE .carousel-indicators {
    display: none !important;
  }
}
.cid-tnqp9TqcBY {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tnqp9TqcBY img,
.cid-tnqp9TqcBY .item-img {
  width: 100%;
}
.cid-tnqp9TqcBY .item:focus,
.cid-tnqp9TqcBY span:focus {
  outline: none;
}
.cid-tnqp9TqcBY .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tnqp9TqcBY .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tnqp9TqcBY .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tnqp9TqcBY .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tnqp9TqcBY .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tnqp9TqcBY .mbr-section-title {
  color: #232323;
}
.cid-tnqp9TqcBY .mbr-text,
.cid-tnqp9TqcBY .mbr-section-btn {
  text-align: left;
}
.cid-tnqp9TqcBY .item-title {
  text-align: left;
}
.cid-tnqp9TqcBY .item-subtitle {
  text-align: left;
}
.cid-tnqp9UWxbB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tnqp9UWxbB img,
.cid-tnqp9UWxbB .item-img {
  width: 100%;
}
.cid-tnqp9UWxbB .item:focus,
.cid-tnqp9UWxbB span:focus {
  outline: none;
}
.cid-tnqp9UWxbB .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tnqp9UWxbB .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tnqp9UWxbB .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tnqp9UWxbB .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tnqp9UWxbB .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tnqp9UWxbB .mbr-section-title {
  color: #232323;
}
.cid-tnqp9UWxbB .mbr-text,
.cid-tnqp9UWxbB .mbr-section-btn {
  text-align: left;
}
.cid-tnqp9UWxbB .item-title {
  text-align: left;
}
.cid-tnqp9UWxbB .item-subtitle {
  text-align: left;
}
.cid-tnqp9Wj0Eh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tnqp9Wj0Eh img,
.cid-tnqp9Wj0Eh .item-img {
  width: 100%;
}
.cid-tnqp9Wj0Eh .item:focus,
.cid-tnqp9Wj0Eh span:focus {
  outline: none;
}
.cid-tnqp9Wj0Eh .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tnqp9Wj0Eh .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tnqp9Wj0Eh .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tnqp9Wj0Eh .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tnqp9Wj0Eh .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tnqp9Wj0Eh .mbr-section-title {
  color: #232323;
}
.cid-tnqp9Wj0Eh .mbr-text,
.cid-tnqp9Wj0Eh .mbr-section-btn {
  text-align: left;
}
.cid-tnqp9Wj0Eh .item-title {
  text-align: left;
}
.cid-tnqp9Wj0Eh .item-subtitle {
  text-align: left;
}
.cid-tnqp9XLVMa {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tnqp9XLVMa img,
.cid-tnqp9XLVMa .item-img {
  width: 100%;
}
.cid-tnqp9XLVMa .item:focus,
.cid-tnqp9XLVMa span:focus {
  outline: none;
}
.cid-tnqp9XLVMa .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tnqp9XLVMa .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tnqp9XLVMa .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tnqp9XLVMa .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tnqp9XLVMa .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tnqp9XLVMa .mbr-section-title {
  color: #232323;
}
.cid-tnqp9XLVMa .mbr-text,
.cid-tnqp9XLVMa .mbr-section-btn {
  text-align: left;
}
.cid-tnqp9XLVMa .item-title {
  text-align: left;
}
.cid-tnqp9XLVMa .item-subtitle {
  text-align: left;
}
.cid-tnvfvOLi4f {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tnvfvOLi4f img,
.cid-tnvfvOLi4f .item-img {
  width: 100%;
}
.cid-tnvfvOLi4f .item:focus,
.cid-tnvfvOLi4f span:focus {
  outline: none;
}
.cid-tnvfvOLi4f .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tnvfvOLi4f .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tnvfvOLi4f .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tnvfvOLi4f .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tnvfvOLi4f .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tnvfvOLi4f .mbr-section-title {
  color: #232323;
}
.cid-tnvfvOLi4f .mbr-text,
.cid-tnvfvOLi4f .mbr-section-btn {
  text-align: left;
}
.cid-tnvfvOLi4f .item-title {
  text-align: left;
}
.cid-tnvfvOLi4f .item-subtitle {
  text-align: left;
}
.cid-toy6TEY4uQ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-toy6TEY4uQ nav.navbar {
  position: fixed;
}
.cid-toy6TEY4uQ .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-toy6TEY4uQ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-toy6TEY4uQ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-toy6TEY4uQ .dropdown-item:hover,
.cid-toy6TEY4uQ .dropdown-item:focus {
  background: #05386b !important;
  color: white !important;
}
.cid-toy6TEY4uQ .dropdown-item:hover span {
  color: white;
}
.cid-toy6TEY4uQ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-toy6TEY4uQ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-toy6TEY4uQ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-toy6TEY4uQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-toy6TEY4uQ .nav-link {
  position: relative;
}
.cid-toy6TEY4uQ .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-toy6TEY4uQ .container {
    flex-wrap: nowrap;
  }
}
.cid-toy6TEY4uQ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-toy6TEY4uQ .dropdown-menu,
.cid-toy6TEY4uQ .navbar.opened {
  background: #ebe8e8 !important;
}
.cid-toy6TEY4uQ .nav-item:focus,
.cid-toy6TEY4uQ .nav-link:focus {
  outline: none;
}
.cid-toy6TEY4uQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-toy6TEY4uQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-toy6TEY4uQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-toy6TEY4uQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-toy6TEY4uQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-toy6TEY4uQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-toy6TEY4uQ .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: #ebe8e8;
}
.cid-toy6TEY4uQ .navbar.opened {
  transition: all 0.3s;
}
.cid-toy6TEY4uQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-toy6TEY4uQ .navbar .navbar-logo img {
  width: auto;
}
.cid-toy6TEY4uQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-toy6TEY4uQ .navbar.collapsed {
  justify-content: center;
}
.cid-toy6TEY4uQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-toy6TEY4uQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-toy6TEY4uQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.1rem);
  }
}
.cid-toy6TEY4uQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-toy6TEY4uQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-toy6TEY4uQ .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-toy6TEY4uQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-toy6TEY4uQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-toy6TEY4uQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-toy6TEY4uQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-toy6TEY4uQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-toy6TEY4uQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-toy6TEY4uQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-toy6TEY4uQ .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-toy6TEY4uQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-toy6TEY4uQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-toy6TEY4uQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-toy6TEY4uQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-toy6TEY4uQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-toy6TEY4uQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-toy6TEY4uQ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-toy6TEY4uQ .navbar.navbar-short {
  min-height: 60px;
}
.cid-toy6TEY4uQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-toy6TEY4uQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-toy6TEY4uQ .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-toy6TEY4uQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-toy6TEY4uQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-toy6TEY4uQ .dropdown-item.active,
.cid-toy6TEY4uQ .dropdown-item:active {
  background-color: transparent;
}
.cid-toy6TEY4uQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-toy6TEY4uQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-toy6TEY4uQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-toy6TEY4uQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ebe8e8;
}
.cid-toy6TEY4uQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-toy6TEY4uQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-toy6TEY4uQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-toy6TEY4uQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-toy6TEY4uQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-toy6TEY4uQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #353535;
}
.cid-toy6TEY4uQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-toy6TEY4uQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toy6TEY4uQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toy6TEY4uQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-toy6TEY4uQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toy6TEY4uQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-toy6TEY4uQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-toy6TEY4uQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toy6TEY4uQ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-toy6TEY4uQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-toy6TEY4uQ .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-toy6TEY4uQ .navbar {
    height: 70px;
  }
  .cid-toy6TEY4uQ .navbar.opened {
    height: auto;
  }
  .cid-toy6TEY4uQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-toy70ZxB0z {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-toy70ZxB0z .row-links {
  width: 100%;
  justify-content: center;
}
.cid-toy70ZxB0z .social-row {
  width: 100%;
  justify-content: center;
}
.cid-toy70ZxB0z .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-toy70ZxB0z .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-toy70ZxB0z .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-toy70ZxB0z .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-toy70ZxB0z .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-toy70ZxB0z .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-toy70ZxB0z .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-toy70ZxB0z .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-toy70ZxB0z .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-toy70ZxB0z .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-toy70ZxB0z .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-toy70ZxB0z .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tnqZmEadp9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tnqZmEadp9 .carousel {
    min-height: 800px;
  }
  .cid-tnqZmEadp9 .carousel img {
    max-height: 800px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tnqZmEadp9 .carousel {
    min-height: 520px;
  }
  .cid-tnqZmEadp9 .carousel img {
    max-height: 520px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-tnqZmEadp9 .carousel {
    min-height: 440px;
  }
  .cid-tnqZmEadp9 .carousel img {
    max-height: 440px;
    object-fit: contain;
  }
  .cid-tnqZmEadp9 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tnqZmEadp9 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tnqZmEadp9 .carousel,
.cid-tnqZmEadp9 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tnqZmEadp9 .item-wrapper {
  width: 100%;
}
.cid-tnqZmEadp9 .carousel-caption {
  bottom: 40px;
}
.cid-tnqZmEadp9 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tnqZmEadp9 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tnqZmEadp9 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tnqZmEadp9 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tnqZmEadp9 .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tnqZmEadp9 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tnqZmEadp9 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tnqZmEadp9 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tnqZmEadp9 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tnqZmEadp9 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tnqZmEadp9 .carousel-indicators li.active,
.cid-tnqZmEadp9 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tnqZmEadp9 .carousel-indicators li::after,
.cid-tnqZmEadp9 .carousel-indicators li::before {
  content: none;
}
.cid-tnqZmEadp9 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tnqZmEadp9 .carousel-indicators {
    display: none !important;
  }
}
.cid-tnqZmJPIGR {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tnqZmJPIGR img,
.cid-tnqZmJPIGR .item-img {
  width: 100%;
}
.cid-tnqZmJPIGR .item:focus,
.cid-tnqZmJPIGR span:focus {
  outline: none;
}
.cid-tnqZmJPIGR .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tnqZmJPIGR .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tnqZmJPIGR .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tnqZmJPIGR .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tnqZmJPIGR .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tnqZmJPIGR .mbr-section-title {
  color: #232323;
}
.cid-tnqZmJPIGR .mbr-text,
.cid-tnqZmJPIGR .mbr-section-btn {
  text-align: left;
}
.cid-tnqZmJPIGR .item-title {
  text-align: left;
}
.cid-tnqZmJPIGR .item-subtitle {
  text-align: left;
}
.cid-tnqZmNeunl {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tnqZmNeunl img,
.cid-tnqZmNeunl .item-img {
  width: 100%;
}
.cid-tnqZmNeunl .item:focus,
.cid-tnqZmNeunl span:focus {
  outline: none;
}
.cid-tnqZmNeunl .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tnqZmNeunl .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tnqZmNeunl .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tnqZmNeunl .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tnqZmNeunl .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tnqZmNeunl .mbr-section-title {
  color: #232323;
}
.cid-tnqZmNeunl .mbr-text,
.cid-tnqZmNeunl .mbr-section-btn {
  text-align: left;
}
.cid-tnqZmNeunl .item-title {
  text-align: left;
}
.cid-tnqZmNeunl .item-subtitle {
  text-align: left;
}
.cid-tnqZmQ0fEW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tnqZmQ0fEW img,
.cid-tnqZmQ0fEW .item-img {
  width: 100%;
}
.cid-tnqZmQ0fEW .item:focus,
.cid-tnqZmQ0fEW span:focus {
  outline: none;
}
.cid-tnqZmQ0fEW .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tnqZmQ0fEW .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tnqZmQ0fEW .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tnqZmQ0fEW .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tnqZmQ0fEW .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tnqZmQ0fEW .mbr-section-title {
  color: #232323;
}
.cid-tnqZmQ0fEW .mbr-text,
.cid-tnqZmQ0fEW .mbr-section-btn {
  text-align: left;
}
.cid-tnqZmQ0fEW .item-title {
  text-align: left;
}
.cid-tnqZmQ0fEW .item-subtitle {
  text-align: left;
}
.cid-toy6TEY4uQ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-toy6TEY4uQ nav.navbar {
  position: fixed;
}
.cid-toy6TEY4uQ .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-toy6TEY4uQ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-toy6TEY4uQ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-toy6TEY4uQ .dropdown-item:hover,
.cid-toy6TEY4uQ .dropdown-item:focus {
  background: #05386b !important;
  color: white !important;
}
.cid-toy6TEY4uQ .dropdown-item:hover span {
  color: white;
}
.cid-toy6TEY4uQ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-toy6TEY4uQ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-toy6TEY4uQ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-toy6TEY4uQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-toy6TEY4uQ .nav-link {
  position: relative;
}
.cid-toy6TEY4uQ .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-toy6TEY4uQ .container {
    flex-wrap: nowrap;
  }
}
.cid-toy6TEY4uQ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-toy6TEY4uQ .dropdown-menu,
.cid-toy6TEY4uQ .navbar.opened {
  background: #ebe8e8 !important;
}
.cid-toy6TEY4uQ .nav-item:focus,
.cid-toy6TEY4uQ .nav-link:focus {
  outline: none;
}
.cid-toy6TEY4uQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-toy6TEY4uQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-toy6TEY4uQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-toy6TEY4uQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-toy6TEY4uQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-toy6TEY4uQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-toy6TEY4uQ .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: #ebe8e8;
}
.cid-toy6TEY4uQ .navbar.opened {
  transition: all 0.3s;
}
.cid-toy6TEY4uQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-toy6TEY4uQ .navbar .navbar-logo img {
  width: auto;
}
.cid-toy6TEY4uQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-toy6TEY4uQ .navbar.collapsed {
  justify-content: center;
}
.cid-toy6TEY4uQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-toy6TEY4uQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-toy6TEY4uQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.1rem);
  }
}
.cid-toy6TEY4uQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-toy6TEY4uQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-toy6TEY4uQ .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-toy6TEY4uQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-toy6TEY4uQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-toy6TEY4uQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-toy6TEY4uQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-toy6TEY4uQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-toy6TEY4uQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-toy6TEY4uQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-toy6TEY4uQ .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-toy6TEY4uQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-toy6TEY4uQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-toy6TEY4uQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-toy6TEY4uQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-toy6TEY4uQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-toy6TEY4uQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-toy6TEY4uQ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-toy6TEY4uQ .navbar.navbar-short {
  min-height: 60px;
}
.cid-toy6TEY4uQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-toy6TEY4uQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-toy6TEY4uQ .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-toy6TEY4uQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-toy6TEY4uQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-toy6TEY4uQ .dropdown-item.active,
.cid-toy6TEY4uQ .dropdown-item:active {
  background-color: transparent;
}
.cid-toy6TEY4uQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-toy6TEY4uQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-toy6TEY4uQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-toy6TEY4uQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ebe8e8;
}
.cid-toy6TEY4uQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-toy6TEY4uQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-toy6TEY4uQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-toy6TEY4uQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-toy6TEY4uQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-toy6TEY4uQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #353535;
}
.cid-toy6TEY4uQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-toy6TEY4uQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toy6TEY4uQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toy6TEY4uQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-toy6TEY4uQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toy6TEY4uQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-toy6TEY4uQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-toy6TEY4uQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toy6TEY4uQ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-toy6TEY4uQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-toy6TEY4uQ .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-toy6TEY4uQ .navbar {
    height: 70px;
  }
  .cid-toy6TEY4uQ .navbar.opened {
    height: auto;
  }
  .cid-toy6TEY4uQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-toy70ZxB0z {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-toy70ZxB0z .row-links {
  width: 100%;
  justify-content: center;
}
.cid-toy70ZxB0z .social-row {
  width: 100%;
  justify-content: center;
}
.cid-toy70ZxB0z .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-toy70ZxB0z .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-toy70ZxB0z .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-toy70ZxB0z .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-toy70ZxB0z .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-toy70ZxB0z .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-toy70ZxB0z .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-toy70ZxB0z .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-toy70ZxB0z .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-toy70ZxB0z .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-toy70ZxB0z .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-toy70ZxB0z .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tnvIA86LZP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tnvIA86LZP .carousel {
    min-height: 800px;
  }
  .cid-tnvIA86LZP .carousel img {
    max-height: 800px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tnvIA86LZP .carousel {
    min-height: 520px;
  }
  .cid-tnvIA86LZP .carousel img {
    max-height: 520px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-tnvIA86LZP .carousel {
    min-height: 440px;
  }
  .cid-tnvIA86LZP .carousel img {
    max-height: 440px;
    object-fit: contain;
  }
  .cid-tnvIA86LZP .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tnvIA86LZP .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tnvIA86LZP .carousel,
.cid-tnvIA86LZP .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tnvIA86LZP .item-wrapper {
  width: 100%;
}
.cid-tnvIA86LZP .carousel-caption {
  bottom: 40px;
}
.cid-tnvIA86LZP .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tnvIA86LZP .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tnvIA86LZP .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tnvIA86LZP .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tnvIA86LZP .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tnvIA86LZP .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tnvIA86LZP .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tnvIA86LZP .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tnvIA86LZP .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tnvIA86LZP .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tnvIA86LZP .carousel-indicators li.active,
.cid-tnvIA86LZP .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tnvIA86LZP .carousel-indicators li::after,
.cid-tnvIA86LZP .carousel-indicators li::before {
  content: none;
}
.cid-tnvIA86LZP .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tnvIA86LZP .carousel-indicators {
    display: none !important;
  }
}
.cid-tnvIAaxVFV {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tnvIAaxVFV img,
.cid-tnvIAaxVFV .item-img {
  width: 100%;
}
.cid-tnvIAaxVFV .item:focus,
.cid-tnvIAaxVFV span:focus {
  outline: none;
}
.cid-tnvIAaxVFV .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tnvIAaxVFV .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tnvIAaxVFV .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tnvIAaxVFV .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tnvIAaxVFV .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tnvIAaxVFV .mbr-section-title {
  color: #232323;
}
.cid-tnvIAaxVFV .mbr-text,
.cid-tnvIAaxVFV .mbr-section-btn {
  text-align: left;
}
.cid-tnvIAaxVFV .item-title {
  text-align: left;
}
.cid-tnvIAaxVFV .item-subtitle {
  text-align: left;
}
.cid-tnvIAcCwi1 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tnvIAcCwi1 img,
.cid-tnvIAcCwi1 .item-img {
  width: 100%;
}
.cid-tnvIAcCwi1 .item:focus,
.cid-tnvIAcCwi1 span:focus {
  outline: none;
}
.cid-tnvIAcCwi1 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tnvIAcCwi1 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tnvIAcCwi1 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tnvIAcCwi1 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tnvIAcCwi1 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tnvIAcCwi1 .mbr-section-title {
  color: #232323;
}
.cid-tnvIAcCwi1 .mbr-text,
.cid-tnvIAcCwi1 .mbr-section-btn {
  text-align: left;
}
.cid-tnvIAcCwi1 .item-title {
  text-align: left;
}
.cid-tnvIAcCwi1 .item-subtitle {
  text-align: left;
}
.cid-tnvIAeEm78 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tnvIAeEm78 img,
.cid-tnvIAeEm78 .item-img {
  width: 100%;
}
.cid-tnvIAeEm78 .item:focus,
.cid-tnvIAeEm78 span:focus {
  outline: none;
}
.cid-tnvIAeEm78 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tnvIAeEm78 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tnvIAeEm78 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tnvIAeEm78 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tnvIAeEm78 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tnvIAeEm78 .mbr-section-title {
  color: #232323;
}
.cid-tnvIAeEm78 .mbr-text,
.cid-tnvIAeEm78 .mbr-section-btn {
  text-align: left;
}
.cid-tnvIAeEm78 .item-title {
  text-align: left;
}
.cid-tnvIAeEm78 .item-subtitle {
  text-align: left;
}
.cid-toy6TEY4uQ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-toy6TEY4uQ nav.navbar {
  position: fixed;
}
.cid-toy6TEY4uQ .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-toy6TEY4uQ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-toy6TEY4uQ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-toy6TEY4uQ .dropdown-item:hover,
.cid-toy6TEY4uQ .dropdown-item:focus {
  background: #05386b !important;
  color: white !important;
}
.cid-toy6TEY4uQ .dropdown-item:hover span {
  color: white;
}
.cid-toy6TEY4uQ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-toy6TEY4uQ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-toy6TEY4uQ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-toy6TEY4uQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-toy6TEY4uQ .nav-link {
  position: relative;
}
.cid-toy6TEY4uQ .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-toy6TEY4uQ .container {
    flex-wrap: nowrap;
  }
}
.cid-toy6TEY4uQ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-toy6TEY4uQ .dropdown-menu,
.cid-toy6TEY4uQ .navbar.opened {
  background: #ebe8e8 !important;
}
.cid-toy6TEY4uQ .nav-item:focus,
.cid-toy6TEY4uQ .nav-link:focus {
  outline: none;
}
.cid-toy6TEY4uQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-toy6TEY4uQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-toy6TEY4uQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-toy6TEY4uQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-toy6TEY4uQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-toy6TEY4uQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-toy6TEY4uQ .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: #ebe8e8;
}
.cid-toy6TEY4uQ .navbar.opened {
  transition: all 0.3s;
}
.cid-toy6TEY4uQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-toy6TEY4uQ .navbar .navbar-logo img {
  width: auto;
}
.cid-toy6TEY4uQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-toy6TEY4uQ .navbar.collapsed {
  justify-content: center;
}
.cid-toy6TEY4uQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-toy6TEY4uQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-toy6TEY4uQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.1rem);
  }
}
.cid-toy6TEY4uQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-toy6TEY4uQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-toy6TEY4uQ .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-toy6TEY4uQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-toy6TEY4uQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-toy6TEY4uQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-toy6TEY4uQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-toy6TEY4uQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-toy6TEY4uQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-toy6TEY4uQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-toy6TEY4uQ .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-toy6TEY4uQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-toy6TEY4uQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-toy6TEY4uQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-toy6TEY4uQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-toy6TEY4uQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-toy6TEY4uQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-toy6TEY4uQ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-toy6TEY4uQ .navbar.navbar-short {
  min-height: 60px;
}
.cid-toy6TEY4uQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-toy6TEY4uQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-toy6TEY4uQ .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-toy6TEY4uQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-toy6TEY4uQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-toy6TEY4uQ .dropdown-item.active,
.cid-toy6TEY4uQ .dropdown-item:active {
  background-color: transparent;
}
.cid-toy6TEY4uQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-toy6TEY4uQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-toy6TEY4uQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-toy6TEY4uQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ebe8e8;
}
.cid-toy6TEY4uQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-toy6TEY4uQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-toy6TEY4uQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-toy6TEY4uQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-toy6TEY4uQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-toy6TEY4uQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #353535;
}
.cid-toy6TEY4uQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-toy6TEY4uQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toy6TEY4uQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toy6TEY4uQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-toy6TEY4uQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toy6TEY4uQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-toy6TEY4uQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-toy6TEY4uQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toy6TEY4uQ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-toy6TEY4uQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-toy6TEY4uQ .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-toy6TEY4uQ .navbar {
    height: 70px;
  }
  .cid-toy6TEY4uQ .navbar.opened {
    height: auto;
  }
  .cid-toy6TEY4uQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-toy70ZxB0z {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-toy70ZxB0z .row-links {
  width: 100%;
  justify-content: center;
}
.cid-toy70ZxB0z .social-row {
  width: 100%;
  justify-content: center;
}
.cid-toy70ZxB0z .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-toy70ZxB0z .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-toy70ZxB0z .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-toy70ZxB0z .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-toy70ZxB0z .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-toy70ZxB0z .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-toy70ZxB0z .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-toy70ZxB0z .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-toy70ZxB0z .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-toy70ZxB0z .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-toy70ZxB0z .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-toy70ZxB0z .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tnvR10kHV4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tnvR10kHV4 .carousel {
    min-height: 800px;
  }
  .cid-tnvR10kHV4 .carousel img {
    max-height: 800px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tnvR10kHV4 .carousel {
    min-height: 520px;
  }
  .cid-tnvR10kHV4 .carousel img {
    max-height: 520px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-tnvR10kHV4 .carousel {
    min-height: 440px;
  }
  .cid-tnvR10kHV4 .carousel img {
    max-height: 440px;
    object-fit: contain;
  }
  .cid-tnvR10kHV4 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tnvR10kHV4 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tnvR10kHV4 .carousel,
.cid-tnvR10kHV4 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tnvR10kHV4 .item-wrapper {
  width: 100%;
}
.cid-tnvR10kHV4 .carousel-caption {
  bottom: 40px;
}
.cid-tnvR10kHV4 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tnvR10kHV4 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tnvR10kHV4 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tnvR10kHV4 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tnvR10kHV4 .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tnvR10kHV4 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tnvR10kHV4 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tnvR10kHV4 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tnvR10kHV4 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tnvR10kHV4 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tnvR10kHV4 .carousel-indicators li.active,
.cid-tnvR10kHV4 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tnvR10kHV4 .carousel-indicators li::after,
.cid-tnvR10kHV4 .carousel-indicators li::before {
  content: none;
}
.cid-tnvR10kHV4 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tnvR10kHV4 .carousel-indicators {
    display: none !important;
  }
}
.cid-tnvR135hPR {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tnvR135hPR img,
.cid-tnvR135hPR .item-img {
  width: 100%;
}
.cid-tnvR135hPR .item:focus,
.cid-tnvR135hPR span:focus {
  outline: none;
}
.cid-tnvR135hPR .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tnvR135hPR .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tnvR135hPR .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tnvR135hPR .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tnvR135hPR .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tnvR135hPR .mbr-section-title {
  color: #232323;
}
.cid-tnvR135hPR .mbr-text,
.cid-tnvR135hPR .mbr-section-btn {
  text-align: left;
}
.cid-tnvR135hPR .item-title {
  text-align: left;
}
.cid-tnvR135hPR .item-subtitle {
  text-align: left;
}
.cid-tnvR15lq2V {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tnvR15lq2V img,
.cid-tnvR15lq2V .item-img {
  width: 100%;
}
.cid-tnvR15lq2V .item:focus,
.cid-tnvR15lq2V span:focus {
  outline: none;
}
.cid-tnvR15lq2V .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tnvR15lq2V .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tnvR15lq2V .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tnvR15lq2V .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tnvR15lq2V .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tnvR15lq2V .mbr-section-title {
  color: #232323;
}
.cid-tnvR15lq2V .mbr-text,
.cid-tnvR15lq2V .mbr-section-btn {
  text-align: left;
}
.cid-tnvR15lq2V .item-title {
  text-align: left;
}
.cid-tnvR15lq2V .item-subtitle {
  text-align: left;
}
.cid-tnvR17ePkY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tnvR17ePkY img,
.cid-tnvR17ePkY .item-img {
  width: 100%;
}
.cid-tnvR17ePkY .item:focus,
.cid-tnvR17ePkY span:focus {
  outline: none;
}
.cid-tnvR17ePkY .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tnvR17ePkY .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tnvR17ePkY .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tnvR17ePkY .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tnvR17ePkY .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tnvR17ePkY .mbr-section-title {
  color: #232323;
}
.cid-tnvR17ePkY .mbr-text,
.cid-tnvR17ePkY .mbr-section-btn {
  text-align: left;
}
.cid-tnvR17ePkY .item-title {
  text-align: left;
}
.cid-tnvR17ePkY .item-subtitle {
  text-align: left;
}
.cid-toy6TEY4uQ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-toy6TEY4uQ nav.navbar {
  position: fixed;
}
.cid-toy6TEY4uQ .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-toy6TEY4uQ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-toy6TEY4uQ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-toy6TEY4uQ .dropdown-item:hover,
.cid-toy6TEY4uQ .dropdown-item:focus {
  background: #05386b !important;
  color: white !important;
}
.cid-toy6TEY4uQ .dropdown-item:hover span {
  color: white;
}
.cid-toy6TEY4uQ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-toy6TEY4uQ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-toy6TEY4uQ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-toy6TEY4uQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-toy6TEY4uQ .nav-link {
  position: relative;
}
.cid-toy6TEY4uQ .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-toy6TEY4uQ .container {
    flex-wrap: nowrap;
  }
}
.cid-toy6TEY4uQ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-toy6TEY4uQ .dropdown-menu,
.cid-toy6TEY4uQ .navbar.opened {
  background: #ebe8e8 !important;
}
.cid-toy6TEY4uQ .nav-item:focus,
.cid-toy6TEY4uQ .nav-link:focus {
  outline: none;
}
.cid-toy6TEY4uQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-toy6TEY4uQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-toy6TEY4uQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-toy6TEY4uQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-toy6TEY4uQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-toy6TEY4uQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-toy6TEY4uQ .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: #ebe8e8;
}
.cid-toy6TEY4uQ .navbar.opened {
  transition: all 0.3s;
}
.cid-toy6TEY4uQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-toy6TEY4uQ .navbar .navbar-logo img {
  width: auto;
}
.cid-toy6TEY4uQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-toy6TEY4uQ .navbar.collapsed {
  justify-content: center;
}
.cid-toy6TEY4uQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-toy6TEY4uQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-toy6TEY4uQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.1rem);
  }
}
.cid-toy6TEY4uQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-toy6TEY4uQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-toy6TEY4uQ .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-toy6TEY4uQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-toy6TEY4uQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-toy6TEY4uQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-toy6TEY4uQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-toy6TEY4uQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-toy6TEY4uQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-toy6TEY4uQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-toy6TEY4uQ .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-toy6TEY4uQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-toy6TEY4uQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-toy6TEY4uQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-toy6TEY4uQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-toy6TEY4uQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-toy6TEY4uQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-toy6TEY4uQ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-toy6TEY4uQ .navbar.navbar-short {
  min-height: 60px;
}
.cid-toy6TEY4uQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-toy6TEY4uQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-toy6TEY4uQ .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-toy6TEY4uQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-toy6TEY4uQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-toy6TEY4uQ .dropdown-item.active,
.cid-toy6TEY4uQ .dropdown-item:active {
  background-color: transparent;
}
.cid-toy6TEY4uQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-toy6TEY4uQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-toy6TEY4uQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-toy6TEY4uQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ebe8e8;
}
.cid-toy6TEY4uQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-toy6TEY4uQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-toy6TEY4uQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-toy6TEY4uQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-toy6TEY4uQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-toy6TEY4uQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #353535;
}
.cid-toy6TEY4uQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-toy6TEY4uQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toy6TEY4uQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toy6TEY4uQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-toy6TEY4uQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toy6TEY4uQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-toy6TEY4uQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-toy6TEY4uQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toy6TEY4uQ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-toy6TEY4uQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-toy6TEY4uQ .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-toy6TEY4uQ .navbar {
    height: 70px;
  }
  .cid-toy6TEY4uQ .navbar.opened {
    height: auto;
  }
  .cid-toy6TEY4uQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-toy70ZxB0z {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-toy70ZxB0z .row-links {
  width: 100%;
  justify-content: center;
}
.cid-toy70ZxB0z .social-row {
  width: 100%;
  justify-content: center;
}
.cid-toy70ZxB0z .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-toy70ZxB0z .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-toy70ZxB0z .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-toy70ZxB0z .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-toy70ZxB0z .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-toy70ZxB0z .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-toy70ZxB0z .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-toy70ZxB0z .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-toy70ZxB0z .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-toy70ZxB0z .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-toy70ZxB0z .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-toy70ZxB0z .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tnvvaF8A7z {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tnvvaF8A7z .carousel {
    min-height: 800px;
  }
  .cid-tnvvaF8A7z .carousel img {
    max-height: 800px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tnvvaF8A7z .carousel {
    min-height: 520px;
  }
  .cid-tnvvaF8A7z .carousel img {
    max-height: 520px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-tnvvaF8A7z .carousel {
    min-height: 440px;
  }
  .cid-tnvvaF8A7z .carousel img {
    max-height: 440px;
    object-fit: contain;
  }
  .cid-tnvvaF8A7z .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tnvvaF8A7z .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tnvvaF8A7z .carousel,
.cid-tnvvaF8A7z .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tnvvaF8A7z .item-wrapper {
  width: 100%;
}
.cid-tnvvaF8A7z .carousel-caption {
  bottom: 40px;
}
.cid-tnvvaF8A7z .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tnvvaF8A7z .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tnvvaF8A7z .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tnvvaF8A7z .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tnvvaF8A7z .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tnvvaF8A7z .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tnvvaF8A7z .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tnvvaF8A7z .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tnvvaF8A7z .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tnvvaF8A7z .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tnvvaF8A7z .carousel-indicators li.active,
.cid-tnvvaF8A7z .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tnvvaF8A7z .carousel-indicators li::after,
.cid-tnvvaF8A7z .carousel-indicators li::before {
  content: none;
}
.cid-tnvvaF8A7z .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tnvvaF8A7z .carousel-indicators {
    display: none !important;
  }
}
.cid-tnvvaIyBir {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tnvvaIyBir img,
.cid-tnvvaIyBir .item-img {
  width: 100%;
}
.cid-tnvvaIyBir .item:focus,
.cid-tnvvaIyBir span:focus {
  outline: none;
}
.cid-tnvvaIyBir .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tnvvaIyBir .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tnvvaIyBir .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tnvvaIyBir .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tnvvaIyBir .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tnvvaIyBir .mbr-section-title {
  color: #232323;
}
.cid-tnvvaIyBir .mbr-text,
.cid-tnvvaIyBir .mbr-section-btn {
  text-align: left;
}
.cid-tnvvaIyBir .item-title {
  text-align: left;
}
.cid-tnvvaIyBir .item-subtitle {
  text-align: left;
}
.cid-tnvvaKIb3I {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tnvvaKIb3I img,
.cid-tnvvaKIb3I .item-img {
  width: 100%;
}
.cid-tnvvaKIb3I .item:focus,
.cid-tnvvaKIb3I span:focus {
  outline: none;
}
.cid-tnvvaKIb3I .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tnvvaKIb3I .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tnvvaKIb3I .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tnvvaKIb3I .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tnvvaKIb3I .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tnvvaKIb3I .mbr-section-title {
  color: #232323;
}
.cid-tnvvaKIb3I .mbr-text,
.cid-tnvvaKIb3I .mbr-section-btn {
  text-align: left;
}
.cid-tnvvaKIb3I .item-title {
  text-align: left;
}
.cid-tnvvaKIb3I .item-subtitle {
  text-align: left;
}
.cid-tnvvaMUkL2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tnvvaMUkL2 img,
.cid-tnvvaMUkL2 .item-img {
  width: 100%;
}
.cid-tnvvaMUkL2 .item:focus,
.cid-tnvvaMUkL2 span:focus {
  outline: none;
}
.cid-tnvvaMUkL2 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tnvvaMUkL2 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tnvvaMUkL2 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tnvvaMUkL2 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tnvvaMUkL2 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tnvvaMUkL2 .mbr-section-title {
  color: #232323;
}
.cid-tnvvaMUkL2 .mbr-text,
.cid-tnvvaMUkL2 .mbr-section-btn {
  text-align: left;
}
.cid-tnvvaMUkL2 .item-title {
  text-align: left;
}
.cid-tnvvaMUkL2 .item-subtitle {
  text-align: left;
}
.cid-toy6TEY4uQ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-toy6TEY4uQ nav.navbar {
  position: fixed;
}
.cid-toy6TEY4uQ .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-toy6TEY4uQ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-toy6TEY4uQ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-toy6TEY4uQ .dropdown-item:hover,
.cid-toy6TEY4uQ .dropdown-item:focus {
  background: #05386b !important;
  color: white !important;
}
.cid-toy6TEY4uQ .dropdown-item:hover span {
  color: white;
}
.cid-toy6TEY4uQ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-toy6TEY4uQ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-toy6TEY4uQ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-toy6TEY4uQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-toy6TEY4uQ .nav-link {
  position: relative;
}
.cid-toy6TEY4uQ .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-toy6TEY4uQ .container {
    flex-wrap: nowrap;
  }
}
.cid-toy6TEY4uQ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-toy6TEY4uQ .dropdown-menu,
.cid-toy6TEY4uQ .navbar.opened {
  background: #ebe8e8 !important;
}
.cid-toy6TEY4uQ .nav-item:focus,
.cid-toy6TEY4uQ .nav-link:focus {
  outline: none;
}
.cid-toy6TEY4uQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-toy6TEY4uQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-toy6TEY4uQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-toy6TEY4uQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-toy6TEY4uQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-toy6TEY4uQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-toy6TEY4uQ .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: #ebe8e8;
}
.cid-toy6TEY4uQ .navbar.opened {
  transition: all 0.3s;
}
.cid-toy6TEY4uQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-toy6TEY4uQ .navbar .navbar-logo img {
  width: auto;
}
.cid-toy6TEY4uQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-toy6TEY4uQ .navbar.collapsed {
  justify-content: center;
}
.cid-toy6TEY4uQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-toy6TEY4uQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-toy6TEY4uQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.1rem);
  }
}
.cid-toy6TEY4uQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-toy6TEY4uQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-toy6TEY4uQ .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-toy6TEY4uQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-toy6TEY4uQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-toy6TEY4uQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-toy6TEY4uQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-toy6TEY4uQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-toy6TEY4uQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-toy6TEY4uQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-toy6TEY4uQ .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-toy6TEY4uQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-toy6TEY4uQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-toy6TEY4uQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-toy6TEY4uQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-toy6TEY4uQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-toy6TEY4uQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-toy6TEY4uQ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-toy6TEY4uQ .navbar.navbar-short {
  min-height: 60px;
}
.cid-toy6TEY4uQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-toy6TEY4uQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-toy6TEY4uQ .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-toy6TEY4uQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-toy6TEY4uQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-toy6TEY4uQ .dropdown-item.active,
.cid-toy6TEY4uQ .dropdown-item:active {
  background-color: transparent;
}
.cid-toy6TEY4uQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-toy6TEY4uQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-toy6TEY4uQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-toy6TEY4uQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ebe8e8;
}
.cid-toy6TEY4uQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-toy6TEY4uQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-toy6TEY4uQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-toy6TEY4uQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-toy6TEY4uQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-toy6TEY4uQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #353535;
}
.cid-toy6TEY4uQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-toy6TEY4uQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toy6TEY4uQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toy6TEY4uQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-toy6TEY4uQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toy6TEY4uQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-toy6TEY4uQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-toy6TEY4uQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toy6TEY4uQ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-toy6TEY4uQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-toy6TEY4uQ .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-toy6TEY4uQ .navbar {
    height: 70px;
  }
  .cid-toy6TEY4uQ .navbar.opened {
    height: auto;
  }
  .cid-toy6TEY4uQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-toy70ZxB0z {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-toy70ZxB0z .row-links {
  width: 100%;
  justify-content: center;
}
.cid-toy70ZxB0z .social-row {
  width: 100%;
  justify-content: center;
}
.cid-toy70ZxB0z .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-toy70ZxB0z .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-toy70ZxB0z .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-toy70ZxB0z .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-toy70ZxB0z .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-toy70ZxB0z .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-toy70ZxB0z .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-toy70ZxB0z .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-toy70ZxB0z .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-toy70ZxB0z .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-toy70ZxB0z .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-toy70ZxB0z .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tnvmXpvy0W {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tnvmXpvy0W .carousel {
    min-height: 800px;
  }
  .cid-tnvmXpvy0W .carousel img {
    max-height: 800px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tnvmXpvy0W .carousel {
    min-height: 520px;
  }
  .cid-tnvmXpvy0W .carousel img {
    max-height: 520px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-tnvmXpvy0W .carousel {
    min-height: 440px;
  }
  .cid-tnvmXpvy0W .carousel img {
    max-height: 440px;
    object-fit: contain;
  }
  .cid-tnvmXpvy0W .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tnvmXpvy0W .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tnvmXpvy0W .carousel,
.cid-tnvmXpvy0W .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tnvmXpvy0W .item-wrapper {
  width: 100%;
}
.cid-tnvmXpvy0W .carousel-caption {
  bottom: 40px;
}
.cid-tnvmXpvy0W .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tnvmXpvy0W .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tnvmXpvy0W .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tnvmXpvy0W .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tnvmXpvy0W .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tnvmXpvy0W .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tnvmXpvy0W .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tnvmXpvy0W .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tnvmXpvy0W .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tnvmXpvy0W .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tnvmXpvy0W .carousel-indicators li.active,
.cid-tnvmXpvy0W .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tnvmXpvy0W .carousel-indicators li::after,
.cid-tnvmXpvy0W .carousel-indicators li::before {
  content: none;
}
.cid-tnvmXpvy0W .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tnvmXpvy0W .carousel-indicators {
    display: none !important;
  }
}
.cid-tnvmXrZqY8 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tnvmXrZqY8 img,
.cid-tnvmXrZqY8 .item-img {
  width: 100%;
}
.cid-tnvmXrZqY8 .item:focus,
.cid-tnvmXrZqY8 span:focus {
  outline: none;
}
.cid-tnvmXrZqY8 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tnvmXrZqY8 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tnvmXrZqY8 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tnvmXrZqY8 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tnvmXrZqY8 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tnvmXrZqY8 .mbr-section-title {
  color: #232323;
}
.cid-tnvmXrZqY8 .mbr-text,
.cid-tnvmXrZqY8 .mbr-section-btn {
  text-align: left;
}
.cid-tnvmXrZqY8 .item-title {
  text-align: left;
}
.cid-tnvmXrZqY8 .item-subtitle {
  text-align: left;
}
.cid-tnvmXum6iQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tnvmXum6iQ img,
.cid-tnvmXum6iQ .item-img {
  width: 100%;
}
.cid-tnvmXum6iQ .item:focus,
.cid-tnvmXum6iQ span:focus {
  outline: none;
}
.cid-tnvmXum6iQ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tnvmXum6iQ .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tnvmXum6iQ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tnvmXum6iQ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tnvmXum6iQ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tnvmXum6iQ .mbr-section-title {
  color: #232323;
}
.cid-tnvmXum6iQ .mbr-text,
.cid-tnvmXum6iQ .mbr-section-btn {
  text-align: left;
}
.cid-tnvmXum6iQ .item-title {
  text-align: left;
}
.cid-tnvmXum6iQ .item-subtitle {
  text-align: left;
}
.cid-tnvmXwspRB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tnvmXwspRB img,
.cid-tnvmXwspRB .item-img {
  width: 100%;
}
.cid-tnvmXwspRB .item:focus,
.cid-tnvmXwspRB span:focus {
  outline: none;
}
.cid-tnvmXwspRB .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tnvmXwspRB .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tnvmXwspRB .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tnvmXwspRB .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tnvmXwspRB .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tnvmXwspRB .mbr-section-title {
  color: #232323;
}
.cid-tnvmXwspRB .mbr-text,
.cid-tnvmXwspRB .mbr-section-btn {
  text-align: left;
}
.cid-tnvmXwspRB .item-title {
  text-align: left;
}
.cid-tnvmXwspRB .item-subtitle {
  text-align: left;
}
.cid-toy6TEY4uQ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-toy6TEY4uQ nav.navbar {
  position: fixed;
}
.cid-toy6TEY4uQ .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-toy6TEY4uQ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-toy6TEY4uQ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-toy6TEY4uQ .dropdown-item:hover,
.cid-toy6TEY4uQ .dropdown-item:focus {
  background: #05386b !important;
  color: white !important;
}
.cid-toy6TEY4uQ .dropdown-item:hover span {
  color: white;
}
.cid-toy6TEY4uQ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-toy6TEY4uQ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-toy6TEY4uQ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-toy6TEY4uQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-toy6TEY4uQ .nav-link {
  position: relative;
}
.cid-toy6TEY4uQ .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-toy6TEY4uQ .container {
    flex-wrap: nowrap;
  }
}
.cid-toy6TEY4uQ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-toy6TEY4uQ .dropdown-menu,
.cid-toy6TEY4uQ .navbar.opened {
  background: #ebe8e8 !important;
}
.cid-toy6TEY4uQ .nav-item:focus,
.cid-toy6TEY4uQ .nav-link:focus {
  outline: none;
}
.cid-toy6TEY4uQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-toy6TEY4uQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-toy6TEY4uQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-toy6TEY4uQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-toy6TEY4uQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-toy6TEY4uQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-toy6TEY4uQ .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: #ebe8e8;
}
.cid-toy6TEY4uQ .navbar.opened {
  transition: all 0.3s;
}
.cid-toy6TEY4uQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-toy6TEY4uQ .navbar .navbar-logo img {
  width: auto;
}
.cid-toy6TEY4uQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-toy6TEY4uQ .navbar.collapsed {
  justify-content: center;
}
.cid-toy6TEY4uQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-toy6TEY4uQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-toy6TEY4uQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.1rem);
  }
}
.cid-toy6TEY4uQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-toy6TEY4uQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-toy6TEY4uQ .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-toy6TEY4uQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-toy6TEY4uQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-toy6TEY4uQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-toy6TEY4uQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-toy6TEY4uQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-toy6TEY4uQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-toy6TEY4uQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-toy6TEY4uQ .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-toy6TEY4uQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-toy6TEY4uQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-toy6TEY4uQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-toy6TEY4uQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-toy6TEY4uQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-toy6TEY4uQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-toy6TEY4uQ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-toy6TEY4uQ .navbar.navbar-short {
  min-height: 60px;
}
.cid-toy6TEY4uQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-toy6TEY4uQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-toy6TEY4uQ .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-toy6TEY4uQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-toy6TEY4uQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-toy6TEY4uQ .dropdown-item.active,
.cid-toy6TEY4uQ .dropdown-item:active {
  background-color: transparent;
}
.cid-toy6TEY4uQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-toy6TEY4uQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-toy6TEY4uQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-toy6TEY4uQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ebe8e8;
}
.cid-toy6TEY4uQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-toy6TEY4uQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-toy6TEY4uQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-toy6TEY4uQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-toy6TEY4uQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-toy6TEY4uQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #353535;
}
.cid-toy6TEY4uQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-toy6TEY4uQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toy6TEY4uQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toy6TEY4uQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-toy6TEY4uQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toy6TEY4uQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-toy6TEY4uQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-toy6TEY4uQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toy6TEY4uQ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-toy6TEY4uQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-toy6TEY4uQ .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-toy6TEY4uQ .navbar {
    height: 70px;
  }
  .cid-toy6TEY4uQ .navbar.opened {
    height: auto;
  }
  .cid-toy6TEY4uQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-toy70ZxB0z {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-toy70ZxB0z .row-links {
  width: 100%;
  justify-content: center;
}
.cid-toy70ZxB0z .social-row {
  width: 100%;
  justify-content: center;
}
.cid-toy70ZxB0z .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-toy70ZxB0z .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-toy70ZxB0z .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-toy70ZxB0z .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-toy70ZxB0z .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-toy70ZxB0z .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-toy70ZxB0z .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-toy70ZxB0z .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-toy70ZxB0z .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-toy70ZxB0z .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-toy70ZxB0z .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-toy70ZxB0z .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tnwjU9OHWh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tnwjU9OHWh .carousel {
    min-height: 800px;
  }
  .cid-tnwjU9OHWh .carousel img {
    max-height: 800px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tnwjU9OHWh .carousel {
    min-height: 520px;
  }
  .cid-tnwjU9OHWh .carousel img {
    max-height: 520px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-tnwjU9OHWh .carousel {
    min-height: 440px;
  }
  .cid-tnwjU9OHWh .carousel img {
    max-height: 440px;
    object-fit: contain;
  }
  .cid-tnwjU9OHWh .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tnwjU9OHWh .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tnwjU9OHWh .carousel,
.cid-tnwjU9OHWh .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tnwjU9OHWh .item-wrapper {
  width: 100%;
}
.cid-tnwjU9OHWh .carousel-caption {
  bottom: 40px;
}
.cid-tnwjU9OHWh .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tnwjU9OHWh .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tnwjU9OHWh .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tnwjU9OHWh .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tnwjU9OHWh .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tnwjU9OHWh .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tnwjU9OHWh .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tnwjU9OHWh .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tnwjU9OHWh .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tnwjU9OHWh .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tnwjU9OHWh .carousel-indicators li.active,
.cid-tnwjU9OHWh .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tnwjU9OHWh .carousel-indicators li::after,
.cid-tnwjU9OHWh .carousel-indicators li::before {
  content: none;
}
.cid-tnwjU9OHWh .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tnwjU9OHWh .carousel-indicators {
    display: none !important;
  }
}
.cid-tnwjUbmP7H {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tnwjUbmP7H img,
.cid-tnwjUbmP7H .item-img {
  width: 100%;
}
.cid-tnwjUbmP7H .item:focus,
.cid-tnwjUbmP7H span:focus {
  outline: none;
}
.cid-tnwjUbmP7H .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tnwjUbmP7H .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tnwjUbmP7H .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tnwjUbmP7H .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tnwjUbmP7H .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tnwjUbmP7H .mbr-section-title {
  color: #232323;
}
.cid-tnwjUbmP7H .mbr-text,
.cid-tnwjUbmP7H .mbr-section-btn {
  text-align: left;
}
.cid-tnwjUbmP7H .item-title {
  text-align: left;
}
.cid-tnwjUbmP7H .item-subtitle {
  text-align: left;
}
.cid-toy6TEY4uQ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-toy6TEY4uQ nav.navbar {
  position: fixed;
}
.cid-toy6TEY4uQ .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-toy6TEY4uQ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-toy6TEY4uQ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-toy6TEY4uQ .dropdown-item:hover,
.cid-toy6TEY4uQ .dropdown-item:focus {
  background: #05386b !important;
  color: white !important;
}
.cid-toy6TEY4uQ .dropdown-item:hover span {
  color: white;
}
.cid-toy6TEY4uQ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-toy6TEY4uQ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-toy6TEY4uQ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-toy6TEY4uQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-toy6TEY4uQ .nav-link {
  position: relative;
}
.cid-toy6TEY4uQ .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-toy6TEY4uQ .container {
    flex-wrap: nowrap;
  }
}
.cid-toy6TEY4uQ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-toy6TEY4uQ .dropdown-menu,
.cid-toy6TEY4uQ .navbar.opened {
  background: #ebe8e8 !important;
}
.cid-toy6TEY4uQ .nav-item:focus,
.cid-toy6TEY4uQ .nav-link:focus {
  outline: none;
}
.cid-toy6TEY4uQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-toy6TEY4uQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-toy6TEY4uQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-toy6TEY4uQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-toy6TEY4uQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-toy6TEY4uQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-toy6TEY4uQ .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: #ebe8e8;
}
.cid-toy6TEY4uQ .navbar.opened {
  transition: all 0.3s;
}
.cid-toy6TEY4uQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-toy6TEY4uQ .navbar .navbar-logo img {
  width: auto;
}
.cid-toy6TEY4uQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-toy6TEY4uQ .navbar.collapsed {
  justify-content: center;
}
.cid-toy6TEY4uQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-toy6TEY4uQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-toy6TEY4uQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.1rem);
  }
}
.cid-toy6TEY4uQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-toy6TEY4uQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-toy6TEY4uQ .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-toy6TEY4uQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-toy6TEY4uQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-toy6TEY4uQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-toy6TEY4uQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-toy6TEY4uQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-toy6TEY4uQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-toy6TEY4uQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-toy6TEY4uQ .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-toy6TEY4uQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-toy6TEY4uQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-toy6TEY4uQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-toy6TEY4uQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-toy6TEY4uQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-toy6TEY4uQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-toy6TEY4uQ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-toy6TEY4uQ .navbar.navbar-short {
  min-height: 60px;
}
.cid-toy6TEY4uQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-toy6TEY4uQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-toy6TEY4uQ .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-toy6TEY4uQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-toy6TEY4uQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-toy6TEY4uQ .dropdown-item.active,
.cid-toy6TEY4uQ .dropdown-item:active {
  background-color: transparent;
}
.cid-toy6TEY4uQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-toy6TEY4uQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-toy6TEY4uQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-toy6TEY4uQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ebe8e8;
}
.cid-toy6TEY4uQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-toy6TEY4uQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-toy6TEY4uQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-toy6TEY4uQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-toy6TEY4uQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-toy6TEY4uQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #353535;
}
.cid-toy6TEY4uQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-toy6TEY4uQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toy6TEY4uQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toy6TEY4uQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-toy6TEY4uQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toy6TEY4uQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-toy6TEY4uQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-toy6TEY4uQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toy6TEY4uQ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-toy6TEY4uQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-toy6TEY4uQ .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-toy6TEY4uQ .navbar {
    height: 70px;
  }
  .cid-toy6TEY4uQ .navbar.opened {
    height: auto;
  }
  .cid-toy6TEY4uQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-toy70ZxB0z {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-toy70ZxB0z .row-links {
  width: 100%;
  justify-content: center;
}
.cid-toy70ZxB0z .social-row {
  width: 100%;
  justify-content: center;
}
.cid-toy70ZxB0z .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-toy70ZxB0z .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-toy70ZxB0z .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-toy70ZxB0z .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-toy70ZxB0z .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-toy70ZxB0z .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-toy70ZxB0z .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-toy70ZxB0z .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-toy70ZxB0z .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-toy70ZxB0z .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-toy70ZxB0z .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-toy70ZxB0z .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tnwFPFe67Q {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tnwFPFe67Q .carousel {
    min-height: 800px;
  }
  .cid-tnwFPFe67Q .carousel img {
    max-height: 800px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tnwFPFe67Q .carousel {
    min-height: 520px;
  }
  .cid-tnwFPFe67Q .carousel img {
    max-height: 520px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-tnwFPFe67Q .carousel {
    min-height: 440px;
  }
  .cid-tnwFPFe67Q .carousel img {
    max-height: 440px;
    object-fit: contain;
  }
  .cid-tnwFPFe67Q .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tnwFPFe67Q .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tnwFPFe67Q .carousel,
.cid-tnwFPFe67Q .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tnwFPFe67Q .item-wrapper {
  width: 100%;
}
.cid-tnwFPFe67Q .carousel-caption {
  bottom: 40px;
}
.cid-tnwFPFe67Q .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tnwFPFe67Q .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tnwFPFe67Q .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tnwFPFe67Q .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tnwFPFe67Q .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tnwFPFe67Q .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tnwFPFe67Q .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tnwFPFe67Q .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tnwFPFe67Q .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tnwFPFe67Q .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tnwFPFe67Q .carousel-indicators li.active,
.cid-tnwFPFe67Q .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tnwFPFe67Q .carousel-indicators li::after,
.cid-tnwFPFe67Q .carousel-indicators li::before {
  content: none;
}
.cid-tnwFPFe67Q .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tnwFPFe67Q .carousel-indicators {
    display: none !important;
  }
}
.cid-tnwHJ57V7Q {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tnwHJ57V7Q img,
.cid-tnwHJ57V7Q .item-img {
  width: 100%;
}
.cid-tnwHJ57V7Q .item:focus,
.cid-tnwHJ57V7Q span:focus {
  outline: none;
}
.cid-tnwHJ57V7Q .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tnwHJ57V7Q .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tnwHJ57V7Q .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tnwHJ57V7Q .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tnwHJ57V7Q .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tnwHJ57V7Q .mbr-section-title {
  color: #232323;
}
.cid-tnwHJ57V7Q .mbr-text,
.cid-tnwHJ57V7Q .mbr-section-btn {
  text-align: left;
}
.cid-tnwHJ57V7Q .item-title {
  text-align: left;
}
.cid-tnwHJ57V7Q .item-subtitle {
  text-align: left;
}
.cid-tnwFPIgTWJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tnwFPIgTWJ img,
.cid-tnwFPIgTWJ .item-img {
  width: 100%;
}
.cid-tnwFPIgTWJ .item:focus,
.cid-tnwFPIgTWJ span:focus {
  outline: none;
}
.cid-tnwFPIgTWJ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tnwFPIgTWJ .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tnwFPIgTWJ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tnwFPIgTWJ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tnwFPIgTWJ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tnwFPIgTWJ .mbr-section-title {
  color: #232323;
}
.cid-tnwFPIgTWJ .mbr-text,
.cid-tnwFPIgTWJ .mbr-section-btn {
  text-align: left;
}
.cid-tnwFPIgTWJ .item-title {
  text-align: left;
}
.cid-tnwFPIgTWJ .item-subtitle {
  text-align: left;
}
.cid-toy6TEY4uQ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-toy6TEY4uQ nav.navbar {
  position: fixed;
}
.cid-toy6TEY4uQ .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-toy6TEY4uQ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-toy6TEY4uQ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-toy6TEY4uQ .dropdown-item:hover,
.cid-toy6TEY4uQ .dropdown-item:focus {
  background: #05386b !important;
  color: white !important;
}
.cid-toy6TEY4uQ .dropdown-item:hover span {
  color: white;
}
.cid-toy6TEY4uQ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-toy6TEY4uQ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-toy6TEY4uQ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-toy6TEY4uQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-toy6TEY4uQ .nav-link {
  position: relative;
}
.cid-toy6TEY4uQ .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-toy6TEY4uQ .container {
    flex-wrap: nowrap;
  }
}
.cid-toy6TEY4uQ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-toy6TEY4uQ .dropdown-menu,
.cid-toy6TEY4uQ .navbar.opened {
  background: #ebe8e8 !important;
}
.cid-toy6TEY4uQ .nav-item:focus,
.cid-toy6TEY4uQ .nav-link:focus {
  outline: none;
}
.cid-toy6TEY4uQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-toy6TEY4uQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-toy6TEY4uQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-toy6TEY4uQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-toy6TEY4uQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-toy6TEY4uQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-toy6TEY4uQ .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: #ebe8e8;
}
.cid-toy6TEY4uQ .navbar.opened {
  transition: all 0.3s;
}
.cid-toy6TEY4uQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-toy6TEY4uQ .navbar .navbar-logo img {
  width: auto;
}
.cid-toy6TEY4uQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-toy6TEY4uQ .navbar.collapsed {
  justify-content: center;
}
.cid-toy6TEY4uQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-toy6TEY4uQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-toy6TEY4uQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.1rem);
  }
}
.cid-toy6TEY4uQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-toy6TEY4uQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-toy6TEY4uQ .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-toy6TEY4uQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-toy6TEY4uQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-toy6TEY4uQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-toy6TEY4uQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-toy6TEY4uQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-toy6TEY4uQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-toy6TEY4uQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-toy6TEY4uQ .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-toy6TEY4uQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-toy6TEY4uQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-toy6TEY4uQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-toy6TEY4uQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-toy6TEY4uQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-toy6TEY4uQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-toy6TEY4uQ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-toy6TEY4uQ .navbar.navbar-short {
  min-height: 60px;
}
.cid-toy6TEY4uQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-toy6TEY4uQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-toy6TEY4uQ .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-toy6TEY4uQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-toy6TEY4uQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-toy6TEY4uQ .dropdown-item.active,
.cid-toy6TEY4uQ .dropdown-item:active {
  background-color: transparent;
}
.cid-toy6TEY4uQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-toy6TEY4uQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-toy6TEY4uQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-toy6TEY4uQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ebe8e8;
}
.cid-toy6TEY4uQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-toy6TEY4uQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-toy6TEY4uQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-toy6TEY4uQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-toy6TEY4uQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-toy6TEY4uQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #353535;
}
.cid-toy6TEY4uQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-toy6TEY4uQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toy6TEY4uQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toy6TEY4uQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-toy6TEY4uQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toy6TEY4uQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-toy6TEY4uQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-toy6TEY4uQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toy6TEY4uQ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-toy6TEY4uQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-toy6TEY4uQ .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-toy6TEY4uQ .navbar {
    height: 70px;
  }
  .cid-toy6TEY4uQ .navbar.opened {
    height: auto;
  }
  .cid-toy6TEY4uQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-toy70ZxB0z {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-toy70ZxB0z .row-links {
  width: 100%;
  justify-content: center;
}
.cid-toy70ZxB0z .social-row {
  width: 100%;
  justify-content: center;
}
.cid-toy70ZxB0z .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-toy70ZxB0z .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-toy70ZxB0z .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-toy70ZxB0z .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-toy70ZxB0z .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-toy70ZxB0z .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-toy70ZxB0z .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-toy70ZxB0z .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-toy70ZxB0z .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-toy70ZxB0z .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-toy70ZxB0z .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-toy70ZxB0z .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-toxQLL60Rx {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ebe8e8;
}
.cid-toxQLL60Rx .mbr-section-title {
  color: #05386b;
  text-align: left;
}
.cid-toxQLL60Rx .mbr-section-subtitle {
  color: #05386b;
  text-align: left;
}
.cid-tGyOqwyG3v {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ebe8e8;
}
.cid-tGyOqwyG3v .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGyOqwyG3v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGyOqwyG3v .video-wrapper iframe {
  width: 100%;
}
.cid-tGyOqwyG3v .mbr-section-title,
.cid-tGyOqwyG3v .mbr-section-subtitle,
.cid-tGyOqwyG3v .mbr-text {
  text-align: center;
}
.cid-tGyOqwyG3v .mbr-section-title {
  text-align: center;
}
.cid-toxQYs3D2K {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ebe8e8;
}
.cid-toxQYs3D2K .mbr-fallback-image.disabled {
  display: none;
}
.cid-toxQYs3D2K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-toxQYs3D2K .video-wrapper iframe {
  width: 100%;
}
.cid-toxQYs3D2K .mbr-section-title,
.cid-toxQYs3D2K .mbr-section-subtitle,
.cid-toxQYs3D2K .mbr-text {
  text-align: center;
}
.cid-toxQYs3D2K .mbr-section-title {
  text-align: center;
}
.cid-toxSUbHjtr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ebe8e8;
}
.cid-toxSUbHjtr .mbr-fallback-image.disabled {
  display: none;
}
.cid-toxSUbHjtr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-toxSUbHjtr .video-wrapper iframe {
  width: 100%;
}
.cid-toxSUbHjtr .mbr-section-title,
.cid-toxSUbHjtr .mbr-section-subtitle,
.cid-toxSUbHjtr .mbr-text {
  text-align: center;
}
.cid-toxUge5HX0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ebe8e8;
}
.cid-toxUge5HX0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-toxUge5HX0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-toxUge5HX0 .video-wrapper iframe {
  width: 100%;
}
.cid-toxUge5HX0 .mbr-section-title,
.cid-toxUge5HX0 .mbr-section-subtitle,
.cid-toxUge5HX0 .mbr-text {
  text-align: center;
}
.cid-toyAKfNaax {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ebe8e8;
}
.cid-toyAKfNaax .mbr-fallback-image.disabled {
  display: none;
}
.cid-toyAKfNaax .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-toyAKfNaax .video-wrapper iframe {
  width: 100%;
}
.cid-toyAKfNaax .mbr-section-title,
.cid-toyAKfNaax .mbr-section-subtitle,
.cid-toyAKfNaax .mbr-text {
  text-align: center;
}
.cid-toyEdpNyxu {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ebe8e8;
}
.cid-toyEdpNyxu .mbr-fallback-image.disabled {
  display: none;
}
.cid-toyEdpNyxu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-toyEdpNyxu .video-wrapper iframe {
  width: 100%;
}
.cid-toyEdpNyxu .mbr-section-title,
.cid-toyEdpNyxu .mbr-section-subtitle,
.cid-toyEdpNyxu .mbr-text {
  text-align: center;
}
.cid-toyEc0MrdO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ebe8e8;
}
.cid-toyEc0MrdO .mbr-fallback-image.disabled {
  display: none;
}
.cid-toyEc0MrdO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-toyEc0MrdO .video-wrapper iframe {
  width: 100%;
}
.cid-toyEc0MrdO .mbr-section-title,
.cid-toyEc0MrdO .mbr-section-subtitle,
.cid-toyEc0MrdO .mbr-text {
  text-align: center;
}
.cid-toxZMbmdr6 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ebe8e8;
}
.cid-toxZMbmdr6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-toxZMbmdr6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-toxZMbmdr6 .video-wrapper iframe {
  width: 100%;
}
.cid-toxZMbmdr6 .mbr-section-title,
.cid-toxZMbmdr6 .mbr-section-subtitle,
.cid-toxZMbmdr6 .mbr-text {
  text-align: center;
}
.cid-toyRvX3rLR {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ebe8e8;
}
.cid-toyRvX3rLR .mbr-fallback-image.disabled {
  display: none;
}
.cid-toyRvX3rLR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-toyRvX3rLR .video-wrapper iframe {
  width: 100%;
}
.cid-toyRvX3rLR .mbr-section-title,
.cid-toyRvX3rLR .mbr-section-subtitle,
.cid-toyRvX3rLR .mbr-text {
  text-align: center;
}
.cid-toy1kpXl5t {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ebe8e8;
}
.cid-toy1kpXl5t .mbr-fallback-image.disabled {
  display: none;
}
.cid-toy1kpXl5t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-toy1kpXl5t .video-wrapper iframe {
  width: 100%;
}
.cid-toy1kpXl5t .mbr-section-title,
.cid-toy1kpXl5t .mbr-section-subtitle,
.cid-toy1kpXl5t .mbr-text {
  text-align: center;
}
.cid-tp8gOaqU3v {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ebe8e8;
}
.cid-tp8gOaqU3v .mbr-fallback-image.disabled {
  display: none;
}
.cid-tp8gOaqU3v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tp8gOaqU3v .video-wrapper iframe {
  width: 100%;
}
.cid-tp8gOaqU3v .mbr-section-title,
.cid-tp8gOaqU3v .mbr-section-subtitle,
.cid-tp8gOaqU3v .mbr-text {
  text-align: center;
}
.cid-tp8gOaqU3v .mbr-section-title {
  text-align: center;
}
.cid-toy6TEY4uQ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-toy6TEY4uQ nav.navbar {
  position: fixed;
}
.cid-toy6TEY4uQ .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-toy6TEY4uQ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-toy6TEY4uQ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-toy6TEY4uQ .dropdown-item:hover,
.cid-toy6TEY4uQ .dropdown-item:focus {
  background: #05386b !important;
  color: white !important;
}
.cid-toy6TEY4uQ .dropdown-item:hover span {
  color: white;
}
.cid-toy6TEY4uQ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-toy6TEY4uQ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-toy6TEY4uQ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-toy6TEY4uQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-toy6TEY4uQ .nav-link {
  position: relative;
}
.cid-toy6TEY4uQ .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-toy6TEY4uQ .container {
    flex-wrap: nowrap;
  }
}
.cid-toy6TEY4uQ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-toy6TEY4uQ .dropdown-menu,
.cid-toy6TEY4uQ .navbar.opened {
  background: #ebe8e8 !important;
}
.cid-toy6TEY4uQ .nav-item:focus,
.cid-toy6TEY4uQ .nav-link:focus {
  outline: none;
}
.cid-toy6TEY4uQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-toy6TEY4uQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-toy6TEY4uQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-toy6TEY4uQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-toy6TEY4uQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-toy6TEY4uQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-toy6TEY4uQ .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: #ebe8e8;
}
.cid-toy6TEY4uQ .navbar.opened {
  transition: all 0.3s;
}
.cid-toy6TEY4uQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-toy6TEY4uQ .navbar .navbar-logo img {
  width: auto;
}
.cid-toy6TEY4uQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-toy6TEY4uQ .navbar.collapsed {
  justify-content: center;
}
.cid-toy6TEY4uQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-toy6TEY4uQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-toy6TEY4uQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.1rem);
  }
}
.cid-toy6TEY4uQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-toy6TEY4uQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-toy6TEY4uQ .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-toy6TEY4uQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-toy6TEY4uQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-toy6TEY4uQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-toy6TEY4uQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-toy6TEY4uQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-toy6TEY4uQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-toy6TEY4uQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-toy6TEY4uQ .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-toy6TEY4uQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-toy6TEY4uQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-toy6TEY4uQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-toy6TEY4uQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-toy6TEY4uQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-toy6TEY4uQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-toy6TEY4uQ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-toy6TEY4uQ .navbar.navbar-short {
  min-height: 60px;
}
.cid-toy6TEY4uQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-toy6TEY4uQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-toy6TEY4uQ .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-toy6TEY4uQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-toy6TEY4uQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-toy6TEY4uQ .dropdown-item.active,
.cid-toy6TEY4uQ .dropdown-item:active {
  background-color: transparent;
}
.cid-toy6TEY4uQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-toy6TEY4uQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-toy6TEY4uQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-toy6TEY4uQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ebe8e8;
}
.cid-toy6TEY4uQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-toy6TEY4uQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-toy6TEY4uQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-toy6TEY4uQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-toy6TEY4uQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-toy6TEY4uQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #353535;
}
.cid-toy6TEY4uQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-toy6TEY4uQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toy6TEY4uQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toy6TEY4uQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-toy6TEY4uQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toy6TEY4uQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-toy6TEY4uQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-toy6TEY4uQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toy6TEY4uQ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-toy6TEY4uQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-toy6TEY4uQ .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-toy6TEY4uQ .navbar {
    height: 70px;
  }
  .cid-toy6TEY4uQ .navbar.opened {
    height: auto;
  }
  .cid-toy6TEY4uQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-toy70ZxB0z {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-toy70ZxB0z .row-links {
  width: 100%;
  justify-content: center;
}
.cid-toy70ZxB0z .social-row {
  width: 100%;
  justify-content: center;
}
.cid-toy70ZxB0z .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-toy70ZxB0z .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-toy70ZxB0z .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-toy70ZxB0z .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-toy70ZxB0z .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-toy70ZxB0z .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-toy70ZxB0z .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-toy70ZxB0z .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-toy70ZxB0z .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-toy70ZxB0z .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-toy70ZxB0z .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-toy70ZxB0z .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tGyEiilhh2 {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ebe8e8;
}
.cid-tGyEiilhh2 img,
.cid-tGyEiilhh2 .item-img {
  width: 100%;
}
.cid-tGyEiilhh2 .item:focus,
.cid-tGyEiilhh2 span:focus {
  outline: none;
}
.cid-tGyEiilhh2 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tGyEiilhh2 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tGyEiilhh2 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tGyEiilhh2 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tGyEiilhh2 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tGyEiilhh2 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tGyEiilhh2 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tGyEiilhh2 .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-tGyEiilhh2 .mbr-text,
.cid-tGyEiilhh2 .mbr-section-btn {
  text-align: left;
}
.cid-tGyEiilhh2 .item-title {
  text-align: left;
}
.cid-tGyEiilhh2 .item-subtitle {
  text-align: left;
}
.cid-to4p8Viynu {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ebe8e8;
}
.cid-to4p8Viynu img,
.cid-to4p8Viynu .item-img {
  width: 100%;
}
.cid-to4p8Viynu .item:focus,
.cid-to4p8Viynu span:focus {
  outline: none;
}
.cid-to4p8Viynu .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-to4p8Viynu .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-to4p8Viynu .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-to4p8Viynu .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-to4p8Viynu .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-to4p8Viynu .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-to4p8Viynu .mbr-section-btn {
  margin-top: auto !important;
}
.cid-to4p8Viynu .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-to4p8Viynu .mbr-text,
.cid-to4p8Viynu .mbr-section-btn {
  text-align: left;
}
.cid-to4p8Viynu .item-title {
  text-align: left;
}
.cid-to4p8Viynu .item-subtitle {
  text-align: left;
}
.cid-tnYUgskI5V {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ebe8e8;
}
.cid-tnYUgskI5V img,
.cid-tnYUgskI5V .item-img {
  width: 100%;
}
.cid-tnYUgskI5V .item:focus,
.cid-tnYUgskI5V span:focus {
  outline: none;
}
.cid-tnYUgskI5V .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tnYUgskI5V .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tnYUgskI5V .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tnYUgskI5V .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tnYUgskI5V .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tnYUgskI5V .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tnYUgskI5V .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tnYUgskI5V .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-tnYUgskI5V .mbr-text,
.cid-tnYUgskI5V .mbr-section-btn {
  text-align: left;
}
.cid-tnYUgskI5V .item-title {
  text-align: left;
}
.cid-tnYUgskI5V .item-subtitle {
  text-align: left;
}
.cid-tnZvv2rWI6 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ebe8e8;
}
.cid-tnZvv2rWI6 img,
.cid-tnZvv2rWI6 .item-img {
  width: 100%;
}
.cid-tnZvv2rWI6 .item:focus,
.cid-tnZvv2rWI6 span:focus {
  outline: none;
}
.cid-tnZvv2rWI6 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tnZvv2rWI6 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tnZvv2rWI6 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tnZvv2rWI6 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tnZvv2rWI6 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tnZvv2rWI6 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tnZvv2rWI6 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tnZvv2rWI6 .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-tnZvv2rWI6 .mbr-text,
.cid-tnZvv2rWI6 .mbr-section-btn {
  text-align: left;
}
.cid-tnZvv2rWI6 .item-title {
  text-align: left;
}
.cid-tnZvv2rWI6 .item-subtitle {
  text-align: left;
}
.cid-to003WcIJG {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ebe8e8;
}
.cid-to003WcIJG img,
.cid-to003WcIJG .item-img {
  width: 100%;
}
.cid-to003WcIJG .item:focus,
.cid-to003WcIJG span:focus {
  outline: none;
}
.cid-to003WcIJG .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-to003WcIJG .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-to003WcIJG .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-to003WcIJG .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-to003WcIJG .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-to003WcIJG .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-to003WcIJG .mbr-section-btn {
  margin-top: auto !important;
}
.cid-to003WcIJG .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-to003WcIJG .mbr-text,
.cid-to003WcIJG .mbr-section-btn {
  text-align: left;
}
.cid-to003WcIJG .item-title {
  text-align: left;
}
.cid-to003WcIJG .item-subtitle {
  text-align: left;
}
.cid-to01aougad {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ebe8e8;
}
.cid-to01aougad img,
.cid-to01aougad .item-img {
  width: 100%;
}
.cid-to01aougad .item:focus,
.cid-to01aougad span:focus {
  outline: none;
}
.cid-to01aougad .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-to01aougad .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-to01aougad .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-to01aougad .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-to01aougad .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-to01aougad .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-to01aougad .mbr-section-btn {
  margin-top: auto !important;
}
.cid-to01aougad .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-to01aougad .mbr-text,
.cid-to01aougad .mbr-section-btn {
  text-align: left;
}
.cid-to01aougad .item-title {
  text-align: left;
}
.cid-to01aougad .item-subtitle {
  text-align: left;
}
.cid-tnZswEtHtV {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ebe8e8;
}
.cid-tnZswEtHtV img,
.cid-tnZswEtHtV .item-img {
  width: 100%;
}
.cid-tnZswEtHtV .item:focus,
.cid-tnZswEtHtV span:focus {
  outline: none;
}
.cid-tnZswEtHtV .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tnZswEtHtV .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tnZswEtHtV .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tnZswEtHtV .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tnZswEtHtV .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tnZswEtHtV .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tnZswEtHtV .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tnZswEtHtV .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-tnZswEtHtV .mbr-text,
.cid-tnZswEtHtV .mbr-section-btn {
  text-align: left;
}
.cid-tnZswEtHtV .item-title {
  text-align: left;
}
.cid-tnZswEtHtV .item-subtitle {
  text-align: left;
}
.cid-tnTZxDKgju {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ebe8e8;
}
.cid-tnTZxDKgju img,
.cid-tnTZxDKgju .item-img {
  width: 100%;
}
.cid-tnTZxDKgju .item:focus,
.cid-tnTZxDKgju span:focus {
  outline: none;
}
.cid-tnTZxDKgju .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tnTZxDKgju .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tnTZxDKgju .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tnTZxDKgju .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tnTZxDKgju .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tnTZxDKgju .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tnTZxDKgju .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tnTZxDKgju .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-tnTZxDKgju .mbr-text,
.cid-tnTZxDKgju .mbr-section-btn {
  text-align: left;
}
.cid-tnTZxDKgju .item-title {
  text-align: left;
}
.cid-tnTZxDKgju .item-subtitle {
  text-align: left;
}
.cid-tnT1pq7FWS {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ebe8e8;
}
.cid-tnT1pq7FWS img,
.cid-tnT1pq7FWS .item-img {
  width: 100%;
}
.cid-tnT1pq7FWS .item:focus,
.cid-tnT1pq7FWS span:focus {
  outline: none;
}
.cid-tnT1pq7FWS .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tnT1pq7FWS .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tnT1pq7FWS .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tnT1pq7FWS .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tnT1pq7FWS .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tnT1pq7FWS .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tnT1pq7FWS .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tnT1pq7FWS .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-tnT1pq7FWS .mbr-text,
.cid-tnT1pq7FWS .mbr-section-btn {
  text-align: left;
}
.cid-tnT1pq7FWS .item-title {
  text-align: left;
}
.cid-tnT1pq7FWS .item-subtitle {
  text-align: left;
}
.cid-tnT1psrbh0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ebe8e8;
}
.cid-tnT1psrbh0 img,
.cid-tnT1psrbh0 .item-img {
  width: 100%;
}
.cid-tnT1psrbh0 .item:focus,
.cid-tnT1psrbh0 span:focus {
  outline: none;
}
.cid-tnT1psrbh0 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tnT1psrbh0 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tnT1psrbh0 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tnT1psrbh0 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tnT1psrbh0 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tnT1psrbh0 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tnT1psrbh0 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tnT1psrbh0 .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-tnT1psrbh0 .mbr-text,
.cid-tnT1psrbh0 .mbr-section-btn {
  text-align: left;
}
.cid-tnT1psrbh0 .item-title {
  text-align: left;
}
.cid-tnT1psrbh0 .item-subtitle {
  text-align: left;
}
.cid-tnT1punccU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ebe8e8;
}
.cid-tnT1punccU img,
.cid-tnT1punccU .item-img {
  width: 100%;
}
.cid-tnT1punccU .item:focus,
.cid-tnT1punccU span:focus {
  outline: none;
}
.cid-tnT1punccU .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tnT1punccU .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tnT1punccU .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tnT1punccU .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tnT1punccU .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tnT1punccU .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tnT1punccU .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tnT1punccU .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-tnT1punccU .mbr-text,
.cid-tnT1punccU .mbr-section-btn {
  text-align: left;
}
.cid-tnT1punccU .item-title {
  text-align: left;
}
.cid-tnT1punccU .item-subtitle {
  text-align: left;
}
.cid-tnT7abrcO5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ebe8e8;
}
.cid-tnT7abrcO5 img,
.cid-tnT7abrcO5 .item-img {
  width: 100%;
}
.cid-tnT7abrcO5 .item:focus,
.cid-tnT7abrcO5 span:focus {
  outline: none;
}
.cid-tnT7abrcO5 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tnT7abrcO5 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tnT7abrcO5 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tnT7abrcO5 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tnT7abrcO5 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tnT7abrcO5 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tnT7abrcO5 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tnT7abrcO5 .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-tnT7abrcO5 .mbr-text,
.cid-tnT7abrcO5 .mbr-section-btn {
  text-align: left;
}
.cid-tnT7abrcO5 .item-title {
  text-align: left;
}
.cid-tnT7abrcO5 .item-subtitle {
  text-align: left;
}
.cid-tnTQfrj3om {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ebe8e8;
}
.cid-tnTQfrj3om img,
.cid-tnTQfrj3om .item-img {
  width: 100%;
}
.cid-tnTQfrj3om .item:focus,
.cid-tnTQfrj3om span:focus {
  outline: none;
}
.cid-tnTQfrj3om .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tnTQfrj3om .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tnTQfrj3om .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tnTQfrj3om .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tnTQfrj3om .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tnTQfrj3om .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tnTQfrj3om .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tnTQfrj3om .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-tnTQfrj3om .mbr-text,
.cid-tnTQfrj3om .mbr-section-btn {
  text-align: left;
}
.cid-tnTQfrj3om .item-title {
  text-align: left;
}
.cid-tnTQfrj3om .item-subtitle {
  text-align: left;
}
.cid-tnTX8urr4b {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ebe8e8;
}
.cid-tnTX8urr4b img,
.cid-tnTX8urr4b .item-img {
  width: 100%;
}
.cid-tnTX8urr4b .item:focus,
.cid-tnTX8urr4b span:focus {
  outline: none;
}
.cid-tnTX8urr4b .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tnTX8urr4b .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tnTX8urr4b .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tnTX8urr4b .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tnTX8urr4b .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tnTX8urr4b .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tnTX8urr4b .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tnTX8urr4b .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-tnTX8urr4b .mbr-text,
.cid-tnTX8urr4b .mbr-section-btn {
  text-align: left;
}
.cid-tnTX8urr4b .item-title {
  text-align: left;
}
.cid-tnTX8urr4b .item-subtitle {
  text-align: left;
}
.cid-tnTX9eziOn {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ebe8e8;
}
.cid-tnTX9eziOn img,
.cid-tnTX9eziOn .item-img {
  width: 100%;
}
.cid-tnTX9eziOn .item:focus,
.cid-tnTX9eziOn span:focus {
  outline: none;
}
.cid-tnTX9eziOn .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tnTX9eziOn .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tnTX9eziOn .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tnTX9eziOn .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tnTX9eziOn .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tnTX9eziOn .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tnTX9eziOn .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tnTX9eziOn .mbr-section-title {
  color: #232323;
}
.cid-tnTX9eziOn .mbr-text,
.cid-tnTX9eziOn .mbr-section-btn {
  text-align: left;
}
.cid-tnTX9eziOn .item-title {
  text-align: left;
}
.cid-tnTX9eziOn .item-subtitle {
  text-align: left;
}
.cid-tnTXfi3LDU {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ebe8e8;
}
.cid-tnTXfi3LDU img,
.cid-tnTXfi3LDU .item-img {
  width: 100%;
}
.cid-tnTXfi3LDU .item:focus,
.cid-tnTXfi3LDU span:focus {
  outline: none;
}
.cid-tnTXfi3LDU .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tnTXfi3LDU .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tnTXfi3LDU .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tnTXfi3LDU .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tnTXfi3LDU .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tnTXfi3LDU .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tnTXfi3LDU .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tnTXfi3LDU .mbr-section-title {
  color: #232323;
}
.cid-tnTXfi3LDU .mbr-text,
.cid-tnTXfi3LDU .mbr-section-btn {
  text-align: left;
}
.cid-tnTXfi3LDU .item-title {
  text-align: left;
}
.cid-tnTXfi3LDU .item-subtitle {
  text-align: left;
}
.cid-to4v6iXIBc {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ebe8e8;
}
.cid-to4v6iXIBc img,
.cid-to4v6iXIBc .item-img {
  width: 100%;
}
.cid-to4v6iXIBc .item:focus,
.cid-to4v6iXIBc span:focus {
  outline: none;
}
.cid-to4v6iXIBc .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-to4v6iXIBc .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-to4v6iXIBc .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-to4v6iXIBc .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-to4v6iXIBc .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-to4v6iXIBc .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-to4v6iXIBc .mbr-section-btn {
  margin-top: auto !important;
}
.cid-to4v6iXIBc .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-to4v6iXIBc .mbr-text,
.cid-to4v6iXIBc .mbr-section-btn {
  text-align: left;
}
.cid-to4v6iXIBc .item-title {
  text-align: left;
}
.cid-to4v6iXIBc .item-subtitle {
  text-align: left;
}
.cid-toy6TEY4uQ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-toy6TEY4uQ nav.navbar {
  position: fixed;
}
.cid-toy6TEY4uQ .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-toy6TEY4uQ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-toy6TEY4uQ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-toy6TEY4uQ .dropdown-item:hover,
.cid-toy6TEY4uQ .dropdown-item:focus {
  background: #05386b !important;
  color: white !important;
}
.cid-toy6TEY4uQ .dropdown-item:hover span {
  color: white;
}
.cid-toy6TEY4uQ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-toy6TEY4uQ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-toy6TEY4uQ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-toy6TEY4uQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-toy6TEY4uQ .nav-link {
  position: relative;
}
.cid-toy6TEY4uQ .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-toy6TEY4uQ .container {
    flex-wrap: nowrap;
  }
}
.cid-toy6TEY4uQ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-toy6TEY4uQ .dropdown-menu,
.cid-toy6TEY4uQ .navbar.opened {
  background: #ebe8e8 !important;
}
.cid-toy6TEY4uQ .nav-item:focus,
.cid-toy6TEY4uQ .nav-link:focus {
  outline: none;
}
.cid-toy6TEY4uQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-toy6TEY4uQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-toy6TEY4uQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-toy6TEY4uQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-toy6TEY4uQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-toy6TEY4uQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-toy6TEY4uQ .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: #ebe8e8;
}
.cid-toy6TEY4uQ .navbar.opened {
  transition: all 0.3s;
}
.cid-toy6TEY4uQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-toy6TEY4uQ .navbar .navbar-logo img {
  width: auto;
}
.cid-toy6TEY4uQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-toy6TEY4uQ .navbar.collapsed {
  justify-content: center;
}
.cid-toy6TEY4uQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-toy6TEY4uQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-toy6TEY4uQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.1rem);
  }
}
.cid-toy6TEY4uQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-toy6TEY4uQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-toy6TEY4uQ .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-toy6TEY4uQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-toy6TEY4uQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-toy6TEY4uQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-toy6TEY4uQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-toy6TEY4uQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-toy6TEY4uQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-toy6TEY4uQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-toy6TEY4uQ .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-toy6TEY4uQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-toy6TEY4uQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-toy6TEY4uQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-toy6TEY4uQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-toy6TEY4uQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-toy6TEY4uQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-toy6TEY4uQ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-toy6TEY4uQ .navbar.navbar-short {
  min-height: 60px;
}
.cid-toy6TEY4uQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-toy6TEY4uQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-toy6TEY4uQ .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-toy6TEY4uQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-toy6TEY4uQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-toy6TEY4uQ .dropdown-item.active,
.cid-toy6TEY4uQ .dropdown-item:active {
  background-color: transparent;
}
.cid-toy6TEY4uQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-toy6TEY4uQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-toy6TEY4uQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-toy6TEY4uQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ebe8e8;
}
.cid-toy6TEY4uQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-toy6TEY4uQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-toy6TEY4uQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-toy6TEY4uQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-toy6TEY4uQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-toy6TEY4uQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #353535;
}
.cid-toy6TEY4uQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-toy6TEY4uQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toy6TEY4uQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toy6TEY4uQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-toy6TEY4uQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toy6TEY4uQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-toy6TEY4uQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-toy6TEY4uQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toy6TEY4uQ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-toy6TEY4uQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-toy6TEY4uQ .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-toy6TEY4uQ .navbar {
    height: 70px;
  }
  .cid-toy6TEY4uQ .navbar.opened {
    height: auto;
  }
  .cid-toy6TEY4uQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-toy70ZxB0z {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-toy70ZxB0z .row-links {
  width: 100%;
  justify-content: center;
}
.cid-toy70ZxB0z .social-row {
  width: 100%;
  justify-content: center;
}
.cid-toy70ZxB0z .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-toy70ZxB0z .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-toy70ZxB0z .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-toy70ZxB0z .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-toy70ZxB0z .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-toy70ZxB0z .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-toy70ZxB0z .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-toy70ZxB0z .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-toy70ZxB0z .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-toy70ZxB0z .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-toy70ZxB0z .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-toy70ZxB0z .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tnBEnDp4ag {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tnBEnDp4ag .carousel {
    min-height: 800px;
  }
  .cid-tnBEnDp4ag .carousel img {
    max-height: 800px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tnBEnDp4ag .carousel {
    min-height: 520px;
  }
  .cid-tnBEnDp4ag .carousel img {
    max-height: 520px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-tnBEnDp4ag .carousel {
    min-height: 440px;
  }
  .cid-tnBEnDp4ag .carousel img {
    max-height: 440px;
    object-fit: contain;
  }
  .cid-tnBEnDp4ag .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tnBEnDp4ag .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tnBEnDp4ag .carousel,
.cid-tnBEnDp4ag .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tnBEnDp4ag .item-wrapper {
  width: 100%;
}
.cid-tnBEnDp4ag .carousel-caption {
  bottom: 40px;
}
.cid-tnBEnDp4ag .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tnBEnDp4ag .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tnBEnDp4ag .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tnBEnDp4ag .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tnBEnDp4ag .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tnBEnDp4ag .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tnBEnDp4ag .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tnBEnDp4ag .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tnBEnDp4ag .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tnBEnDp4ag .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tnBEnDp4ag .carousel-indicators li.active,
.cid-tnBEnDp4ag .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tnBEnDp4ag .carousel-indicators li::after,
.cid-tnBEnDp4ag .carousel-indicators li::before {
  content: none;
}
.cid-tnBEnDp4ag .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tnBEnDp4ag .carousel-indicators {
    display: none !important;
  }
}
.cid-tnBEnDp4ag H5 {
  color: #353535;
  text-align: left;
}
.cid-tnBEnEoQx4 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tnBEnEoQx4 img,
.cid-tnBEnEoQx4 .item-img {
  width: 100%;
}
.cid-tnBEnEoQx4 .item:focus,
.cid-tnBEnEoQx4 span:focus {
  outline: none;
}
.cid-tnBEnEoQx4 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tnBEnEoQx4 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tnBEnEoQx4 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tnBEnEoQx4 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tnBEnEoQx4 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tnBEnEoQx4 .mbr-section-title {
  color: #232323;
}
.cid-tnBEnEoQx4 .mbr-text,
.cid-tnBEnEoQx4 .mbr-section-btn {
  text-align: left;
}
.cid-tnBEnEoQx4 .item-title {
  text-align: left;
}
.cid-tnBEnEoQx4 .item-subtitle {
  text-align: left;
}
.cid-toy6TEY4uQ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-toy6TEY4uQ nav.navbar {
  position: fixed;
}
.cid-toy6TEY4uQ .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-toy6TEY4uQ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-toy6TEY4uQ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-toy6TEY4uQ .dropdown-item:hover,
.cid-toy6TEY4uQ .dropdown-item:focus {
  background: #05386b !important;
  color: white !important;
}
.cid-toy6TEY4uQ .dropdown-item:hover span {
  color: white;
}
.cid-toy6TEY4uQ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-toy6TEY4uQ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-toy6TEY4uQ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-toy6TEY4uQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-toy6TEY4uQ .nav-link {
  position: relative;
}
.cid-toy6TEY4uQ .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-toy6TEY4uQ .container {
    flex-wrap: nowrap;
  }
}
.cid-toy6TEY4uQ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-toy6TEY4uQ .dropdown-menu,
.cid-toy6TEY4uQ .navbar.opened {
  background: #ebe8e8 !important;
}
.cid-toy6TEY4uQ .nav-item:focus,
.cid-toy6TEY4uQ .nav-link:focus {
  outline: none;
}
.cid-toy6TEY4uQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-toy6TEY4uQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-toy6TEY4uQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-toy6TEY4uQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-toy6TEY4uQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-toy6TEY4uQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-toy6TEY4uQ .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: #ebe8e8;
}
.cid-toy6TEY4uQ .navbar.opened {
  transition: all 0.3s;
}
.cid-toy6TEY4uQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-toy6TEY4uQ .navbar .navbar-logo img {
  width: auto;
}
.cid-toy6TEY4uQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-toy6TEY4uQ .navbar.collapsed {
  justify-content: center;
}
.cid-toy6TEY4uQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-toy6TEY4uQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-toy6TEY4uQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.1rem);
  }
}
.cid-toy6TEY4uQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-toy6TEY4uQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-toy6TEY4uQ .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-toy6TEY4uQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-toy6TEY4uQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-toy6TEY4uQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-toy6TEY4uQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-toy6TEY4uQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-toy6TEY4uQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-toy6TEY4uQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-toy6TEY4uQ .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-toy6TEY4uQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-toy6TEY4uQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-toy6TEY4uQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-toy6TEY4uQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-toy6TEY4uQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-toy6TEY4uQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-toy6TEY4uQ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-toy6TEY4uQ .navbar.navbar-short {
  min-height: 60px;
}
.cid-toy6TEY4uQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-toy6TEY4uQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-toy6TEY4uQ .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-toy6TEY4uQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-toy6TEY4uQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-toy6TEY4uQ .dropdown-item.active,
.cid-toy6TEY4uQ .dropdown-item:active {
  background-color: transparent;
}
.cid-toy6TEY4uQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-toy6TEY4uQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-toy6TEY4uQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-toy6TEY4uQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ebe8e8;
}
.cid-toy6TEY4uQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-toy6TEY4uQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-toy6TEY4uQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-toy6TEY4uQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-toy6TEY4uQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-toy6TEY4uQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #353535;
}
.cid-toy6TEY4uQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-toy6TEY4uQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toy6TEY4uQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toy6TEY4uQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-toy6TEY4uQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toy6TEY4uQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-toy6TEY4uQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-toy6TEY4uQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toy6TEY4uQ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-toy6TEY4uQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-toy6TEY4uQ .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-toy6TEY4uQ .navbar {
    height: 70px;
  }
  .cid-toy6TEY4uQ .navbar.opened {
    height: auto;
  }
  .cid-toy6TEY4uQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-toy70ZxB0z {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-toy70ZxB0z .row-links {
  width: 100%;
  justify-content: center;
}
.cid-toy70ZxB0z .social-row {
  width: 100%;
  justify-content: center;
}
.cid-toy70ZxB0z .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-toy70ZxB0z .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-toy70ZxB0z .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-toy70ZxB0z .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-toy70ZxB0z .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-toy70ZxB0z .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-toy70ZxB0z .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-toy70ZxB0z .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-toy70ZxB0z .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-toy70ZxB0z .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-toy70ZxB0z .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-toy70ZxB0z .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-toV5rwOIu1 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-toV5rwOIu1 nav.navbar {
  position: fixed;
}
.cid-toV5rwOIu1 .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-toV5rwOIu1 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-toV5rwOIu1 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-toV5rwOIu1 .dropdown-item:hover,
.cid-toV5rwOIu1 .dropdown-item:focus {
  background: #05386b !important;
  color: white !important;
}
.cid-toV5rwOIu1 .dropdown-item:hover span {
  color: white;
}
.cid-toV5rwOIu1 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-toV5rwOIu1 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-toV5rwOIu1 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-toV5rwOIu1 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-toV5rwOIu1 .nav-link {
  position: relative;
}
.cid-toV5rwOIu1 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-toV5rwOIu1 .container {
    flex-wrap: nowrap;
  }
}
.cid-toV5rwOIu1 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-toV5rwOIu1 .dropdown-menu,
.cid-toV5rwOIu1 .navbar.opened {
  background: #ebe8e8 !important;
}
.cid-toV5rwOIu1 .nav-item:focus,
.cid-toV5rwOIu1 .nav-link:focus {
  outline: none;
}
.cid-toV5rwOIu1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-toV5rwOIu1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-toV5rwOIu1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-toV5rwOIu1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-toV5rwOIu1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-toV5rwOIu1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-toV5rwOIu1 .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: #ebe8e8;
}
.cid-toV5rwOIu1 .navbar.opened {
  transition: all 0.3s;
}
.cid-toV5rwOIu1 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-toV5rwOIu1 .navbar .navbar-logo img {
  width: auto;
}
.cid-toV5rwOIu1 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-toV5rwOIu1 .navbar.collapsed {
  justify-content: center;
}
.cid-toV5rwOIu1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-toV5rwOIu1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-toV5rwOIu1 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.1rem);
  }
}
.cid-toV5rwOIu1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-toV5rwOIu1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-toV5rwOIu1 .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-toV5rwOIu1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-toV5rwOIu1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-toV5rwOIu1 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-toV5rwOIu1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-toV5rwOIu1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-toV5rwOIu1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-toV5rwOIu1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-toV5rwOIu1 .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-toV5rwOIu1 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-toV5rwOIu1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-toV5rwOIu1 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-toV5rwOIu1 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-toV5rwOIu1 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-toV5rwOIu1 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-toV5rwOIu1 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-toV5rwOIu1 .navbar.navbar-short {
  min-height: 60px;
}
.cid-toV5rwOIu1 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-toV5rwOIu1 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-toV5rwOIu1 .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-toV5rwOIu1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-toV5rwOIu1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-toV5rwOIu1 .dropdown-item.active,
.cid-toV5rwOIu1 .dropdown-item:active {
  background-color: transparent;
}
.cid-toV5rwOIu1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-toV5rwOIu1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-toV5rwOIu1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-toV5rwOIu1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ebe8e8;
}
.cid-toV5rwOIu1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-toV5rwOIu1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-toV5rwOIu1 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-toV5rwOIu1 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-toV5rwOIu1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-toV5rwOIu1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #353535;
}
.cid-toV5rwOIu1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-toV5rwOIu1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toV5rwOIu1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toV5rwOIu1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-toV5rwOIu1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toV5rwOIu1 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-toV5rwOIu1 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-toV5rwOIu1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toV5rwOIu1 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-toV5rwOIu1 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-toV5rwOIu1 .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-toV5rwOIu1 .navbar {
    height: 70px;
  }
  .cid-toV5rwOIu1 .navbar.opened {
    height: auto;
  }
  .cid-toV5rwOIu1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tpodIOV4EH {
  padding-top: 7rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-tpodIOV4EH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tpodIOV4EH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tpodIOV4EH .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-toV6xxILeS {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background: #ebe8e8;
}
.cid-toV6xxILeS .mbr-fallback-image.disabled {
  display: none;
}
.cid-toV6xxILeS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-toV6xxILeS .row {
    flex-direction: column-reverse;
  }
  .cid-toV6xxILeS .row .map-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-toV6xxILeS .google-map {
  height: 100%;
  position: relative;
}
.cid-toV6xxILeS .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-toV6xxILeS .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-toV6xxILeS .google-map[data-state] {
  background: #e9e5dc;
}
.cid-toV6xxILeS .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-toV6xxILeS .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-toV6xxILeS .card-wrapper {
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
.cid-toV6xxILeS .card-wrapper:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-toV6xxILeS .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-toV6xxILeS .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-toV6xxILeS .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #05386b;
}
.cid-toV6Avr0dr {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ebe8e8;
}
.cid-toV6Avr0dr .mbr-fallback-image.disabled {
  display: none;
}
.cid-toV6Avr0dr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-toV6Avr0dr .media-container-row {
  justify-content: space-between;
}
.cid-toV6Avr0dr .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-toV6Avr0dr .text-content {
    max-width: none;
  }
}
.cid-toV6Avr0dr .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #e43f3f;
  border: 2px solid #e43f3f;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-toV6Avr0dr .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-toV6Avr0dr .mbr-iconfont-social:hover {
  background-color: #e43f3f;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-toV6Avr0dr .icons {
    justify-content: center !important;
  }
  .cid-toV6Avr0dr .text-content * {
    text-align: center;
  }
}
.cid-toV5rzlPMJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-toV5rzlPMJ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-toV5rzlPMJ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-toV5rzlPMJ .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-toV5rzlPMJ .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-toV5rzlPMJ .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-toV5rzlPMJ .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-toV5rzlPMJ .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-toV5rzlPMJ .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-toV5rzlPMJ .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-toV5rzlPMJ .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-toV5rzlPMJ .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-toV5rzlPMJ .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-toV5rzlPMJ .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-toV5rzlPMJ .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tnkw1H6Ut8 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ebe8e8;
}
.cid-tnkw1H6Ut8 img,
.cid-tnkw1H6Ut8 .item-img {
  width: 100%;
}
.cid-tnkw1H6Ut8 .item:focus,
.cid-tnkw1H6Ut8 span:focus {
  outline: none;
}
.cid-tnkw1H6Ut8 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tnkw1H6Ut8 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tnkw1H6Ut8 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tnkw1H6Ut8 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tnkw1H6Ut8 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tnkw1H6Ut8 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tnkw1H6Ut8 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tnkw1H6Ut8 .mbr-section-title {
  color: #232323;
}
.cid-tnkw1H6Ut8 .mbr-text,
.cid-tnkw1H6Ut8 .mbr-section-btn {
  text-align: left;
}
.cid-tnkw1H6Ut8 .item-title {
  text-align: left;
}
.cid-tnkw1H6Ut8 .item-subtitle {
  text-align: left;
}
.cid-tnkxv3zrxY {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ebe8e8;
}
.cid-tnkxv3zrxY img,
.cid-tnkxv3zrxY .item-img {
  width: 100%;
}
.cid-tnkxv3zrxY .item:focus,
.cid-tnkxv3zrxY span:focus {
  outline: none;
}
.cid-tnkxv3zrxY .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tnkxv3zrxY .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tnkxv3zrxY .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tnkxv3zrxY .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tnkxv3zrxY .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tnkxv3zrxY .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tnkxv3zrxY .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tnkxv3zrxY .mbr-section-title {
  color: #232323;
}
.cid-tnkxv3zrxY .mbr-text,
.cid-tnkxv3zrxY .mbr-section-btn {
  text-align: left;
}
.cid-tnkxv3zrxY .item-title {
  text-align: left;
}
.cid-tnkxv3zrxY .item-subtitle {
  text-align: left;
}
.cid-tnkMI8PS7P {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ebe8e8;
}
.cid-tnkMI8PS7P img,
.cid-tnkMI8PS7P .item-img {
  width: 100%;
}
.cid-tnkMI8PS7P .item:focus,
.cid-tnkMI8PS7P span:focus {
  outline: none;
}
.cid-tnkMI8PS7P .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tnkMI8PS7P .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tnkMI8PS7P .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tnkMI8PS7P .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tnkMI8PS7P .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tnkMI8PS7P .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tnkMI8PS7P .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tnkMI8PS7P .mbr-section-title {
  color: #232323;
}
.cid-tnkMI8PS7P .mbr-text,
.cid-tnkMI8PS7P .mbr-section-btn {
  text-align: left;
}
.cid-tnkMI8PS7P .item-title {
  text-align: left;
}
.cid-tnkMI8PS7P .item-subtitle {
  text-align: left;
}
.cid-tKkFaRzlRI {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ebe8e8;
}
.cid-tKkFaRzlRI img,
.cid-tKkFaRzlRI .item-img {
  width: 100%;
}
.cid-tKkFaRzlRI .item:focus,
.cid-tKkFaRzlRI span:focus {
  outline: none;
}
.cid-tKkFaRzlRI .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tKkFaRzlRI .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tKkFaRzlRI .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tKkFaRzlRI .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tKkFaRzlRI .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tKkFaRzlRI .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tKkFaRzlRI .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tKkFaRzlRI .mbr-section-title {
  color: #232323;
}
.cid-tKkFaRzlRI .mbr-text,
.cid-tKkFaRzlRI .mbr-section-btn {
  text-align: left;
}
.cid-tKkFaRzlRI .item-title {
  text-align: left;
}
.cid-tKkFaRzlRI .item-subtitle {
  text-align: left;
}
.cid-tnkYD4ko6E {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ebe8e8;
}
.cid-tnkYD4ko6E img,
.cid-tnkYD4ko6E .item-img {
  width: 100%;
}
.cid-tnkYD4ko6E .item:focus,
.cid-tnkYD4ko6E span:focus {
  outline: none;
}
.cid-tnkYD4ko6E .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tnkYD4ko6E .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tnkYD4ko6E .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tnkYD4ko6E .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tnkYD4ko6E .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tnkYD4ko6E .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tnkYD4ko6E .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tnkYD4ko6E .mbr-section-title {
  color: #232323;
}
.cid-tnkYD4ko6E .mbr-text,
.cid-tnkYD4ko6E .mbr-section-btn {
  text-align: left;
}
.cid-tnkYD4ko6E .item-title {
  text-align: left;
}
.cid-tnkYD4ko6E .item-subtitle {
  text-align: left;
}
.cid-toy6TEY4uQ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-toy6TEY4uQ nav.navbar {
  position: fixed;
}
.cid-toy6TEY4uQ .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-toy6TEY4uQ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-toy6TEY4uQ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-toy6TEY4uQ .dropdown-item:hover,
.cid-toy6TEY4uQ .dropdown-item:focus {
  background: #05386b !important;
  color: white !important;
}
.cid-toy6TEY4uQ .dropdown-item:hover span {
  color: white;
}
.cid-toy6TEY4uQ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-toy6TEY4uQ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-toy6TEY4uQ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-toy6TEY4uQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-toy6TEY4uQ .nav-link {
  position: relative;
}
.cid-toy6TEY4uQ .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-toy6TEY4uQ .container {
    flex-wrap: nowrap;
  }
}
.cid-toy6TEY4uQ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-toy6TEY4uQ .dropdown-menu,
.cid-toy6TEY4uQ .navbar.opened {
  background: #ebe8e8 !important;
}
.cid-toy6TEY4uQ .nav-item:focus,
.cid-toy6TEY4uQ .nav-link:focus {
  outline: none;
}
.cid-toy6TEY4uQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-toy6TEY4uQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-toy6TEY4uQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-toy6TEY4uQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-toy6TEY4uQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-toy6TEY4uQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-toy6TEY4uQ .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: #ebe8e8;
}
.cid-toy6TEY4uQ .navbar.opened {
  transition: all 0.3s;
}
.cid-toy6TEY4uQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-toy6TEY4uQ .navbar .navbar-logo img {
  width: auto;
}
.cid-toy6TEY4uQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-toy6TEY4uQ .navbar.collapsed {
  justify-content: center;
}
.cid-toy6TEY4uQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-toy6TEY4uQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-toy6TEY4uQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.1rem);
  }
}
.cid-toy6TEY4uQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-toy6TEY4uQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-toy6TEY4uQ .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-toy6TEY4uQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-toy6TEY4uQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-toy6TEY4uQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-toy6TEY4uQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-toy6TEY4uQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-toy6TEY4uQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-toy6TEY4uQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-toy6TEY4uQ .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-toy6TEY4uQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-toy6TEY4uQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-toy6TEY4uQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-toy6TEY4uQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-toy6TEY4uQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-toy6TEY4uQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-toy6TEY4uQ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-toy6TEY4uQ .navbar.navbar-short {
  min-height: 60px;
}
.cid-toy6TEY4uQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-toy6TEY4uQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-toy6TEY4uQ .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-toy6TEY4uQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-toy6TEY4uQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-toy6TEY4uQ .dropdown-item.active,
.cid-toy6TEY4uQ .dropdown-item:active {
  background-color: transparent;
}
.cid-toy6TEY4uQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-toy6TEY4uQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-toy6TEY4uQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-toy6TEY4uQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ebe8e8;
}
.cid-toy6TEY4uQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-toy6TEY4uQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-toy6TEY4uQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-toy6TEY4uQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-toy6TEY4uQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-toy6TEY4uQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #353535;
}
.cid-toy6TEY4uQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-toy6TEY4uQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toy6TEY4uQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toy6TEY4uQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-toy6TEY4uQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toy6TEY4uQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-toy6TEY4uQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-toy6TEY4uQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toy6TEY4uQ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-toy6TEY4uQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-toy6TEY4uQ .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-toy6TEY4uQ .navbar {
    height: 70px;
  }
  .cid-toy6TEY4uQ .navbar.opened {
    height: auto;
  }
  .cid-toy6TEY4uQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-toy70ZxB0z {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-toy70ZxB0z .row-links {
  width: 100%;
  justify-content: center;
}
.cid-toy70ZxB0z .social-row {
  width: 100%;
  justify-content: center;
}
.cid-toy70ZxB0z .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-toy70ZxB0z .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-toy70ZxB0z .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-toy70ZxB0z .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-toy70ZxB0z .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-toy70ZxB0z .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-toy70ZxB0z .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-toy70ZxB0z .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-toy70ZxB0z .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-toy70ZxB0z .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-toy70ZxB0z .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-toy70ZxB0z .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-toy6TEY4uQ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-toy6TEY4uQ nav.navbar {
  position: fixed;
}
.cid-toy6TEY4uQ .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-toy6TEY4uQ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-toy6TEY4uQ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-toy6TEY4uQ .dropdown-item:hover,
.cid-toy6TEY4uQ .dropdown-item:focus {
  background: #05386b !important;
  color: white !important;
}
.cid-toy6TEY4uQ .dropdown-item:hover span {
  color: white;
}
.cid-toy6TEY4uQ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-toy6TEY4uQ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-toy6TEY4uQ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-toy6TEY4uQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-toy6TEY4uQ .nav-link {
  position: relative;
}
.cid-toy6TEY4uQ .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-toy6TEY4uQ .container {
    flex-wrap: nowrap;
  }
}
.cid-toy6TEY4uQ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-toy6TEY4uQ .dropdown-menu,
.cid-toy6TEY4uQ .navbar.opened {
  background: #ebe8e8 !important;
}
.cid-toy6TEY4uQ .nav-item:focus,
.cid-toy6TEY4uQ .nav-link:focus {
  outline: none;
}
.cid-toy6TEY4uQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-toy6TEY4uQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-toy6TEY4uQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-toy6TEY4uQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-toy6TEY4uQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-toy6TEY4uQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-toy6TEY4uQ .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: #ebe8e8;
}
.cid-toy6TEY4uQ .navbar.opened {
  transition: all 0.3s;
}
.cid-toy6TEY4uQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-toy6TEY4uQ .navbar .navbar-logo img {
  width: auto;
}
.cid-toy6TEY4uQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-toy6TEY4uQ .navbar.collapsed {
  justify-content: center;
}
.cid-toy6TEY4uQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-toy6TEY4uQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-toy6TEY4uQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.1rem);
  }
}
.cid-toy6TEY4uQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-toy6TEY4uQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-toy6TEY4uQ .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-toy6TEY4uQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-toy6TEY4uQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-toy6TEY4uQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-toy6TEY4uQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-toy6TEY4uQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-toy6TEY4uQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-toy6TEY4uQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-toy6TEY4uQ .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-toy6TEY4uQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-toy6TEY4uQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-toy6TEY4uQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-toy6TEY4uQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-toy6TEY4uQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-toy6TEY4uQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-toy6TEY4uQ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-toy6TEY4uQ .navbar.navbar-short {
  min-height: 60px;
}
.cid-toy6TEY4uQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-toy6TEY4uQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-toy6TEY4uQ .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-toy6TEY4uQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-toy6TEY4uQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-toy6TEY4uQ .dropdown-item.active,
.cid-toy6TEY4uQ .dropdown-item:active {
  background-color: transparent;
}
.cid-toy6TEY4uQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-toy6TEY4uQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-toy6TEY4uQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-toy6TEY4uQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ebe8e8;
}
.cid-toy6TEY4uQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-toy6TEY4uQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-toy6TEY4uQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-toy6TEY4uQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-toy6TEY4uQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-toy6TEY4uQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #353535;
}
.cid-toy6TEY4uQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-toy6TEY4uQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toy6TEY4uQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toy6TEY4uQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-toy6TEY4uQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toy6TEY4uQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-toy6TEY4uQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-toy6TEY4uQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toy6TEY4uQ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-toy6TEY4uQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-toy6TEY4uQ .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-toy6TEY4uQ .navbar {
    height: 70px;
  }
  .cid-toy6TEY4uQ .navbar.opened {
    height: auto;
  }
  .cid-toy6TEY4uQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sFCAOqBTxa {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/wechat-20221125122037-1706x1280.jpg");
}
.cid-sFCAOqBTxa .mbr-section-title {
  color: #05386b;
  text-align: center;
}
.cid-sFCAOqBTxa .mbr-text,
.cid-sFCAOqBTxa .mbr-section-btn {
  color: #05386b;
  text-align: center;
}
.cid-sFCAOqBTxa .mbr-section-subtitle {
  color: #353535;
}
.cid-tmRMDlNibg {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ebe8e8;
}
.cid-tmRMDlNibg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tmRMDlNibg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tmRMDlNibg .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-tmRMDlNibg .card {
    margin-bottom: 2rem!important;
  }
  .cid-tmRMDlNibg .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tmRMDlNibg .link-wrap {
    align-items: center;
  }
}
.cid-tmRMDlNibg .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sFADQQfNeA {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ebe8e8;
}
.cid-sFADQQfNeA .mbr-section-title {
  color: #05386b;
  text-align: left;
}
.cid-sFADQQfNeA .mbr-section-subtitle {
  color: #05386b;
  text-align: left;
}
.cid-tmQjB6DKZh {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ebe8e8;
}
@media (min-width: 992px) {
  .cid-tmQjB6DKZh .carousel {
    min-height: 500px;
  }
  .cid-tmQjB6DKZh .carousel img {
    max-height: 500px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tmQjB6DKZh .carousel {
    min-height: 325px;
  }
  .cid-tmQjB6DKZh .carousel img {
    max-height: 325px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-tmQjB6DKZh .carousel {
    min-height: 275px;
  }
  .cid-tmQjB6DKZh .carousel img {
    max-height: 275px;
    object-fit: contain;
  }
  .cid-tmQjB6DKZh .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tmQjB6DKZh .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tmQjB6DKZh .carousel,
.cid-tmQjB6DKZh .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tmQjB6DKZh .item-wrapper {
  width: 100%;
}
.cid-tmQjB6DKZh .carousel-caption {
  bottom: 40px;
}
.cid-tmQjB6DKZh .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tmQjB6DKZh .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tmQjB6DKZh .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tmQjB6DKZh .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tmQjB6DKZh .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tmQjB6DKZh .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tmQjB6DKZh .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tmQjB6DKZh .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tmQjB6DKZh .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tmQjB6DKZh .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tmQjB6DKZh .carousel-indicators li.active,
.cid-tmQjB6DKZh .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tmQjB6DKZh .carousel-indicators li::after,
.cid-tmQjB6DKZh .carousel-indicators li::before {
  content: none;
}
.cid-tmQjB6DKZh .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tmQjB6DKZh .carousel-indicators {
    display: none !important;
  }
}
.cid-tmQjB6DKZh H5 {
  color: #353535;
}
.cid-sFANq99njx {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ebe8e8;
}
.cid-sFANq99njx .content-wrapper {
  background: #ebe8e8;
}
@media (max-width: 991px) {
  .cid-sFANq99njx .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-sFANq99njx .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sFANq99njx .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sFANq99njx .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sFANq99njx .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sFANq99njx .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-sFANq99njx .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sFANq99njx .card-title {
  color: #05386b;
}
.cid-sFANq99njx .mbr-text,
.cid-sFANq99njx .mbr-section-btn {
  color: #05386b;
}
.cid-uyv8NEPzIm {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ebe8e8;
}
.cid-uyv8NEPzIm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyv8NEPzIm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-uyv8NEPzIm .row {
    flex-direction: column-reverse;
  }
  .cid-uyv8NEPzIm .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-uyv8NEPzIm .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-uyv8NEPzIm .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uyv8NEPzIm .media-content,
.cid-uyv8NEPzIm .mbr-figure {
  align-self: center;
}
.cid-uyv8NEPzIm .mbr-figure iframe {
  width: 100%;
}
.cid-tmMgzKbmfq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ebe8e8;
}
.cid-tmMgzKbmfq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tmMgzKbmfq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tmMgzKbmfq .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tmMgzKbmfq .card-wrapper {
  background-color: #ebe8e8;
  border-radius: 4px;
}
.cid-tmMgzKbmfq .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tmMgzKbmfq .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-tmMgzKbmfq .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-tmMgzKbmfq .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tmMgzKbmfq .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tmMgzKbmfq .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tmMgzKbmfq .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tmMgzKbmfq .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tmMgALfNki {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/mth-photo1-6-918x286.jpg");
}
.cid-tmMgALfNki .mbr-fallback-image.disabled {
  display: none;
}
.cid-tmMgALfNki .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tmMgALfNki ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-tmMgALfNki li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-tmMgALfNki ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #ebe8e8;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-uApn5CeDZc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ebe8e8;
}
.cid-uApn5CeDZc .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uApn5CeDZc .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-uApn5CeDZc .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uApn5CeDZc .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uApn5CeDZc .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uApn5CeDZc .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uApn5CeDZc .carousel-control,
.cid-uApn5CeDZc .close {
  background: #1b1b1b;
}
.cid-uApn5CeDZc .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uApn5CeDZc .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uApn5CeDZc .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uApn5CeDZc .carousel-control-next span {
  margin-left: 5px;
}
.cid-uApn5CeDZc .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uApn5CeDZc .close::before {
  content: '\e91a';
}
.cid-uApn5CeDZc .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uApn5CeDZc .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uApn5CeDZc .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uApn5CeDZc .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uApn5CeDZc .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uApn5CeDZc .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uApn5CeDZc .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uApn5CeDZc .carousel-indicators li.active,
.cid-uApn5CeDZc .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uApn5CeDZc .carousel-indicators li::after,
.cid-uApn5CeDZc .carousel-indicators li::before {
  content: none;
}
.cid-uApn5CeDZc .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uApn5CeDZc .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uApn5CeDZc .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uApn5CeDZc .carousel-indicators {
    display: none;
  }
}
.cid-uApn5CeDZc .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uApn5CeDZc .carousel-inner > .active {
  display: block;
}
.cid-uApn5CeDZc .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uApn5CeDZc .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uApn5CeDZc .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uApn5CeDZc .carousel-control,
  .cid-uApn5CeDZc .carousel-indicators,
  .cid-uApn5CeDZc .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uApn5CeDZc .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uApn5CeDZc .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uApn5CeDZc .carousel-indicators .active,
.cid-uApn5CeDZc .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uApn5CeDZc .carousel-indicators .active {
  background: #fff;
}
.cid-uApn5CeDZc .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uApn5CeDZc .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uApn5CeDZc .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uApn5CeDZc .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uApn5CeDZc .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uApn5CeDZc .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uApn5CeDZc .carousel {
  width: 100%;
}
.cid-uApn5CeDZc .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uApn5CeDZc .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uApn5CeDZc .modal.fade .modal-dialog,
.cid-uApn5CeDZc .modal.in .modal-dialog {
  transform: none;
}
.cid-uApn5CeDZc .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uApn5CeDZc H6 {
  text-align: center;
}
.cid-uApn5CeDZc H3 {
  color: #05386b;
  text-align: left;
}
.cid-uApn5CeDZc H4 {
  text-align: left;
}
.cid-tmRRsg7v18 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ebe8e8;
}
.cid-tmRRsg7v18 img,
.cid-tmRRsg7v18 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tmRRsg7v18 .item:focus,
.cid-tmRRsg7v18 span:focus {
  outline: none;
}
.cid-tmRRsg7v18 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tmRRsg7v18 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ebe8e8;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tmRRsg7v18 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tmRRsg7v18 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tmRRsg7v18 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tmRRsg7v18 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tmRRsg7v18 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tmRRsg7v18 .mbr-section-title {
  color: #232323;
}
.cid-tmRRsg7v18 .mbr-text,
.cid-tmRRsg7v18 .mbr-section-btn {
  text-align: left;
}
.cid-tmRRsg7v18 .item-title {
  text-align: left;
}
.cid-tmRRsg7v18 .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-tnekTmLmyZ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ebe8e8;
}
.cid-tnekTmLmyZ .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tnekTmLmyZ .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tnekTmLmyZ .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tnekTmLmyZ .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tnekTmLmyZ .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tnekTmLmyZ .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tnekTmLmyZ .carousel-control,
.cid-tnekTmLmyZ .close {
  background: #1b1b1b;
}
.cid-tnekTmLmyZ .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tnekTmLmyZ .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tnekTmLmyZ .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tnekTmLmyZ .carousel-control-next span {
  margin-left: 5px;
}
.cid-tnekTmLmyZ .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tnekTmLmyZ .close::before {
  content: '\e91a';
}
.cid-tnekTmLmyZ .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tnekTmLmyZ .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tnekTmLmyZ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tnekTmLmyZ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tnekTmLmyZ .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tnekTmLmyZ .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tnekTmLmyZ .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tnekTmLmyZ .carousel-indicators li.active,
.cid-tnekTmLmyZ .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tnekTmLmyZ .carousel-indicators li::after,
.cid-tnekTmLmyZ .carousel-indicators li::before {
  content: none;
}
.cid-tnekTmLmyZ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tnekTmLmyZ .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tnekTmLmyZ .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tnekTmLmyZ .carousel-indicators {
    display: none;
  }
}
.cid-tnekTmLmyZ .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tnekTmLmyZ .carousel-inner > .active {
  display: block;
}
.cid-tnekTmLmyZ .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tnekTmLmyZ .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tnekTmLmyZ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tnekTmLmyZ .carousel-control,
  .cid-tnekTmLmyZ .carousel-indicators,
  .cid-tnekTmLmyZ .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tnekTmLmyZ .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tnekTmLmyZ .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tnekTmLmyZ .carousel-indicators .active,
.cid-tnekTmLmyZ .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tnekTmLmyZ .carousel-indicators .active {
  background: #fff;
}
.cid-tnekTmLmyZ .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tnekTmLmyZ .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tnekTmLmyZ .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tnekTmLmyZ .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tnekTmLmyZ .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tnekTmLmyZ .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tnekTmLmyZ .carousel {
  width: 100%;
}
.cid-tnekTmLmyZ .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tnekTmLmyZ .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tnekTmLmyZ .modal.fade .modal-dialog,
.cid-tnekTmLmyZ .modal.in .modal-dialog {
  transform: none;
}
.cid-tnekTmLmyZ .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tnekTmLmyZ H6 {
  text-align: center;
}
.cid-tnekTmLmyZ H3 {
  color: #05386b;
  text-align: left;
}
.cid-tnekTmLmyZ H4 {
  text-align: left;
}
.cid-sFAQAQGsOD {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ebe8e8;
}
.cid-sFAQAQGsOD .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-sFAQAQGsOD .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-sFAQAQGsOD .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-sFAQAQGsOD .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sFAQAQGsOD .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-sFAQAQGsOD .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sFAQAQGsOD .carousel-control,
.cid-sFAQAQGsOD .close {
  background: #1b1b1b;
}
.cid-sFAQAQGsOD .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sFAQAQGsOD .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sFAQAQGsOD .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sFAQAQGsOD .carousel-control-next span {
  margin-left: 5px;
}
.cid-sFAQAQGsOD .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sFAQAQGsOD .close::before {
  content: '\e91a';
}
.cid-sFAQAQGsOD .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sFAQAQGsOD .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sFAQAQGsOD .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sFAQAQGsOD .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sFAQAQGsOD .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sFAQAQGsOD .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sFAQAQGsOD .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sFAQAQGsOD .carousel-indicators li.active,
.cid-sFAQAQGsOD .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sFAQAQGsOD .carousel-indicators li::after,
.cid-sFAQAQGsOD .carousel-indicators li::before {
  content: none;
}
.cid-sFAQAQGsOD .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sFAQAQGsOD .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sFAQAQGsOD .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sFAQAQGsOD .carousel-indicators {
    display: none;
  }
}
.cid-sFAQAQGsOD .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sFAQAQGsOD .carousel-inner > .active {
  display: block;
}
.cid-sFAQAQGsOD .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sFAQAQGsOD .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sFAQAQGsOD .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sFAQAQGsOD .carousel-control,
  .cid-sFAQAQGsOD .carousel-indicators,
  .cid-sFAQAQGsOD .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sFAQAQGsOD .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sFAQAQGsOD .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sFAQAQGsOD .carousel-indicators .active,
.cid-sFAQAQGsOD .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sFAQAQGsOD .carousel-indicators .active {
  background: #fff;
}
.cid-sFAQAQGsOD .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sFAQAQGsOD .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sFAQAQGsOD .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sFAQAQGsOD .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sFAQAQGsOD .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sFAQAQGsOD .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sFAQAQGsOD .carousel {
  width: 100%;
}
.cid-sFAQAQGsOD .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sFAQAQGsOD .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sFAQAQGsOD .modal.fade .modal-dialog,
.cid-sFAQAQGsOD .modal.in .modal-dialog {
  transform: none;
}
.cid-sFAQAQGsOD .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sFAQAQGsOD H6 {
  text-align: center;
}
.cid-sFAQAQGsOD H3 {
  color: #05386b;
  text-align: left;
}
.cid-sFAQAQGsOD H4 {
  text-align: left;
}
.cid-toy70ZxB0z {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-toy70ZxB0z .row-links {
  width: 100%;
  justify-content: center;
}
.cid-toy70ZxB0z .social-row {
  width: 100%;
  justify-content: center;
}
.cid-toy70ZxB0z .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-toy70ZxB0z .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-toy70ZxB0z .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-toy70ZxB0z .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-toy70ZxB0z .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-toy70ZxB0z .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-toy70ZxB0z .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-toy70ZxB0z .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-toy70ZxB0z .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-toy70ZxB0z .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-toy70ZxB0z .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-toy70ZxB0z .media-container-row .row-copirayt p {
  width: 100%;
}
