.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Inter', sans-serif;
  font-size: 2.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 3.25rem;
}
.display-2 {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 1.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 2.08rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.82rem;
    font-size: calc( 1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 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))));
  }
  .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: #6592e6 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #2191c8 !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #6592e6 !important;
  border-color: #6592e6 !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: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #92f3a4 !important;
  border-color: #92f3a4 !important;
  color: #0d7921 !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: #052b0c !important;
  background-color: #44ea63 !important;
  border-color: #44ea63 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #0d7921 !important;
  background-color: #44ea63 !important;
  border-color: #44ea63 !important;
}
.btn-info,
.btn-info:active {
  background-color: #2191c8 !important;
  border-color: #2191c8 !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: #155b7e !important;
  border-color: #155b7e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #155b7e !important;
  border-color: #155b7e !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: #6592e6;
  color: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !important;
  background-color: transparent!important;
  border-color: #2260d2 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #92f3a4;
  color: #92f3a4;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #44ea63 !important;
  background-color: transparent!important;
  border-color: #44ea63 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #0d7921 !important;
  background-color: #92f3a4 !important;
  border-color: #92f3a4 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #2191c8;
  color: #2191c8;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #155b7e !important;
  background-color: transparent!important;
  border-color: #155b7e !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #2191c8 !important;
  border-color: #2191c8 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #40b0bf;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: #2a747e !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffe161;
  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: #ffd10a !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: #ff9966;
  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: #ff5f0f !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: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #6592e6 !important;
}
.text-secondary {
  color: #92f3a4 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #2191c8 !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: #205ac5 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #36e957 !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: #135270 !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: #6592e6;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #2191c8;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #6592e6;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.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: #7fc7ea;
}
.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 a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #6592e6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #6592e6;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6592e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6592e6;
}
.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: #6592e6;
  border-bottom-color: #6592e6;
}
.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: #6592e6 !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: #92f3a4 !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='%236592e6' %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-umXGYlDcif {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-umXGYlDcif nav.navbar {
  position: fixed;
}
.cid-umXGYlDcif .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-umXGYlDcif .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-umXGYlDcif .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-umXGYlDcif .dropdown-item:hover,
.cid-umXGYlDcif .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-umXGYlDcif .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-umXGYlDcif .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-umXGYlDcif .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-umXGYlDcif .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-umXGYlDcif .nav-link {
  position: relative;
}
.cid-umXGYlDcif .container {
  display: flex;
  margin: auto;
}
.cid-umXGYlDcif .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-umXGYlDcif .dropdown-menu,
.cid-umXGYlDcif .navbar.opened {
  background: #ffffff !important;
}
.cid-umXGYlDcif .nav-item:focus,
.cid-umXGYlDcif .nav-link:focus {
  outline: none;
}
.cid-umXGYlDcif .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-umXGYlDcif .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-umXGYlDcif .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-umXGYlDcif .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-umXGYlDcif .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-umXGYlDcif .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-umXGYlDcif .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: #ffffff;
}
.cid-umXGYlDcif .navbar.opened {
  transition: all 0.3s;
}
.cid-umXGYlDcif .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-umXGYlDcif .navbar .navbar-logo img {
  width: auto;
}
.cid-umXGYlDcif .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-umXGYlDcif .navbar.collapsed {
  justify-content: center;
}
.cid-umXGYlDcif .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-umXGYlDcif .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-umXGYlDcif .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-umXGYlDcif .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-umXGYlDcif .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-umXGYlDcif .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-umXGYlDcif .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-umXGYlDcif .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-umXGYlDcif .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-umXGYlDcif .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-umXGYlDcif .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-umXGYlDcif .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-umXGYlDcif .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-umXGYlDcif .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-umXGYlDcif .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-umXGYlDcif .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-umXGYlDcif .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-umXGYlDcif .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-umXGYlDcif .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-umXGYlDcif .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-umXGYlDcif .navbar.navbar-short {
  min-height: 60px;
}
.cid-umXGYlDcif .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-umXGYlDcif .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-umXGYlDcif .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-umXGYlDcif .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-umXGYlDcif .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-umXGYlDcif .dropdown-item.active,
.cid-umXGYlDcif .dropdown-item:active {
  background-color: transparent;
}
.cid-umXGYlDcif .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-umXGYlDcif .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-umXGYlDcif .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-umXGYlDcif .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-umXGYlDcif .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-umXGYlDcif .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-umXGYlDcif ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-umXGYlDcif .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-umXGYlDcif button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-umXGYlDcif button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-umXGYlDcif button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-umXGYlDcif button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umXGYlDcif button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umXGYlDcif button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-umXGYlDcif nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umXGYlDcif nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-umXGYlDcif nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-umXGYlDcif nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umXGYlDcif .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-umXGYlDcif a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-umXGYlDcif .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-umXGYlDcif .navbar {
    height: 70px;
  }
  .cid-umXGYlDcif .navbar.opened {
    height: auto;
  }
  .cid-umXGYlDcif .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-umXV6b4QMc {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/header-puppy-beach-1-1280x534.jpg");
}
.cid-umXV6b4QMc .mbr-fallback-image.disabled {
  display: none;
}
.cid-umXV6b4QMc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umXV6b4QMc .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-umXV6b4QMc .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-umXRxdarYz {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-umXRxdarYz .mbr-section-subtitle {
  color: #8e0c3a;
}
.cid-umXGYncm4W {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
@media (max-width: 767px) {
  .cid-umXGYncm4W .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-umXGYncm4W .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-umXGYncm4W .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-umXGYncm4W .card-wrapper {
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-umXGYncm4W .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-umXGYncm4W .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-umXGYncm4W .mbr-text {
  color: #232323;
}
.cid-umXGYncm4W .card-title {
  color: #8e0c3a;
}
.cid-umXGYncm4W .price {
  color: #05386b;
}
.cid-up1JDCHcIX {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-up1JDCHcIX .mbr-fallback-image.disabled {
  display: none;
}
.cid-up1JDCHcIX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-up1JDCHcIX .video-wrapper iframe {
  width: 100%;
}
.cid-up1JDCHcIX .mbr-section-title,
.cid-up1JDCHcIX .mbr-section-subtitle,
.cid-up1JDCHcIX .mbr-text {
  text-align: center;
}
.cid-up1JDCHcIX .mbr-section-title {
  color: #8e0c3a;
}
.cid-up1JDCHcIX .mbr-text {
  color: #8e0c3a;
}
.cid-uo6gkOVtLT {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uo6gkOVtLT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uo6gkOVtLT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uo6gkOVtLT .mbr-text,
.cid-uo6gkOVtLT .mbr-section-btn {
  color: #232323;
}
.cid-uo6gkOVtLT .card-title,
.cid-uo6gkOVtLT .card-box {
  color: #ffffff;
}
.cid-uo6gkOVtLT .mbr-text,
.cid-uo6gkOVtLT .link-wrap {
  color: #ffffff;
}
.cid-uo6gkOVtLT .card-box .mbr-text,
.cid-uo6gkOVtLT .mbr-section-btn {
  color: #8e0c3a;
}
.cid-umXGYqMDxq {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #8e0c3a;
}
.cid-umXGYqMDxq .row-links {
  width: 100%;
  justify-content: center;
}
.cid-umXGYqMDxq .social-row {
  width: 100%;
  justify-content: center;
}
.cid-umXGYqMDxq .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-umXGYqMDxq .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-umXGYqMDxq .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-umXGYqMDxq .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-umXGYqMDxq .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-umXGYqMDxq .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-umXGYqMDxq .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-umXGYqMDxq .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-umXGYqMDxq .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-umXGYqMDxq .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-umXGYqMDxq .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-umXGYqMDxq .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-umXFacgc1P {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-umXFacgc1P nav.navbar {
  position: fixed;
}
.cid-umXFacgc1P .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-umXFacgc1P .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-umXFacgc1P .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-umXFacgc1P .dropdown-item:hover,
.cid-umXFacgc1P .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-umXFacgc1P .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-umXFacgc1P .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-umXFacgc1P .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-umXFacgc1P .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-umXFacgc1P .nav-link {
  position: relative;
}
.cid-umXFacgc1P .container {
  display: flex;
  margin: auto;
}
.cid-umXFacgc1P .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-umXFacgc1P .dropdown-menu,
.cid-umXFacgc1P .navbar.opened {
  background: #ffffff !important;
}
.cid-umXFacgc1P .nav-item:focus,
.cid-umXFacgc1P .nav-link:focus {
  outline: none;
}
.cid-umXFacgc1P .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-umXFacgc1P .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-umXFacgc1P .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-umXFacgc1P .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-umXFacgc1P .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-umXFacgc1P .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-umXFacgc1P .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: #ffffff;
}
.cid-umXFacgc1P .navbar.opened {
  transition: all 0.3s;
}
.cid-umXFacgc1P .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-umXFacgc1P .navbar .navbar-logo img {
  width: auto;
}
.cid-umXFacgc1P .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-umXFacgc1P .navbar.collapsed {
  justify-content: center;
}
.cid-umXFacgc1P .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-umXFacgc1P .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-umXFacgc1P .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-umXFacgc1P .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-umXFacgc1P .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-umXFacgc1P .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-umXFacgc1P .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-umXFacgc1P .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-umXFacgc1P .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-umXFacgc1P .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-umXFacgc1P .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-umXFacgc1P .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-umXFacgc1P .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-umXFacgc1P .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-umXFacgc1P .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-umXFacgc1P .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-umXFacgc1P .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-umXFacgc1P .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-umXFacgc1P .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-umXFacgc1P .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-umXFacgc1P .navbar.navbar-short {
  min-height: 60px;
}
.cid-umXFacgc1P .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-umXFacgc1P .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-umXFacgc1P .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-umXFacgc1P .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-umXFacgc1P .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-umXFacgc1P .dropdown-item.active,
.cid-umXFacgc1P .dropdown-item:active {
  background-color: transparent;
}
.cid-umXFacgc1P .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-umXFacgc1P .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-umXFacgc1P .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-umXFacgc1P .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-umXFacgc1P .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-umXFacgc1P .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-umXFacgc1P ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-umXFacgc1P .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-umXFacgc1P button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-umXFacgc1P button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-umXFacgc1P button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-umXFacgc1P button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umXFacgc1P button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umXFacgc1P button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-umXFacgc1P nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umXFacgc1P nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-umXFacgc1P nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-umXFacgc1P nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umXFacgc1P .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-umXFacgc1P a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-umXFacgc1P .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-umXFacgc1P .navbar {
    height: 70px;
  }
  .cid-umXFacgc1P .navbar.opened {
    height: auto;
  }
  .cid-umXFacgc1P .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-umXFaczev5 {
  background-image: url("../../../assets/images/intro-bg-1280x726.jpg");
}
.cid-umXFaczev5 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-umXFaczev5 .mbr-text,
.cid-umXFaczev5 .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-umXFacTq6k {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #edf5e1;
}
.cid-umXFacTq6k .mbr-section-title {
  color: #05386b;
}
.cid-umXFacTq6k .mbr-section-subtitle {
  color: #05386b;
}
.cid-umXFaddiXW {
  padding-top: 2rem;
  padding-bottom: 10rem;
  background-color: #edf5e1;
}
.cid-umXFaddiXW .card-box {
  padding: 2rem;
  width: 58.33%;
}
.cid-umXFaddiXW .img-wrapper {
  width: 41.66%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-umXFaddiXW .img1 {
  background: #05386b;
}
.cid-umXFaddiXW .img2 {
  background: #05386b;
}
.cid-umXFaddiXW .mbr-iconfont {
  display: block;
  font-size: 8rem;
  color: #ffffff;
  margin-bottom: 2rem;
}
.cid-umXFaddiXW .card {
  margin: auto;
  min-height: 280px;
  transition: all 0.3s;
}
.cid-umXFaddiXW .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
  display: flex;
  overflow: hidden;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-umXFaddiXW .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-umXFaddiXW .card-wrapper {
    flex-direction: column;
  }
  .cid-umXFaddiXW .card-box {
    padding: 1rem;
  }
  .cid-umXFaddiXW .card-box,
  .cid-umXFaddiXW .img-wrapper {
    width: 100%;
  }
  .cid-umXFaddiXW .img-wrapper {
    padding: 4rem 1rem;
  }
  .cid-umXFaddiXW .mbr-flex {
    flex-direction: column-reverse;
  }
}
.cid-umXFaddiXW .card-subtitle {
  color: #05386b;
}
.cid-umXFaddiXW .mbr-text,
.cid-umXFaddiXW .link-wrap {
  color: #555555;
}
.cid-umXFaddiXW .card-title,
.cid-umXFaddiXW .card-box {
  color: #05386b;
}
.cid-umXFaddiXW .mbr-text,
.cid-umXFaddiXW .mbr-section-btn {
  color: #555555;
}
.cid-umXFadwzSA {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-umXFadwzSA .mbr-section-title {
  color: #05386b;
}
.cid-umXFadwzSA .mbr-section-subtitle {
  color: #05386b;
}
.cid-umXFadO1uA {
  padding-top: 1rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-umXFadO1uA .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-umXFadO1uA .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-umXFadO1uA .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-umXFadO1uA .card-wrapper {
  border-radius: 4px;
  background-color: #edf5e1;
}
.cid-umXFadO1uA .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-umXFadO1uA .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-umXFadO1uA .mbr-text {
  color: #05386b;
}
.cid-umXFadO1uA .card-title {
  color: #05386b;
}
.cid-umXFadO1uA .price {
  color: #05386b;
}
.cid-umXFaefoJU {
  padding-top: 9rem;
  padding-bottom: 8rem;
  background-color: #edf5e1;
}
.cid-umXFaefoJU .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-umXFaefoJU .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-umXFaefoJU .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-umXFaefoJU .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-umXFaefoJU .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-umXFaefoJU .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-umXFaefoJU .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-umXFaefoJU .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-umXFaefoJU .card-title {
  color: #05386b;
}
.cid-umXFaefoJU .mbr-text,
.cid-umXFaefoJU .mbr-section-btn {
  color: #05386b;
}
.cid-umXFaeynkH {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-umXFaeynkH .img-wrapper {
  text-align: center;
}
.cid-umXFaeynkH img {
  margin: auto;
  width: 140px;
  padding-bottom: 2rem;
}
.cid-umXFaeynkH .row {
  align-items: flex-start;
}
.cid-umXFaeynkH .card-wrapper {
  border-radius: 4px;
  background: #edf5e1;
}
@media (max-width: 992px) {
  .cid-umXFaeynkH .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-umXFaeynkH .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-umXFaeynkH .card-wrapper {
    padding: 1rem;
  }
}
.cid-umXFaeynkH .card-title {
  color: #05386b;
}
.cid-umXFaeynkH .mbr-text,
.cid-umXFaeynkH .mbr-section-btn {
  color: #05386b;
}
.cid-umXFaeQNBo {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #edf5e1;
}
.cid-umXFaeQNBo img,
.cid-umXFaeQNBo .item-img {
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-umXFaeQNBo .item:focus,
.cid-umXFaeQNBo span:focus {
  outline: none;
}
.cid-umXFaeQNBo .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-umXFaeQNBo .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-umXFaeQNBo .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-umXFaeQNBo .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-umXFaeQNBo .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-umXFaeQNBo .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-umXFaeQNBo .mbr-section-btn {
  margin-top: auto !important;
}
.cid-umXFaeQNBo .mbr-section-title {
  color: #05386b;
}
.cid-umXFaeQNBo .mbr-text,
.cid-umXFaeQNBo .mbr-section-btn {
  text-align: left;
}
.cid-umXFaeQNBo .item-title {
  text-align: left;
  color: #05386b;
}
.cid-umXFaeQNBo .item-subtitle {
  text-align: left;
  color: #232323;
}
.cid-umXFaeQNBo .mbr-section-subtitle {
  color: #05386b;
}
.cid-umXFaffKRF {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-umXFaffKRF .image-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-umXFaffKRF .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-umXFaffKRF .mbr-section-title {
  color: #05386b;
}
.cid-umXFaffKRF .mbr-text {
  color: #05386b;
}
.cid-umXFaffKRF .name {
  color: #05386b;
}
.cid-umXFaffKRF .position {
  color: #05386b;
}
.cid-umXFafDRZv {
  padding-top: 9rem;
  padding-bottom: 10rem;
  background-color: #edf5e1;
}
.cid-umXFafDRZv .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-umXFafDRZv .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-umXFafDRZv .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-umXFafDRZv .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-umXFafDRZv .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-umXFafDRZv .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-umXFafDRZv .carousel-control,
.cid-umXFafDRZv .close {
  background: #1b1b1b;
}
.cid-umXFafDRZv .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-umXFafDRZv .carousel-control-prev span {
  margin-right: 5px;
}
.cid-umXFafDRZv .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-umXFafDRZv .carousel-control-next span {
  margin-left: 5px;
}
.cid-umXFafDRZv .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-umXFafDRZv .close::before {
  content: '\e91a';
}
.cid-umXFafDRZv .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-umXFafDRZv .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-umXFafDRZv .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-umXFafDRZv .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-umXFafDRZv .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-umXFafDRZv .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-umXFafDRZv .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-umXFafDRZv .carousel-indicators li.active,
.cid-umXFafDRZv .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-umXFafDRZv .carousel-indicators li::after,
.cid-umXFafDRZv .carousel-indicators li::before {
  content: none;
}
.cid-umXFafDRZv .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-umXFafDRZv .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-umXFafDRZv .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-umXFafDRZv .carousel-indicators {
    display: none;
  }
}
.cid-umXFafDRZv .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-umXFafDRZv .carousel-inner > .active {
  display: block;
}
.cid-umXFafDRZv .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-umXFafDRZv .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-umXFafDRZv .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-umXFafDRZv .carousel-control,
  .cid-umXFafDRZv .carousel-indicators,
  .cid-umXFafDRZv .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-umXFafDRZv .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-umXFafDRZv .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-umXFafDRZv .carousel-indicators .active,
.cid-umXFafDRZv .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-umXFafDRZv .carousel-indicators .active {
  background: #fff;
}
.cid-umXFafDRZv .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-umXFafDRZv .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-umXFafDRZv .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-umXFafDRZv .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-umXFafDRZv .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-umXFafDRZv .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-umXFafDRZv .carousel {
  width: 100%;
}
.cid-umXFafDRZv .modal-backdrop.in {
  opacity: 0.8;
}
.cid-umXFafDRZv .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-umXFafDRZv .modal.fade .modal-dialog,
.cid-umXFafDRZv .modal.in .modal-dialog {
  transform: none;
}
.cid-umXFafDRZv .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-umXFafDRZv H6 {
  text-align: center;
}
.cid-umXFafDRZv H3 {
  color: #05386b;
}
.cid-umXFagyxLq {
  padding-top: 5rem;
  padding-bottom: 7rem;
  background: #fafafa;
}
@media (max-width: 767px) {
  .cid-umXFagyxLq .row {
    flex-direction: column-reverse;
  }
  .cid-umXFagyxLq .row .map-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-umXFagyxLq .google-map {
  height: 100%;
  position: relative;
}
.cid-umXFagyxLq .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-umXFagyxLq .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-umXFagyxLq .google-map[data-state] {
  background: #e9e5dc;
}
.cid-umXFagyxLq .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-umXFagyxLq .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-umXFagyxLq .card-wrapper {
  display: flex;
  border-radius: 4px;
  background: #edf5e1;
}
.cid-umXFagyxLq .card-wrapper:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-umXFagyxLq .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-umXFagyxLq .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-umXFagyxLq .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #6592e6;
}
.cid-umXFagyxLq .mbr-section-title {
  color: #05386b;
}
.cid-umXFagyxLq .mbr-section-subtitle {
  color: #05386b;
}
.cid-umXFagyxLq .card-title {
  color: #05386b;
}
.cid-umXFagyxLq P {
  color: #05386b;
}
.cid-umXFagU1KW {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #8e0c3a;
}
.cid-umXFagU1KW .row-links {
  width: 100%;
  justify-content: center;
}
.cid-umXFagU1KW .social-row {
  width: 100%;
  justify-content: center;
}
.cid-umXFagU1KW .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-umXFagU1KW .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-umXFagU1KW .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-umXFagU1KW .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-umXFagU1KW .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-umXFagU1KW .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-umXFagU1KW .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-umXFagU1KW .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-umXFagU1KW .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-umXFagU1KW .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-umXFagU1KW .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-umXFagU1KW .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-unwrfSvvfL {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-unwrfSvvfL nav.navbar {
  position: fixed;
}
.cid-unwrfSvvfL .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-unwrfSvvfL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-unwrfSvvfL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-unwrfSvvfL .dropdown-item:hover,
.cid-unwrfSvvfL .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-unwrfSvvfL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-unwrfSvvfL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-unwrfSvvfL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-unwrfSvvfL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-unwrfSvvfL .nav-link {
  position: relative;
}
.cid-unwrfSvvfL .container {
  display: flex;
  margin: auto;
}
.cid-unwrfSvvfL .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-unwrfSvvfL .dropdown-menu,
.cid-unwrfSvvfL .navbar.opened {
  background: #ffffff !important;
}
.cid-unwrfSvvfL .nav-item:focus,
.cid-unwrfSvvfL .nav-link:focus {
  outline: none;
}
.cid-unwrfSvvfL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-unwrfSvvfL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-unwrfSvvfL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-unwrfSvvfL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-unwrfSvvfL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-unwrfSvvfL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-unwrfSvvfL .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: #ffffff;
}
.cid-unwrfSvvfL .navbar.opened {
  transition: all 0.3s;
}
.cid-unwrfSvvfL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-unwrfSvvfL .navbar .navbar-logo img {
  width: auto;
}
.cid-unwrfSvvfL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-unwrfSvvfL .navbar.collapsed {
  justify-content: center;
}
.cid-unwrfSvvfL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-unwrfSvvfL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-unwrfSvvfL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-unwrfSvvfL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-unwrfSvvfL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-unwrfSvvfL .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-unwrfSvvfL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-unwrfSvvfL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-unwrfSvvfL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-unwrfSvvfL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-unwrfSvvfL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-unwrfSvvfL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-unwrfSvvfL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-unwrfSvvfL .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-unwrfSvvfL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-unwrfSvvfL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-unwrfSvvfL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-unwrfSvvfL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-unwrfSvvfL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-unwrfSvvfL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-unwrfSvvfL .navbar.navbar-short {
  min-height: 60px;
}
.cid-unwrfSvvfL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-unwrfSvvfL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-unwrfSvvfL .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-unwrfSvvfL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-unwrfSvvfL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-unwrfSvvfL .dropdown-item.active,
.cid-unwrfSvvfL .dropdown-item:active {
  background-color: transparent;
}
.cid-unwrfSvvfL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-unwrfSvvfL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-unwrfSvvfL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-unwrfSvvfL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-unwrfSvvfL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-unwrfSvvfL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-unwrfSvvfL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-unwrfSvvfL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-unwrfSvvfL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-unwrfSvvfL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-unwrfSvvfL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-unwrfSvvfL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-unwrfSvvfL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-unwrfSvvfL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-unwrfSvvfL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-unwrfSvvfL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-unwrfSvvfL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-unwrfSvvfL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-unwrfSvvfL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-unwrfSvvfL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-unwrfSvvfL .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-unwrfSvvfL .navbar {
    height: 70px;
  }
  .cid-unwrfSvvfL .navbar.opened {
    height: auto;
  }
  .cid-unwrfSvvfL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-unwrfSP3FQ {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/header-products-cat-1280x561.jpg");
}
.cid-unwrfSP3FQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-unwrfSP3FQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-unwrfSP3FQ .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-unwrfSP3FQ .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-unwt7uT1PF {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-unwt7uT1PF .mbr-fallback-image.disabled {
  display: none;
}
.cid-unwt7uT1PF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-unwt7uT1PF .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-unwt7uT1PF .row {
  flex-direction: row-reverse;
}
.cid-unwt7uT1PF img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-unwt7uT1PF .text-wrapper {
    padding: 2rem;
  }
}
.cid-unwt7uT1PF .mbr-section-title {
  color: #8e0c3a;
}
.cid-unD1bnxLgz {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-unD1bnxLgz .mbr-fallback-image.disabled {
  display: none;
}
.cid-unD1bnxLgz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-unD1bnxLgz .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-unD1bnxLgz .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-unD1bnxLgz .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-unD1bnxLgz .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-unD1bnxLgz .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-unD1bnxLgz .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-unD1bnxLgz .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-unD1bnxLgz .card-title {
  color: #8e0c3a;
}
.cid-unD5orNfwO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-unD5orNfwO .mbr-fallback-image.disabled {
  display: none;
}
.cid-unD5orNfwO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-unD5orNfwO .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-unD5orNfwO .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-unD5orNfwO .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-unD5orNfwO .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-unD5orNfwO .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-unD5orNfwO .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-unD5orNfwO .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-unD5orNfwO .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-unD5orNfwO .card-title {
  color: #8e0c3a;
}
.cid-unxfzZeWvc {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-unwrfUmcq4 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #8e0c3a;
}
.cid-unwrfUmcq4 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-unwrfUmcq4 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-unwrfUmcq4 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-unwrfUmcq4 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-unwrfUmcq4 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-unwrfUmcq4 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-unwrfUmcq4 .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-unwrfUmcq4 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-unwrfUmcq4 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-unwrfUmcq4 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-unwrfUmcq4 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-unwrfUmcq4 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-unwrfUmcq4 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-unwrfUmcq4 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-unxrLIegfU {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-unxrLIegfU nav.navbar {
  position: fixed;
}
.cid-unxrLIegfU .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-unxrLIegfU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-unxrLIegfU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-unxrLIegfU .dropdown-item:hover,
.cid-unxrLIegfU .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-unxrLIegfU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-unxrLIegfU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-unxrLIegfU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-unxrLIegfU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-unxrLIegfU .nav-link {
  position: relative;
}
.cid-unxrLIegfU .container {
  display: flex;
  margin: auto;
}
.cid-unxrLIegfU .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-unxrLIegfU .dropdown-menu,
.cid-unxrLIegfU .navbar.opened {
  background: #ffffff !important;
}
.cid-unxrLIegfU .nav-item:focus,
.cid-unxrLIegfU .nav-link:focus {
  outline: none;
}
.cid-unxrLIegfU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-unxrLIegfU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-unxrLIegfU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-unxrLIegfU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-unxrLIegfU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-unxrLIegfU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-unxrLIegfU .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: #ffffff;
}
.cid-unxrLIegfU .navbar.opened {
  transition: all 0.3s;
}
.cid-unxrLIegfU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-unxrLIegfU .navbar .navbar-logo img {
  width: auto;
}
.cid-unxrLIegfU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-unxrLIegfU .navbar.collapsed {
  justify-content: center;
}
.cid-unxrLIegfU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-unxrLIegfU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-unxrLIegfU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-unxrLIegfU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-unxrLIegfU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-unxrLIegfU .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-unxrLIegfU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-unxrLIegfU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-unxrLIegfU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-unxrLIegfU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-unxrLIegfU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-unxrLIegfU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-unxrLIegfU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-unxrLIegfU .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-unxrLIegfU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-unxrLIegfU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-unxrLIegfU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-unxrLIegfU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-unxrLIegfU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-unxrLIegfU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-unxrLIegfU .navbar.navbar-short {
  min-height: 60px;
}
.cid-unxrLIegfU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-unxrLIegfU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-unxrLIegfU .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-unxrLIegfU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-unxrLIegfU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-unxrLIegfU .dropdown-item.active,
.cid-unxrLIegfU .dropdown-item:active {
  background-color: transparent;
}
.cid-unxrLIegfU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-unxrLIegfU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-unxrLIegfU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-unxrLIegfU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-unxrLIegfU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-unxrLIegfU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-unxrLIegfU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-unxrLIegfU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-unxrLIegfU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-unxrLIegfU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-unxrLIegfU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-unxrLIegfU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-unxrLIegfU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-unxrLIegfU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-unxrLIegfU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-unxrLIegfU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-unxrLIegfU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-unxrLIegfU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-unxrLIegfU .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-unxrLIegfU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-unxrLIegfU .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-unxrLIegfU .navbar {
    height: 70px;
  }
  .cid-unxrLIegfU .navbar.opened {
    height: auto;
  }
  .cid-unxrLIegfU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-unxrLIy9aA {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/cat-dog-dish2-1280-1280x583.jpg");
}
.cid-unxrLIy9aA .mbr-fallback-image.disabled {
  display: none;
}
.cid-unxrLIy9aA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-unxrLIy9aA .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-unxrLIy9aA .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-uoFXENPlSL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uoFXENPlSL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uoFXENPlSL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uoFXENPlSL .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-uoFXENPlSL .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-uoFXENPlSL .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uoFXENPlSL .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uoFXENPlSL .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uoFXENPlSL .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-uoFXENPlSL .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-uoFXENPlSL .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uoFXENPlSL .card-title {
  color: #8e0c3a;
}
.cid-uoyIuvMN7t {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uoyIuvMN7t .mbr-fallback-image.disabled {
  display: none;
}
.cid-uoyIuvMN7t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uoyIuvMN7t .mbr-text,
.cid-uoyIuvMN7t .mbr-section-btn {
  color: #232323;
}
.cid-uoyIuvMN7t .card-title,
.cid-uoyIuvMN7t .card-box {
  color: #8e0c3a;
  text-align: left;
}
.cid-uoyIuvMN7t .mbr-text,
.cid-uoyIuvMN7t .link-wrap {
  color: #ffffff;
}
.cid-uoyIuvMN7t .card-box .mbr-text,
.cid-uoyIuvMN7t .mbr-section-btn {
  color: #232323;
  text-align: left;
}
.cid-uoKBQ4kT71 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uoKBQ4kT71 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uoKBQ4kT71 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uoKBQ4kT71 .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-uoKBQ4kT71 .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uoKBQ4kT71 .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uoKBQ4kT71 .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uoKBQ4kT71 .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-uoKBQ4kT71 .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-uoKBQ4kT71 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uoKBQ4kT71 .card-title {
  color: #8e0c3a;
}
.cid-uoyOLVqtSu {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uoyOLVqtSu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uoyOLVqtSu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uoyOLVqtSu .mbr-text,
.cid-uoyOLVqtSu .mbr-section-btn {
  color: #232323;
}
.cid-uoyOLVqtSu .card-title,
.cid-uoyOLVqtSu .card-box {
  color: #8e0c3a;
  text-align: left;
}
.cid-uoyOLVqtSu .mbr-text,
.cid-uoyOLVqtSu .link-wrap {
  color: #ffffff;
}
.cid-uoyOLVqtSu .card-box .mbr-text,
.cid-uoyOLVqtSu .mbr-section-btn {
  color: #232323;
  text-align: left;
}
.cid-uoKJwcqVjK {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uoKJwcqVjK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uoKJwcqVjK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uoKJwcqVjK .mbr-text,
.cid-uoKJwcqVjK .mbr-section-btn {
  color: #232323;
}
.cid-uoKJwcqVjK .card-title,
.cid-uoKJwcqVjK .card-box {
  color: #8e0c3a;
  text-align: left;
}
.cid-uoKJwcqVjK .mbr-text,
.cid-uoKJwcqVjK .link-wrap {
  color: #ffffff;
}
.cid-uoKJwcqVjK .card-box .mbr-text,
.cid-uoKJwcqVjK .mbr-section-btn {
  color: #8e0c3a;
  text-align: center;
}
.cid-unxrLJDVEL {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #8e0c3a;
}
.cid-unxrLJDVEL .row-links {
  width: 100%;
  justify-content: center;
}
.cid-unxrLJDVEL .social-row {
  width: 100%;
  justify-content: center;
}
.cid-unxrLJDVEL .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-unxrLJDVEL .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-unxrLJDVEL .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-unxrLJDVEL .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-unxrLJDVEL .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-unxrLJDVEL .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-unxrLJDVEL .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-unxrLJDVEL .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-unxrLJDVEL .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-unxrLJDVEL .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-unxrLJDVEL .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-unxrLJDVEL .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uohq2WEq7T {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uohq2WEq7T nav.navbar {
  position: fixed;
}
.cid-uohq2WEq7T .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-uohq2WEq7T .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uohq2WEq7T .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uohq2WEq7T .dropdown-item:hover,
.cid-uohq2WEq7T .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uohq2WEq7T .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uohq2WEq7T .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uohq2WEq7T .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uohq2WEq7T .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uohq2WEq7T .nav-link {
  position: relative;
}
.cid-uohq2WEq7T .container {
  display: flex;
  margin: auto;
}
.cid-uohq2WEq7T .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uohq2WEq7T .dropdown-menu,
.cid-uohq2WEq7T .navbar.opened {
  background: #ffffff !important;
}
.cid-uohq2WEq7T .nav-item:focus,
.cid-uohq2WEq7T .nav-link:focus {
  outline: none;
}
.cid-uohq2WEq7T .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uohq2WEq7T .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uohq2WEq7T .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uohq2WEq7T .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uohq2WEq7T .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uohq2WEq7T .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uohq2WEq7T .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: #ffffff;
}
.cid-uohq2WEq7T .navbar.opened {
  transition: all 0.3s;
}
.cid-uohq2WEq7T .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uohq2WEq7T .navbar .navbar-logo img {
  width: auto;
}
.cid-uohq2WEq7T .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uohq2WEq7T .navbar.collapsed {
  justify-content: center;
}
.cid-uohq2WEq7T .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uohq2WEq7T .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uohq2WEq7T .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-uohq2WEq7T .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uohq2WEq7T .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uohq2WEq7T .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-uohq2WEq7T .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uohq2WEq7T .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uohq2WEq7T .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uohq2WEq7T .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uohq2WEq7T .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uohq2WEq7T .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uohq2WEq7T .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uohq2WEq7T .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-uohq2WEq7T .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uohq2WEq7T .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uohq2WEq7T .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uohq2WEq7T .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uohq2WEq7T .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uohq2WEq7T .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uohq2WEq7T .navbar.navbar-short {
  min-height: 60px;
}
.cid-uohq2WEq7T .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uohq2WEq7T .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uohq2WEq7T .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-uohq2WEq7T .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uohq2WEq7T .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uohq2WEq7T .dropdown-item.active,
.cid-uohq2WEq7T .dropdown-item:active {
  background-color: transparent;
}
.cid-uohq2WEq7T .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uohq2WEq7T .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uohq2WEq7T .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uohq2WEq7T .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uohq2WEq7T .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uohq2WEq7T .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uohq2WEq7T ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uohq2WEq7T .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uohq2WEq7T button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uohq2WEq7T button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-uohq2WEq7T button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uohq2WEq7T button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uohq2WEq7T button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uohq2WEq7T button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uohq2WEq7T nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uohq2WEq7T nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uohq2WEq7T nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uohq2WEq7T nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uohq2WEq7T .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uohq2WEq7T a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uohq2WEq7T .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-uohq2WEq7T .navbar {
    height: 70px;
  }
  .cid-uohq2WEq7T .navbar.opened {
    height: auto;
  }
  .cid-uohq2WEq7T .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uohq2WXOU5 {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/challenge-header2-1624x742.jpg");
}
.cid-uohq2WXOU5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uohq2WXOU5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uohq2WXOU5 .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-uohq2WXOU5 .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-uohw642Knr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uohw642Knr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uohw642Knr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uohw642Knr .row {
  flex-direction: row-reverse;
}
.cid-uohw642Knr .video-wrapper iframe {
  width: 100%;
}
.cid-uohw642Knr .mbr-section-title,
.cid-uohw642Knr .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uohw642Knr .text-wrapper {
    padding: 2rem;
  }
}
.cid-uohw642Knr .mbr-section-title {
  color: #8e0c3a;
  text-align: left;
}
.cid-uohw642Knr .mbr-section-subtitle {
  color: #8e0c3a;
}
.cid-us4c5yGPKz {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-us4c5yGPKz .mbr-fallback-image.disabled {
  display: none;
}
.cid-us4c5yGPKz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-us4c5yGPKz .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-us4c5yGPKz img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-us4c5yGPKz .text-wrapper {
    padding: 2rem;
  }
}
.cid-us4c5yGPKz .mbr-section-title {
  color: #8e0c3a;
}
.cid-up1BD8sEs6 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-up1BD8sEs6 .counter-container ol {
  margin-bottom: 0;
}
.cid-up1BD8sEs6 .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-uohAmkg5Dx {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uohAmkg5Dx blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-uohq2Y1Qku {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uohq2Yeke2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #8e0c3a;
}
.cid-uohq2Yeke2 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uohq2Yeke2 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uohq2Yeke2 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uohq2Yeke2 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uohq2Yeke2 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uohq2Yeke2 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uohq2Yeke2 .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-uohq2Yeke2 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uohq2Yeke2 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uohq2Yeke2 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uohq2Yeke2 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uohq2Yeke2 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uohq2Yeke2 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uohq2Yeke2 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uohNZCwmtY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uohNZCwmtY nav.navbar {
  position: fixed;
}
.cid-uohNZCwmtY .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-uohNZCwmtY .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uohNZCwmtY .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uohNZCwmtY .dropdown-item:hover,
.cid-uohNZCwmtY .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uohNZCwmtY .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uohNZCwmtY .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uohNZCwmtY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uohNZCwmtY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uohNZCwmtY .nav-link {
  position: relative;
}
.cid-uohNZCwmtY .container {
  display: flex;
  margin: auto;
}
.cid-uohNZCwmtY .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uohNZCwmtY .dropdown-menu,
.cid-uohNZCwmtY .navbar.opened {
  background: #ffffff !important;
}
.cid-uohNZCwmtY .nav-item:focus,
.cid-uohNZCwmtY .nav-link:focus {
  outline: none;
}
.cid-uohNZCwmtY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uohNZCwmtY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uohNZCwmtY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uohNZCwmtY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uohNZCwmtY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uohNZCwmtY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uohNZCwmtY .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: #ffffff;
}
.cid-uohNZCwmtY .navbar.opened {
  transition: all 0.3s;
}
.cid-uohNZCwmtY .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uohNZCwmtY .navbar .navbar-logo img {
  width: auto;
}
.cid-uohNZCwmtY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uohNZCwmtY .navbar.collapsed {
  justify-content: center;
}
.cid-uohNZCwmtY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uohNZCwmtY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uohNZCwmtY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-uohNZCwmtY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uohNZCwmtY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uohNZCwmtY .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-uohNZCwmtY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uohNZCwmtY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uohNZCwmtY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uohNZCwmtY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uohNZCwmtY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uohNZCwmtY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uohNZCwmtY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uohNZCwmtY .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-uohNZCwmtY .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uohNZCwmtY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uohNZCwmtY .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uohNZCwmtY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uohNZCwmtY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uohNZCwmtY .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uohNZCwmtY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uohNZCwmtY .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uohNZCwmtY .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uohNZCwmtY .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-uohNZCwmtY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uohNZCwmtY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uohNZCwmtY .dropdown-item.active,
.cid-uohNZCwmtY .dropdown-item:active {
  background-color: transparent;
}
.cid-uohNZCwmtY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uohNZCwmtY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uohNZCwmtY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uohNZCwmtY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uohNZCwmtY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uohNZCwmtY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uohNZCwmtY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uohNZCwmtY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uohNZCwmtY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uohNZCwmtY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-uohNZCwmtY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uohNZCwmtY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uohNZCwmtY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uohNZCwmtY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uohNZCwmtY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uohNZCwmtY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uohNZCwmtY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uohNZCwmtY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uohNZCwmtY .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uohNZCwmtY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uohNZCwmtY .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-uohNZCwmtY .navbar {
    height: 70px;
  }
  .cid-uohNZCwmtY .navbar.opened {
    height: auto;
  }
  .cid-uohNZCwmtY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uohNZCSEgS {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/stores-bg-1-1280x379.jpg");
}
.cid-uohNZCSEgS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uohNZCSEgS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uohNZCSEgS .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-uohNZCSEgS .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-upkmJ7uv2A {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-upkmJ7uv2A .mbr-fallback-image.disabled {
  display: none;
}
.cid-upkmJ7uv2A .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-upkmJ7uv2A .container {
    max-width: 1400px;
  }
}
.cid-upkmJ7uv2A .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-upkmJ7uv2A .row {
  justify-content: center;
}
.cid-upkmJ7uv2A .mbr-section-title {
  color: #8e0c3a;
}
.cid-upkgorun2D {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-upkgorun2D .mbr-fallback-image.disabled {
  display: none;
}
.cid-upkgorun2D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upkgorun2D .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #6592e6;
  margin-left: 1rem;
}
.cid-upkgorun2D .panel-group {
  border: none;
}
.cid-upkgorun2D .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-upkgorun2D .panel-body,
.cid-upkgorun2D .card-header {
  padding: 1rem 0;
}
.cid-upkgorun2D .panel-title-edit {
  color: #000000;
}
.cid-upkgorun2D .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-upkgorun2D H3 {
  color: #8e0c3a;
}
.cid-upkvOjOIMx {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-upkvOjOIMx .mbr-fallback-image.disabled {
  display: none;
}
.cid-upkvOjOIMx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upkvOjOIMx .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #6592e6;
  margin-left: 1rem;
}
.cid-upkvOjOIMx .panel-group {
  border: none;
}
.cid-upkvOjOIMx .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-upkvOjOIMx .panel-body,
.cid-upkvOjOIMx .card-header {
  padding: 1rem 0;
}
.cid-upkvOjOIMx .panel-title-edit {
  color: #000000;
}
.cid-upkvOjOIMx .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-upkzAy5zZP {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-upkzAy5zZP .mbr-fallback-image.disabled {
  display: none;
}
.cid-upkzAy5zZP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upkzAy5zZP .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #6592e6;
  margin-left: 1rem;
}
.cid-upkzAy5zZP .panel-group {
  border: none;
}
.cid-upkzAy5zZP .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-upkzAy5zZP .panel-body,
.cid-upkzAy5zZP .card-header {
  padding: 1rem 0;
}
.cid-upkzAy5zZP .panel-title-edit {
  color: #000000;
}
.cid-upkzAy5zZP .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-upkzAy5zZP H3 {
  color: #8e0c3a;
}
.cid-upkBaalYqv {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-upkBaalYqv .mbr-fallback-image.disabled {
  display: none;
}
.cid-upkBaalYqv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upkBaalYqv .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #6592e6;
  margin-left: 1rem;
}
.cid-upkBaalYqv .panel-group {
  border: none;
}
.cid-upkBaalYqv .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-upkBaalYqv .panel-body,
.cid-upkBaalYqv .card-header {
  padding: 1rem 0;
}
.cid-upkBaalYqv .panel-title-edit {
  color: #000000;
}
.cid-upkBaalYqv .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-upkBaalYqv H3 {
  color: #8e0c3a;
}
.cid-uohNZExJvn {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #8e0c3a;
}
.cid-uohNZExJvn .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uohNZExJvn .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uohNZExJvn .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uohNZExJvn .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uohNZExJvn .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uohNZExJvn .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uohNZExJvn .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-uohNZExJvn .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uohNZExJvn .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uohNZExJvn .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uohNZExJvn .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uohNZExJvn .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uohNZExJvn .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uohNZExJvn .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uosJ3hOZLP {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uosJ3hOZLP nav.navbar {
  position: fixed;
}
.cid-uosJ3hOZLP .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-uosJ3hOZLP .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uosJ3hOZLP .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uosJ3hOZLP .dropdown-item:hover,
.cid-uosJ3hOZLP .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uosJ3hOZLP .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uosJ3hOZLP .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uosJ3hOZLP .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uosJ3hOZLP .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uosJ3hOZLP .nav-link {
  position: relative;
}
.cid-uosJ3hOZLP .container {
  display: flex;
  margin: auto;
}
.cid-uosJ3hOZLP .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uosJ3hOZLP .dropdown-menu,
.cid-uosJ3hOZLP .navbar.opened {
  background: #ffffff !important;
}
.cid-uosJ3hOZLP .nav-item:focus,
.cid-uosJ3hOZLP .nav-link:focus {
  outline: none;
}
.cid-uosJ3hOZLP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uosJ3hOZLP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uosJ3hOZLP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uosJ3hOZLP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uosJ3hOZLP .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uosJ3hOZLP .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uosJ3hOZLP .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: #ffffff;
}
.cid-uosJ3hOZLP .navbar.opened {
  transition: all 0.3s;
}
.cid-uosJ3hOZLP .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uosJ3hOZLP .navbar .navbar-logo img {
  width: auto;
}
.cid-uosJ3hOZLP .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uosJ3hOZLP .navbar.collapsed {
  justify-content: center;
}
.cid-uosJ3hOZLP .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uosJ3hOZLP .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uosJ3hOZLP .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-uosJ3hOZLP .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uosJ3hOZLP .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uosJ3hOZLP .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-uosJ3hOZLP .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uosJ3hOZLP .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uosJ3hOZLP .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uosJ3hOZLP .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uosJ3hOZLP .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uosJ3hOZLP .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uosJ3hOZLP .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uosJ3hOZLP .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-uosJ3hOZLP .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uosJ3hOZLP .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uosJ3hOZLP .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uosJ3hOZLP .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uosJ3hOZLP .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uosJ3hOZLP .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uosJ3hOZLP .navbar.navbar-short {
  min-height: 60px;
}
.cid-uosJ3hOZLP .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uosJ3hOZLP .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uosJ3hOZLP .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-uosJ3hOZLP .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uosJ3hOZLP .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uosJ3hOZLP .dropdown-item.active,
.cid-uosJ3hOZLP .dropdown-item:active {
  background-color: transparent;
}
.cid-uosJ3hOZLP .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uosJ3hOZLP .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uosJ3hOZLP .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uosJ3hOZLP .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uosJ3hOZLP .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uosJ3hOZLP .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uosJ3hOZLP ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uosJ3hOZLP .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uosJ3hOZLP button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uosJ3hOZLP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-uosJ3hOZLP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uosJ3hOZLP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uosJ3hOZLP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uosJ3hOZLP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uosJ3hOZLP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uosJ3hOZLP nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uosJ3hOZLP nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uosJ3hOZLP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uosJ3hOZLP .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uosJ3hOZLP a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uosJ3hOZLP .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-uosJ3hOZLP .navbar {
    height: 70px;
  }
  .cid-uosJ3hOZLP .navbar.opened {
    height: auto;
  }
  .cid-uosJ3hOZLP .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uosJ3iwT4t {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/testimonial-header-927x349.jpg");
}
.cid-uosJ3iwT4t .mbr-fallback-image.disabled {
  display: none;
}
.cid-uosJ3iwT4t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uosJ3iwT4t .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-uosJ3iwT4t .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-uosJyHKeza {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-uosJyHKeza .mbr-fallback-image.disabled {
  display: none;
}
.cid-uosJyHKeza .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uosJyHKeza ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-uosJyHKeza li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-uosJyHKeza ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #6592e6;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-uosJyHKeza H3 {
  color: #8e0c3a;
}
.cid-uoErWDfVPB {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uosJ3jGYYx {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uosJ3jGYYx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uosJ3jGYYx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uosJ3jGYYx .mbr-text,
.cid-uosJ3jGYYx .mbr-section-btn {
  color: #232323;
}
.cid-uosJ3jGYYx .card-title,
.cid-uosJ3jGYYx .card-box {
  color: #ffffff;
}
.cid-uosJ3jGYYx .mbr-text,
.cid-uosJ3jGYYx .link-wrap {
  color: #ffffff;
}
.cid-uosJ3jGYYx .card-box .mbr-text,
.cid-uosJ3jGYYx .mbr-section-btn {
  color: #8e0c3a;
}
.cid-uosJ3k53Bh {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #8e0c3a;
}
.cid-uosJ3k53Bh .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uosJ3k53Bh .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uosJ3k53Bh .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uosJ3k53Bh .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uosJ3k53Bh .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uosJ3k53Bh .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uosJ3k53Bh .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-uosJ3k53Bh .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uosJ3k53Bh .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uosJ3k53Bh .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uosJ3k53Bh .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uosJ3k53Bh .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uosJ3k53Bh .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uosJ3k53Bh .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uosVPBJt8u {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uosVPBJt8u nav.navbar {
  position: fixed;
}
.cid-uosVPBJt8u .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-uosVPBJt8u .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uosVPBJt8u .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uosVPBJt8u .dropdown-item:hover,
.cid-uosVPBJt8u .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uosVPBJt8u .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uosVPBJt8u .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uosVPBJt8u .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uosVPBJt8u .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uosVPBJt8u .nav-link {
  position: relative;
}
.cid-uosVPBJt8u .container {
  display: flex;
  margin: auto;
}
.cid-uosVPBJt8u .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uosVPBJt8u .dropdown-menu,
.cid-uosVPBJt8u .navbar.opened {
  background: #ffffff !important;
}
.cid-uosVPBJt8u .nav-item:focus,
.cid-uosVPBJt8u .nav-link:focus {
  outline: none;
}
.cid-uosVPBJt8u .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uosVPBJt8u .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uosVPBJt8u .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uosVPBJt8u .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uosVPBJt8u .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uosVPBJt8u .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uosVPBJt8u .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: #ffffff;
}
.cid-uosVPBJt8u .navbar.opened {
  transition: all 0.3s;
}
.cid-uosVPBJt8u .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uosVPBJt8u .navbar .navbar-logo img {
  width: auto;
}
.cid-uosVPBJt8u .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uosVPBJt8u .navbar.collapsed {
  justify-content: center;
}
.cid-uosVPBJt8u .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uosVPBJt8u .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uosVPBJt8u .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-uosVPBJt8u .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uosVPBJt8u .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uosVPBJt8u .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-uosVPBJt8u .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uosVPBJt8u .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uosVPBJt8u .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uosVPBJt8u .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uosVPBJt8u .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uosVPBJt8u .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uosVPBJt8u .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uosVPBJt8u .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-uosVPBJt8u .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uosVPBJt8u .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uosVPBJt8u .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uosVPBJt8u .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uosVPBJt8u .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uosVPBJt8u .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uosVPBJt8u .navbar.navbar-short {
  min-height: 60px;
}
.cid-uosVPBJt8u .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uosVPBJt8u .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uosVPBJt8u .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-uosVPBJt8u .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uosVPBJt8u .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uosVPBJt8u .dropdown-item.active,
.cid-uosVPBJt8u .dropdown-item:active {
  background-color: transparent;
}
.cid-uosVPBJt8u .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uosVPBJt8u .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uosVPBJt8u .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uosVPBJt8u .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uosVPBJt8u .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uosVPBJt8u .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uosVPBJt8u ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uosVPBJt8u .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uosVPBJt8u button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uosVPBJt8u button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-uosVPBJt8u button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uosVPBJt8u button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uosVPBJt8u button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uosVPBJt8u button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uosVPBJt8u nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uosVPBJt8u nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uosVPBJt8u nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uosVPBJt8u nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uosVPBJt8u .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uosVPBJt8u a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uosVPBJt8u .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-uosVPBJt8u .navbar {
    height: 70px;
  }
  .cid-uosVPBJt8u .navbar.opened {
    height: auto;
  }
  .cid-uosVPBJt8u .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uosVPC4bTw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/cat-header-1280x755.jpg");
}
.cid-uosVPC4bTw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uosVPC4bTw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uosVPC4bTw .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-uosVPC4bTw .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-uosWz9RfOm {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uosWz9RfOm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uosWz9RfOm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uosWz9RfOm .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-uosWz9RfOm .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uosWz9RfOm .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uosWz9RfOm .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uosWz9RfOm .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-uosWz9RfOm .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-uosWz9RfOm .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uosWz9RfOm .card-title {
  color: #8e0c3a;
}
.cid-uosWloTunj {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uosWloTunj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uosWloTunj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uosWloTunj .bg-instagram {
  background: #f00075;
  color: #ffffff;
}
.cid-uosWloTunj .bg-instagram:hover {
  background: #bd005c;
}
.cid-uosWloTunj .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-uosWloTunj [class^="socicon-"]:before,
.cid-uosWloTunj [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-uosWloTunj .mbr-section-title,
.cid-uosWloTunj .social-list {
  color: #8e0c3a;
}
.cid-uosVPDfbv1 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #8e0c3a;
}
.cid-uosVPDfbv1 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uosVPDfbv1 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uosVPDfbv1 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uosVPDfbv1 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uosVPDfbv1 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uosVPDfbv1 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uosVPDfbv1 .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-uosVPDfbv1 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uosVPDfbv1 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uosVPDfbv1 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uosVPDfbv1 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uosVPDfbv1 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uosVPDfbv1 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uosVPDfbv1 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uot5ELlvtr {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uot5ELlvtr nav.navbar {
  position: fixed;
}
.cid-uot5ELlvtr .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-uot5ELlvtr .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uot5ELlvtr .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uot5ELlvtr .dropdown-item:hover,
.cid-uot5ELlvtr .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uot5ELlvtr .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uot5ELlvtr .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uot5ELlvtr .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uot5ELlvtr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uot5ELlvtr .nav-link {
  position: relative;
}
.cid-uot5ELlvtr .container {
  display: flex;
  margin: auto;
}
.cid-uot5ELlvtr .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uot5ELlvtr .dropdown-menu,
.cid-uot5ELlvtr .navbar.opened {
  background: #ffffff !important;
}
.cid-uot5ELlvtr .nav-item:focus,
.cid-uot5ELlvtr .nav-link:focus {
  outline: none;
}
.cid-uot5ELlvtr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uot5ELlvtr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uot5ELlvtr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uot5ELlvtr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uot5ELlvtr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uot5ELlvtr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uot5ELlvtr .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: #ffffff;
}
.cid-uot5ELlvtr .navbar.opened {
  transition: all 0.3s;
}
.cid-uot5ELlvtr .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uot5ELlvtr .navbar .navbar-logo img {
  width: auto;
}
.cid-uot5ELlvtr .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uot5ELlvtr .navbar.collapsed {
  justify-content: center;
}
.cid-uot5ELlvtr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uot5ELlvtr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uot5ELlvtr .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-uot5ELlvtr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uot5ELlvtr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uot5ELlvtr .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-uot5ELlvtr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uot5ELlvtr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uot5ELlvtr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uot5ELlvtr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uot5ELlvtr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uot5ELlvtr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uot5ELlvtr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uot5ELlvtr .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-uot5ELlvtr .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uot5ELlvtr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uot5ELlvtr .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uot5ELlvtr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uot5ELlvtr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uot5ELlvtr .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uot5ELlvtr .navbar.navbar-short {
  min-height: 60px;
}
.cid-uot5ELlvtr .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uot5ELlvtr .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uot5ELlvtr .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-uot5ELlvtr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uot5ELlvtr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uot5ELlvtr .dropdown-item.active,
.cid-uot5ELlvtr .dropdown-item:active {
  background-color: transparent;
}
.cid-uot5ELlvtr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uot5ELlvtr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uot5ELlvtr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uot5ELlvtr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uot5ELlvtr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uot5ELlvtr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uot5ELlvtr ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uot5ELlvtr .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uot5ELlvtr button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uot5ELlvtr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-uot5ELlvtr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uot5ELlvtr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uot5ELlvtr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uot5ELlvtr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uot5ELlvtr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uot5ELlvtr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uot5ELlvtr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uot5ELlvtr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uot5ELlvtr .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uot5ELlvtr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uot5ELlvtr .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-uot5ELlvtr .navbar {
    height: 70px;
  }
  .cid-uot5ELlvtr .navbar.opened {
    height: auto;
  }
  .cid-uot5ELlvtr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uot5EMebdg {
  background-image: url("../../../assets/images/intro-bg-1280x726.jpg");
}
.cid-uot5EMebdg .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uot5EMebdg .mbr-text,
.cid-uot5EMebdg .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uot5ENlkZS {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uot5ENlkZS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uot5ENlkZS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uot5ENlkZS .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uot5ENlkZS .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-uot5ENlkZS .mbr-section-title {
  color: #8e0c3a;
}
.cid-uot5ENJswl {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uot5ENJswl .mbr-text {
  text-align: center;
}
.cid-uot5EO4uYP {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uot5EO4uYP .mbr-section-title {
  color: #05386b;
}
.cid-uot5EO4uYP .mbr-section-subtitle {
  color: #05386b;
}
.cid-uot5EOAEpO {
  padding-top: 2rem;
  padding-bottom: 10rem;
  background-color: #edf5e1;
}
.cid-uot5EOAEpO .card-box {
  padding: 2rem;
  width: 58.33%;
}
.cid-uot5EOAEpO .img-wrapper {
  width: 41.66%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uot5EOAEpO .img1 {
  background: #05386b;
}
.cid-uot5EOAEpO .img2 {
  background: #05386b;
}
.cid-uot5EOAEpO .mbr-iconfont {
  display: block;
  font-size: 8rem;
  color: #ffffff;
  margin-bottom: 2rem;
}
.cid-uot5EOAEpO .card {
  margin: auto;
  min-height: 280px;
  transition: all 0.3s;
}
.cid-uot5EOAEpO .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
  display: flex;
  overflow: hidden;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uot5EOAEpO .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uot5EOAEpO .card-wrapper {
    flex-direction: column;
  }
  .cid-uot5EOAEpO .card-box {
    padding: 1rem;
  }
  .cid-uot5EOAEpO .card-box,
  .cid-uot5EOAEpO .img-wrapper {
    width: 100%;
  }
  .cid-uot5EOAEpO .img-wrapper {
    padding: 4rem 1rem;
  }
  .cid-uot5EOAEpO .mbr-flex {
    flex-direction: column-reverse;
  }
}
.cid-uot5EOAEpO .card-subtitle {
  color: #05386b;
}
.cid-uot5EOAEpO .mbr-text,
.cid-uot5EOAEpO .link-wrap {
  color: #555555;
}
.cid-uot5EOAEpO .card-title,
.cid-uot5EOAEpO .card-box {
  color: #05386b;
}
.cid-uot5EOAEpO .mbr-text,
.cid-uot5EOAEpO .mbr-section-btn {
  color: #555555;
}
.cid-uot5EOX3Eu {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uot5EOX3Eu .mbr-section-title {
  color: #05386b;
}
.cid-uot5EOX3Eu .mbr-section-subtitle {
  color: #05386b;
}
.cid-uot5EPe0U3 {
  padding-top: 1rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uot5EPe0U3 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uot5EPe0U3 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uot5EPe0U3 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uot5EPe0U3 .card-wrapper {
  border-radius: 4px;
  background-color: #edf5e1;
}
.cid-uot5EPe0U3 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uot5EPe0U3 .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uot5EPe0U3 .mbr-text {
  color: #05386b;
}
.cid-uot5EPe0U3 .card-title {
  color: #05386b;
}
.cid-uot5EPe0U3 .price {
  color: #05386b;
}
.cid-uot5EQ4td9 {
  padding-top: 9rem;
  padding-bottom: 8rem;
  background-color: #edf5e1;
}
.cid-uot5EQ4td9 .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-uot5EQ4td9 .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-uot5EQ4td9 .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uot5EQ4td9 .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uot5EQ4td9 .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uot5EQ4td9 .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-uot5EQ4td9 .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-uot5EQ4td9 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uot5EQ4td9 .card-title {
  color: #05386b;
}
.cid-uot5EQ4td9 .mbr-text,
.cid-uot5EQ4td9 .mbr-section-btn {
  color: #05386b;
}
.cid-uot5EQkr74 {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-uot5EQkr74 .img-wrapper {
  text-align: center;
}
.cid-uot5EQkr74 img {
  margin: auto;
  width: 140px;
  padding-bottom: 2rem;
}
.cid-uot5EQkr74 .row {
  align-items: flex-start;
}
.cid-uot5EQkr74 .card-wrapper {
  border-radius: 4px;
  background: #edf5e1;
}
@media (max-width: 992px) {
  .cid-uot5EQkr74 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-uot5EQkr74 .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uot5EQkr74 .card-wrapper {
    padding: 1rem;
  }
}
.cid-uot5EQkr74 .card-title {
  color: #05386b;
}
.cid-uot5EQkr74 .mbr-text,
.cid-uot5EQkr74 .mbr-section-btn {
  color: #05386b;
}
.cid-uot5EQDZKl {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #edf5e1;
}
.cid-uot5EQDZKl img,
.cid-uot5EQDZKl .item-img {
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uot5EQDZKl .item:focus,
.cid-uot5EQDZKl span:focus {
  outline: none;
}
.cid-uot5EQDZKl .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uot5EQDZKl .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uot5EQDZKl .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uot5EQDZKl .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uot5EQDZKl .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uot5EQDZKl .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uot5EQDZKl .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uot5EQDZKl .mbr-section-title {
  color: #05386b;
}
.cid-uot5EQDZKl .mbr-text,
.cid-uot5EQDZKl .mbr-section-btn {
  text-align: left;
}
.cid-uot5EQDZKl .item-title {
  text-align: left;
  color: #05386b;
}
.cid-uot5EQDZKl .item-subtitle {
  text-align: left;
  color: #232323;
}
.cid-uot5EQDZKl .mbr-section-subtitle {
  color: #05386b;
}
.cid-uot5EQYqyG {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uot5EQYqyG .image-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-uot5EQYqyG .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-uot5EQYqyG .mbr-section-title {
  color: #05386b;
}
.cid-uot5EQYqyG .mbr-text {
  color: #05386b;
}
.cid-uot5EQYqyG .name {
  color: #05386b;
}
.cid-uot5EQYqyG .position {
  color: #05386b;
}
.cid-uot5ERhWhm {
  padding-top: 9rem;
  padding-bottom: 10rem;
  background-color: #edf5e1;
}
.cid-uot5ERhWhm .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uot5ERhWhm .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-uot5ERhWhm .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uot5ERhWhm .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uot5ERhWhm .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-uot5ERhWhm .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uot5ERhWhm .carousel-control,
.cid-uot5ERhWhm .close {
  background: #1b1b1b;
}
.cid-uot5ERhWhm .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uot5ERhWhm .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uot5ERhWhm .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uot5ERhWhm .carousel-control-next span {
  margin-left: 5px;
}
.cid-uot5ERhWhm .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-uot5ERhWhm .close::before {
  content: '\e91a';
}
.cid-uot5ERhWhm .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uot5ERhWhm .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-uot5ERhWhm .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uot5ERhWhm .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uot5ERhWhm .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uot5ERhWhm .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uot5ERhWhm .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-uot5ERhWhm .carousel-indicators li.active,
.cid-uot5ERhWhm .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uot5ERhWhm .carousel-indicators li::after,
.cid-uot5ERhWhm .carousel-indicators li::before {
  content: none;
}
.cid-uot5ERhWhm .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uot5ERhWhm .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uot5ERhWhm .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uot5ERhWhm .carousel-indicators {
    display: none;
  }
}
.cid-uot5ERhWhm .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uot5ERhWhm .carousel-inner > .active {
  display: block;
}
.cid-uot5ERhWhm .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uot5ERhWhm .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uot5ERhWhm .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uot5ERhWhm .carousel-control,
  .cid-uot5ERhWhm .carousel-indicators,
  .cid-uot5ERhWhm .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uot5ERhWhm .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uot5ERhWhm .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uot5ERhWhm .carousel-indicators .active,
.cid-uot5ERhWhm .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uot5ERhWhm .carousel-indicators .active {
  background: #fff;
}
.cid-uot5ERhWhm .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uot5ERhWhm .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uot5ERhWhm .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uot5ERhWhm .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uot5ERhWhm .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uot5ERhWhm .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uot5ERhWhm .carousel {
  width: 100%;
}
.cid-uot5ERhWhm .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uot5ERhWhm .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uot5ERhWhm .modal.fade .modal-dialog,
.cid-uot5ERhWhm .modal.in .modal-dialog {
  transform: none;
}
.cid-uot5ERhWhm .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uot5ERhWhm H6 {
  text-align: center;
}
.cid-uot5ERhWhm H3 {
  color: #05386b;
}
.cid-uot5ERN5up {
  padding-top: 5rem;
  padding-bottom: 7rem;
  background: #fafafa;
}
@media (max-width: 767px) {
  .cid-uot5ERN5up .row {
    flex-direction: column-reverse;
  }
  .cid-uot5ERN5up .row .map-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uot5ERN5up .google-map {
  height: 100%;
  position: relative;
}
.cid-uot5ERN5up .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uot5ERN5up .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-uot5ERN5up .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uot5ERN5up .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uot5ERN5up .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uot5ERN5up .card-wrapper {
  display: flex;
  border-radius: 4px;
  background: #edf5e1;
}
.cid-uot5ERN5up .card-wrapper:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-uot5ERN5up .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uot5ERN5up .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uot5ERN5up .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #6592e6;
}
.cid-uot5ERN5up .mbr-section-title {
  color: #05386b;
}
.cid-uot5ERN5up .mbr-section-subtitle {
  color: #05386b;
}
.cid-uot5ERN5up .card-title {
  color: #05386b;
}
.cid-uot5ERN5up P {
  color: #05386b;
}
.cid-uot5ESdtTj {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #8e0c3a;
}
.cid-uot5ESdtTj .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uot5ESdtTj .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uot5ESdtTj .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uot5ESdtTj .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uot5ESdtTj .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uot5ESdtTj .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uot5ESdtTj .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-uot5ESdtTj .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uot5ESdtTj .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uot5ESdtTj .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uot5ESdtTj .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uot5ESdtTj .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uot5ESdtTj .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uot5ESdtTj .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sFAA5oUu2Y {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sFAA5oUu2Y nav.navbar {
  position: fixed;
}
.cid-sFAA5oUu2Y .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-sFAA5oUu2Y .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFAA5oUu2Y .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFAA5oUu2Y .dropdown-item:hover,
.cid-sFAA5oUu2Y .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sFAA5oUu2Y .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFAA5oUu2Y .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFAA5oUu2Y .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFAA5oUu2Y .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFAA5oUu2Y .nav-link {
  position: relative;
}
.cid-sFAA5oUu2Y .container {
  display: flex;
  margin: auto;
}
.cid-sFAA5oUu2Y .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFAA5oUu2Y .dropdown-menu,
.cid-sFAA5oUu2Y .navbar.opened {
  background: #ffffff !important;
}
.cid-sFAA5oUu2Y .nav-item:focus,
.cid-sFAA5oUu2Y .nav-link:focus {
  outline: none;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFAA5oUu2Y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFAA5oUu2Y .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFAA5oUu2Y .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFAA5oUu2Y .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: #ffffff;
}
.cid-sFAA5oUu2Y .navbar.opened {
  transition: all 0.3s;
}
.cid-sFAA5oUu2Y .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFAA5oUu2Y .navbar .navbar-logo img {
  width: auto;
}
.cid-sFAA5oUu2Y .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFAA5oUu2Y .navbar.collapsed {
  justify-content: center;
}
.cid-sFAA5oUu2Y .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFAA5oUu2Y .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sFAA5oUu2Y .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-sFAA5oUu2Y .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFAA5oUu2Y .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFAA5oUu2Y .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-sFAA5oUu2Y .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFAA5oUu2Y .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFAA5oUu2Y .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFAA5oUu2Y .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFAA5oUu2Y .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFAA5oUu2Y .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFAA5oUu2Y .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFAA5oUu2Y .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-sFAA5oUu2Y .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFAA5oUu2Y .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFAA5oUu2Y .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFAA5oUu2Y .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFAA5oUu2Y .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFAA5oUu2Y .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFAA5oUu2Y .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFAA5oUu2Y .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFAA5oUu2Y .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFAA5oUu2Y .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-sFAA5oUu2Y .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFAA5oUu2Y .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFAA5oUu2Y .dropdown-item.active,
.cid-sFAA5oUu2Y .dropdown-item:active {
  background-color: transparent;
}
.cid-sFAA5oUu2Y .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFAA5oUu2Y .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFAA5oUu2Y .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFAA5oUu2Y .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sFAA5oUu2Y .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFAA5oUu2Y .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFAA5oUu2Y ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFAA5oUu2Y .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFAA5oUu2Y button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFAA5oUu2Y button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFAA5oUu2Y nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFAA5oUu2Y .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sFAA5oUu2Y a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFAA5oUu2Y .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-sFAA5oUu2Y .navbar {
    height: 70px;
  }
  .cid-sFAA5oUu2Y .navbar.opened {
    height: auto;
  }
  .cid-sFAA5oUu2Y .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uoytnlLOnh {
  background-image: url("../../../assets/images/intro-bg-1280x796.jpg");
}
.cid-uoytnlLOnh .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-uoytnlLOnh .mbr-text,
.cid-uoytnlLOnh .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-uzdHdHOZVJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-uzdHdHOZVJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzdHdHOZVJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzdHdHOZVJ .video-wrapper iframe {
  width: 100%;
}
.cid-uzdHdHOZVJ .mbr-section-title,
.cid-uzdHdHOZVJ .mbr-section-subtitle,
.cid-uzdHdHOZVJ .mbr-text {
  text-align: center;
}
.cid-uzdHdHOZVJ .mbr-section-title {
  color: #8e0c3a;
}
.cid-uzdHdHOZVJ .mbr-text {
  color: #8e0c3a;
}
.cid-us48R1O9pE {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-us48hJ4RQ1 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-us48hJ4RQ1 .mbr-text {
  text-align: center;
  color: #8e0c3a;
}
.cid-uoytP8X3BS {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uoytP8X3BS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uoytP8X3BS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uoytP8X3BS .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uoytP8X3BS .image-wrap img {
    display: block;
    margin: auto;
    width: 80%;
  }
}
.cid-uoytP8X3BS .mbr-section-title {
  color: #8e0c3a;
}
.cid-uoytP8X3BS .mbr-text,
.cid-uoytP8X3BS .mbr-section-btn {
  color: #8e0c3a;
}
.cid-uoyuEA2KLX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uoyuEA2KLX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uoyuEA2KLX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uoyuEA2KLX .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-uoyuEA2KLX .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uoyuEA2KLX .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uoyuEA2KLX .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uoyuEA2KLX .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-uoyuEA2KLX .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-uoyuEA2KLX .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uoyuEA2KLX .card-title {
  color: #8e0c3a;
}
.cid-sFAOjz8nX7 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #8e0c3a;
}
.cid-sFAOjz8nX7 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sFAOjz8nX7 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sFAOjz8nX7 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sFAOjz8nX7 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sFAOjz8nX7 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sFAOjz8nX7 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sFAOjz8nX7 .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-sFAOjz8nX7 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sFAOjz8nX7 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sFAOjz8nX7 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sFAOjz8nX7 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sFAOjz8nX7 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sFAOjz8nX7 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sFAOjz8nX7 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uoyVILEoSy {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uoyVILEoSy nav.navbar {
  position: fixed;
}
.cid-uoyVILEoSy .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-uoyVILEoSy .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uoyVILEoSy .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uoyVILEoSy .dropdown-item:hover,
.cid-uoyVILEoSy .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uoyVILEoSy .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uoyVILEoSy .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uoyVILEoSy .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uoyVILEoSy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uoyVILEoSy .nav-link {
  position: relative;
}
.cid-uoyVILEoSy .container {
  display: flex;
  margin: auto;
}
.cid-uoyVILEoSy .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uoyVILEoSy .dropdown-menu,
.cid-uoyVILEoSy .navbar.opened {
  background: #ffffff !important;
}
.cid-uoyVILEoSy .nav-item:focus,
.cid-uoyVILEoSy .nav-link:focus {
  outline: none;
}
.cid-uoyVILEoSy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uoyVILEoSy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uoyVILEoSy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uoyVILEoSy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uoyVILEoSy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uoyVILEoSy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uoyVILEoSy .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: #ffffff;
}
.cid-uoyVILEoSy .navbar.opened {
  transition: all 0.3s;
}
.cid-uoyVILEoSy .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uoyVILEoSy .navbar .navbar-logo img {
  width: auto;
}
.cid-uoyVILEoSy .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uoyVILEoSy .navbar.collapsed {
  justify-content: center;
}
.cid-uoyVILEoSy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uoyVILEoSy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uoyVILEoSy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-uoyVILEoSy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uoyVILEoSy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uoyVILEoSy .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-uoyVILEoSy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uoyVILEoSy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uoyVILEoSy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uoyVILEoSy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uoyVILEoSy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uoyVILEoSy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uoyVILEoSy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uoyVILEoSy .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-uoyVILEoSy .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uoyVILEoSy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uoyVILEoSy .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uoyVILEoSy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uoyVILEoSy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uoyVILEoSy .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uoyVILEoSy .navbar.navbar-short {
  min-height: 60px;
}
.cid-uoyVILEoSy .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uoyVILEoSy .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uoyVILEoSy .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-uoyVILEoSy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uoyVILEoSy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uoyVILEoSy .dropdown-item.active,
.cid-uoyVILEoSy .dropdown-item:active {
  background-color: transparent;
}
.cid-uoyVILEoSy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uoyVILEoSy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uoyVILEoSy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uoyVILEoSy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uoyVILEoSy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uoyVILEoSy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uoyVILEoSy ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uoyVILEoSy .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uoyVILEoSy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uoyVILEoSy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-uoyVILEoSy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uoyVILEoSy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uoyVILEoSy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uoyVILEoSy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uoyVILEoSy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uoyVILEoSy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uoyVILEoSy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uoyVILEoSy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uoyVILEoSy .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uoyVILEoSy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uoyVILEoSy .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-uoyVILEoSy .navbar {
    height: 70px;
  }
  .cid-uoyVILEoSy .navbar.opened {
    height: auto;
  }
  .cid-uoyVILEoSy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uoyVIMn7oU {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/feed-guidelines-header-1280x769.jpg");
}
.cid-uoyVIMn7oU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uoyVIMn7oU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uoyVIMn7oU .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-uoyVIMn7oU .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-uoyXLT8qLK {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uoyXLT8qLK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uoyXLT8qLK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uoyXLT8qLK .item-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-uoyXLT8qLK .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uoyXLT8qLK .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uoyXLT8qLK .card {
    margin-bottom: 2rem;
  }
  .cid-uoyXLT8qLK .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-uoyXLT8qLK .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uoyXLT8qLK .card-title,
.cid-uoyXLT8qLK .card-box {
  color: #8e0c3a;
}
.cid-uoyXLT8qLK .mbr-text,
.cid-uoyXLT8qLK .mbr-section-btn {
  color: #232323;
}
.cid-uoyXLT8qLK .icon-title {
  color: #8e0c3a;
}
.cid-uoz2QD411E {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uoz2QD411E .mbr-fallback-image.disabled {
  display: none;
}
.cid-uoz2QD411E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uoz2QD411E .item-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-uoz2QD411E .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uoz2QD411E .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uoz2QD411E .card {
    margin-bottom: 2rem;
  }
  .cid-uoz2QD411E .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-uoz2QD411E .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uoz2QD411E .card-title,
.cid-uoz2QD411E .card-box {
  color: #8e0c3a;
}
.cid-uoz2QD411E .mbr-text,
.cid-uoz2QD411E .mbr-section-btn {
  color: #232323;
}
.cid-uoz2QD411E .icon-title {
  color: #8e0c3a;
}
.cid-uoyVIO52gN {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uoyVIOldJa {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #8e0c3a;
}
.cid-uoyVIOldJa .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uoyVIOldJa .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uoyVIOldJa .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uoyVIOldJa .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uoyVIOldJa .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uoyVIOldJa .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uoyVIOldJa .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-uoyVIOldJa .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uoyVIOldJa .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uoyVIOldJa .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uoyVIOldJa .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uoyVIOldJa .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uoyVIOldJa .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uoyVIOldJa .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uozlFi5gzQ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uozlFi5gzQ nav.navbar {
  position: fixed;
}
.cid-uozlFi5gzQ .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-uozlFi5gzQ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uozlFi5gzQ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uozlFi5gzQ .dropdown-item:hover,
.cid-uozlFi5gzQ .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uozlFi5gzQ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uozlFi5gzQ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uozlFi5gzQ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uozlFi5gzQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uozlFi5gzQ .nav-link {
  position: relative;
}
.cid-uozlFi5gzQ .container {
  display: flex;
  margin: auto;
}
.cid-uozlFi5gzQ .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uozlFi5gzQ .dropdown-menu,
.cid-uozlFi5gzQ .navbar.opened {
  background: #ffffff !important;
}
.cid-uozlFi5gzQ .nav-item:focus,
.cid-uozlFi5gzQ .nav-link:focus {
  outline: none;
}
.cid-uozlFi5gzQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uozlFi5gzQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uozlFi5gzQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uozlFi5gzQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uozlFi5gzQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uozlFi5gzQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uozlFi5gzQ .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: #ffffff;
}
.cid-uozlFi5gzQ .navbar.opened {
  transition: all 0.3s;
}
.cid-uozlFi5gzQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uozlFi5gzQ .navbar .navbar-logo img {
  width: auto;
}
.cid-uozlFi5gzQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uozlFi5gzQ .navbar.collapsed {
  justify-content: center;
}
.cid-uozlFi5gzQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uozlFi5gzQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uozlFi5gzQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-uozlFi5gzQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uozlFi5gzQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uozlFi5gzQ .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-uozlFi5gzQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uozlFi5gzQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uozlFi5gzQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uozlFi5gzQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uozlFi5gzQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uozlFi5gzQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uozlFi5gzQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uozlFi5gzQ .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-uozlFi5gzQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uozlFi5gzQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uozlFi5gzQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uozlFi5gzQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uozlFi5gzQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uozlFi5gzQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uozlFi5gzQ .navbar.navbar-short {
  min-height: 60px;
}
.cid-uozlFi5gzQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uozlFi5gzQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uozlFi5gzQ .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-uozlFi5gzQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uozlFi5gzQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uozlFi5gzQ .dropdown-item.active,
.cid-uozlFi5gzQ .dropdown-item:active {
  background-color: transparent;
}
.cid-uozlFi5gzQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uozlFi5gzQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uozlFi5gzQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uozlFi5gzQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uozlFi5gzQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uozlFi5gzQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uozlFi5gzQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uozlFi5gzQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uozlFi5gzQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uozlFi5gzQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-uozlFi5gzQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uozlFi5gzQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uozlFi5gzQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uozlFi5gzQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uozlFi5gzQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uozlFi5gzQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uozlFi5gzQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uozlFi5gzQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uozlFi5gzQ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uozlFi5gzQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uozlFi5gzQ .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-uozlFi5gzQ .navbar {
    height: 70px;
  }
  .cid-uozlFi5gzQ .navbar.opened {
    height: auto;
  }
  .cid-uozlFi5gzQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uozlFiutKx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/resources-header-1280x736.jpg");
}
.cid-uozlFiutKx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uozlFiutKx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uozlFiutKx .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-uozlFiutKx .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-uozmoZa3MF {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uozmoZa3MF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uozmoZa3MF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uozmoZa3MF ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-uozmoZa3MF li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-uozmoZa3MF ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #6592e6;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-uozmoZa3MF H3 {
  color: #8e0c3a;
}
.cid-uozlFjw1oo {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uozlFjw1oo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uozlFjw1oo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uozlFjw1oo .mbr-text,
.cid-uozlFjw1oo .mbr-section-btn {
  color: #232323;
}
.cid-uozlFjw1oo .card-title,
.cid-uozlFjw1oo .card-box {
  color: #ffffff;
}
.cid-uozlFjw1oo .mbr-text,
.cid-uozlFjw1oo .link-wrap {
  color: #ffffff;
}
.cid-uozlFjw1oo .card-box .mbr-text,
.cid-uozlFjw1oo .mbr-section-btn {
  color: #8e0c3a;
}
.cid-uozlFjPnZl {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #8e0c3a;
}
.cid-uozlFjPnZl .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uozlFjPnZl .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uozlFjPnZl .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uozlFjPnZl .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uozlFjPnZl .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uozlFjPnZl .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uozlFjPnZl .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-uozlFjPnZl .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uozlFjPnZl .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uozlFjPnZl .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uozlFjPnZl .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uozlFjPnZl .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uozlFjPnZl .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uozlFjPnZl .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uoQNiNxoaO {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uoQNiNxoaO nav.navbar {
  position: fixed;
}
.cid-uoQNiNxoaO .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-uoQNiNxoaO .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uoQNiNxoaO .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uoQNiNxoaO .dropdown-item:hover,
.cid-uoQNiNxoaO .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uoQNiNxoaO .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uoQNiNxoaO .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uoQNiNxoaO .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uoQNiNxoaO .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uoQNiNxoaO .nav-link {
  position: relative;
}
.cid-uoQNiNxoaO .container {
  display: flex;
  margin: auto;
}
.cid-uoQNiNxoaO .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uoQNiNxoaO .dropdown-menu,
.cid-uoQNiNxoaO .navbar.opened {
  background: #ffffff !important;
}
.cid-uoQNiNxoaO .nav-item:focus,
.cid-uoQNiNxoaO .nav-link:focus {
  outline: none;
}
.cid-uoQNiNxoaO .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uoQNiNxoaO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uoQNiNxoaO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uoQNiNxoaO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uoQNiNxoaO .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uoQNiNxoaO .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uoQNiNxoaO .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: #ffffff;
}
.cid-uoQNiNxoaO .navbar.opened {
  transition: all 0.3s;
}
.cid-uoQNiNxoaO .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uoQNiNxoaO .navbar .navbar-logo img {
  width: auto;
}
.cid-uoQNiNxoaO .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uoQNiNxoaO .navbar.collapsed {
  justify-content: center;
}
.cid-uoQNiNxoaO .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uoQNiNxoaO .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uoQNiNxoaO .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-uoQNiNxoaO .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uoQNiNxoaO .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uoQNiNxoaO .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-uoQNiNxoaO .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uoQNiNxoaO .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uoQNiNxoaO .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uoQNiNxoaO .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uoQNiNxoaO .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uoQNiNxoaO .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uoQNiNxoaO .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uoQNiNxoaO .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-uoQNiNxoaO .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uoQNiNxoaO .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uoQNiNxoaO .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uoQNiNxoaO .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uoQNiNxoaO .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uoQNiNxoaO .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uoQNiNxoaO .navbar.navbar-short {
  min-height: 60px;
}
.cid-uoQNiNxoaO .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uoQNiNxoaO .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uoQNiNxoaO .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-uoQNiNxoaO .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uoQNiNxoaO .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uoQNiNxoaO .dropdown-item.active,
.cid-uoQNiNxoaO .dropdown-item:active {
  background-color: transparent;
}
.cid-uoQNiNxoaO .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uoQNiNxoaO .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uoQNiNxoaO .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uoQNiNxoaO .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uoQNiNxoaO .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uoQNiNxoaO .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uoQNiNxoaO ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uoQNiNxoaO .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uoQNiNxoaO button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uoQNiNxoaO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-uoQNiNxoaO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uoQNiNxoaO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uoQNiNxoaO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uoQNiNxoaO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uoQNiNxoaO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uoQNiNxoaO nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uoQNiNxoaO nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uoQNiNxoaO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uoQNiNxoaO .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uoQNiNxoaO a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uoQNiNxoaO .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-uoQNiNxoaO .navbar {
    height: 70px;
  }
  .cid-uoQNiNxoaO .navbar.opened {
    height: auto;
  }
  .cid-uoQNiNxoaO .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uoQNiNX1Kx {
  padding-top: 7rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/cat-dog-header-1280x668.jpg");
}
.cid-uoQNiNX1Kx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uoQNiNX1Kx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uoQNiNX1Kx .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-uoQNiNX1Kx .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-uoQNiOpJbp {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-uoQNiOpJbp .mbr-section-subtitle {
  color: #8e0c3a;
}
.cid-uoQNiOpJbp .mbr-section-title {
  color: #8e0c3a;
}
.cid-uoQNiP0hYX {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
@media (max-width: 767px) {
  .cid-uoQNiP0hYX .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uoQNiP0hYX .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uoQNiP0hYX .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uoQNiP0hYX .card-wrapper {
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-uoQNiP0hYX .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uoQNiP0hYX .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uoQNiP0hYX .mbr-text {
  color: #232323;
}
.cid-uoQNiP0hYX .card-title {
  color: #8e0c3a;
}
.cid-uoQNiP0hYX .price {
  color: #05386b;
}
.cid-uoQZlogodq {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
@media (max-width: 767px) {
  .cid-uoQZlogodq .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uoQZlogodq .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uoQZlogodq .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uoQZlogodq .card-wrapper {
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-uoQZlogodq .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uoQZlogodq .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uoQZlogodq .mbr-text {
  color: #232323;
}
.cid-uoQZlogodq .card-title {
  color: #8e0c3a;
}
.cid-uoQZlogodq .price {
  color: #05386b;
}
.cid-uoQNiPY1VX {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uoQNiPY1VX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uoQNiPY1VX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uoQNiPY1VX .mbr-text,
.cid-uoQNiPY1VX .mbr-section-btn {
  color: #232323;
}
.cid-uoQNiPY1VX .card-title,
.cid-uoQNiPY1VX .card-box {
  color: #ffffff;
}
.cid-uoQNiPY1VX .mbr-text,
.cid-uoQNiPY1VX .link-wrap {
  color: #ffffff;
}
.cid-uoQNiPY1VX .card-box .mbr-text,
.cid-uoQNiPY1VX .mbr-section-btn {
  color: #8e0c3a;
}
.cid-uoQNiQiqMm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #8e0c3a;
}
.cid-uoQNiQiqMm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uoQNiQiqMm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uoQNiQiqMm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uoQNiQiqMm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uoQNiQiqMm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uoQNiQiqMm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uoQNiQiqMm .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-uoQNiQiqMm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uoQNiQiqMm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uoQNiQiqMm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uoQNiQiqMm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uoQNiQiqMm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uoQNiQiqMm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uoQNiQiqMm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-up1M6MHZ6a {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-up1M6MHZ6a nav.navbar {
  position: fixed;
}
.cid-up1M6MHZ6a .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-up1M6MHZ6a .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-up1M6MHZ6a .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-up1M6MHZ6a .dropdown-item:hover,
.cid-up1M6MHZ6a .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-up1M6MHZ6a .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-up1M6MHZ6a .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-up1M6MHZ6a .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-up1M6MHZ6a .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-up1M6MHZ6a .nav-link {
  position: relative;
}
.cid-up1M6MHZ6a .container {
  display: flex;
  margin: auto;
}
.cid-up1M6MHZ6a .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-up1M6MHZ6a .dropdown-menu,
.cid-up1M6MHZ6a .navbar.opened {
  background: #ffffff !important;
}
.cid-up1M6MHZ6a .nav-item:focus,
.cid-up1M6MHZ6a .nav-link:focus {
  outline: none;
}
.cid-up1M6MHZ6a .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-up1M6MHZ6a .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-up1M6MHZ6a .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-up1M6MHZ6a .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-up1M6MHZ6a .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-up1M6MHZ6a .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-up1M6MHZ6a .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: #ffffff;
}
.cid-up1M6MHZ6a .navbar.opened {
  transition: all 0.3s;
}
.cid-up1M6MHZ6a .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-up1M6MHZ6a .navbar .navbar-logo img {
  width: auto;
}
.cid-up1M6MHZ6a .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-up1M6MHZ6a .navbar.collapsed {
  justify-content: center;
}
.cid-up1M6MHZ6a .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-up1M6MHZ6a .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-up1M6MHZ6a .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-up1M6MHZ6a .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-up1M6MHZ6a .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-up1M6MHZ6a .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-up1M6MHZ6a .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-up1M6MHZ6a .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-up1M6MHZ6a .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-up1M6MHZ6a .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-up1M6MHZ6a .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-up1M6MHZ6a .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-up1M6MHZ6a .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-up1M6MHZ6a .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-up1M6MHZ6a .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-up1M6MHZ6a .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-up1M6MHZ6a .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-up1M6MHZ6a .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-up1M6MHZ6a .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-up1M6MHZ6a .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-up1M6MHZ6a .navbar.navbar-short {
  min-height: 60px;
}
.cid-up1M6MHZ6a .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-up1M6MHZ6a .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-up1M6MHZ6a .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-up1M6MHZ6a .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-up1M6MHZ6a .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-up1M6MHZ6a .dropdown-item.active,
.cid-up1M6MHZ6a .dropdown-item:active {
  background-color: transparent;
}
.cid-up1M6MHZ6a .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-up1M6MHZ6a .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-up1M6MHZ6a .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-up1M6MHZ6a .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-up1M6MHZ6a .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-up1M6MHZ6a .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-up1M6MHZ6a ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-up1M6MHZ6a .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-up1M6MHZ6a button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-up1M6MHZ6a button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-up1M6MHZ6a button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-up1M6MHZ6a button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-up1M6MHZ6a button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-up1M6MHZ6a button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-up1M6MHZ6a nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-up1M6MHZ6a nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-up1M6MHZ6a nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-up1M6MHZ6a nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-up1M6MHZ6a .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-up1M6MHZ6a a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-up1M6MHZ6a .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-up1M6MHZ6a .navbar {
    height: 70px;
  }
  .cid-up1M6MHZ6a .navbar.opened {
    height: auto;
  }
  .cid-up1M6MHZ6a .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-up1M6Nyvob {
  padding-top: 2rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/ht-plant-25-1541x549.jpg");
}
.cid-up1M6Nyvob .mbr-fallback-image.disabled {
  display: none;
}
.cid-up1M6Nyvob .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-up1M6Nyvob .mbr-section-title {
  text-align: left;
  color: #fafafa;
}
.cid-up1M6Nyvob .mbr-section-subtitle {
  color: #8e0c3a;
  text-align: left;
}
.cid-up1RuoUEB9 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-up1RuoUEB9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-up1RuoUEB9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-up1RuoUEB9 .mbr-text,
.cid-up1RuoUEB9 .mbr-section-btn {
  color: #232323;
}
.cid-up1RuoUEB9 .card-title,
.cid-up1RuoUEB9 .card-box {
  color: #8e0c3a;
  text-align: left;
}
.cid-up1RuoUEB9 .mbr-text,
.cid-up1RuoUEB9 .link-wrap {
  color: #ffffff;
}
.cid-up1RuoUEB9 .card-box .mbr-text,
.cid-up1RuoUEB9 .mbr-section-btn {
  color: #232323;
  text-align: left;
}
.cid-up1M6QjYUW {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-up1M6QjYUW .mbr-fallback-image.disabled {
  display: none;
}
.cid-up1M6QjYUW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-up1M6QjYUW .mbr-text,
.cid-up1M6QjYUW .mbr-section-btn {
  color: #232323;
}
.cid-up1M6QjYUW .card-title,
.cid-up1M6QjYUW .card-box {
  color: #ffffff;
}
.cid-up1M6QjYUW .mbr-text,
.cid-up1M6QjYUW .link-wrap {
  color: #ffffff;
}
.cid-up1M6QjYUW .card-box .mbr-text,
.cid-up1M6QjYUW .mbr-section-btn {
  color: #8e0c3a;
}
.cid-up1M6QTFW1 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #8e0c3a;
}
.cid-up1M6QTFW1 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-up1M6QTFW1 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-up1M6QTFW1 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-up1M6QTFW1 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-up1M6QTFW1 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-up1M6QTFW1 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-up1M6QTFW1 .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-up1M6QTFW1 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-up1M6QTFW1 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-up1M6QTFW1 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-up1M6QTFW1 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-up1M6QTFW1 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-up1M6QTFW1 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-up1M6QTFW1 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uBRKIe2rE9 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uBRKIe2rE9 nav.navbar {
  position: fixed;
}
.cid-uBRKIe2rE9 .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-uBRKIe2rE9 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uBRKIe2rE9 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uBRKIe2rE9 .dropdown-item:hover,
.cid-uBRKIe2rE9 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uBRKIe2rE9 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uBRKIe2rE9 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uBRKIe2rE9 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uBRKIe2rE9 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uBRKIe2rE9 .nav-link {
  position: relative;
}
.cid-uBRKIe2rE9 .container {
  display: flex;
  margin: auto;
}
.cid-uBRKIe2rE9 .iconfont-wrapper {
  color: #05386b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uBRKIe2rE9 .dropdown-menu,
.cid-uBRKIe2rE9 .navbar.opened {
  background: #ffffff !important;
}
.cid-uBRKIe2rE9 .nav-item:focus,
.cid-uBRKIe2rE9 .nav-link:focus {
  outline: none;
}
.cid-uBRKIe2rE9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uBRKIe2rE9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uBRKIe2rE9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uBRKIe2rE9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uBRKIe2rE9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uBRKIe2rE9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uBRKIe2rE9 .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: #ffffff;
}
.cid-uBRKIe2rE9 .navbar.opened {
  transition: all 0.3s;
}
.cid-uBRKIe2rE9 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uBRKIe2rE9 .navbar .navbar-logo img {
  width: auto;
}
.cid-uBRKIe2rE9 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uBRKIe2rE9 .navbar.collapsed {
  justify-content: center;
}
.cid-uBRKIe2rE9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uBRKIe2rE9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uBRKIe2rE9 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-uBRKIe2rE9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uBRKIe2rE9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uBRKIe2rE9 .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-uBRKIe2rE9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uBRKIe2rE9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uBRKIe2rE9 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uBRKIe2rE9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uBRKIe2rE9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uBRKIe2rE9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uBRKIe2rE9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uBRKIe2rE9 .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-uBRKIe2rE9 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uBRKIe2rE9 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uBRKIe2rE9 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uBRKIe2rE9 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uBRKIe2rE9 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uBRKIe2rE9 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uBRKIe2rE9 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uBRKIe2rE9 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uBRKIe2rE9 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uBRKIe2rE9 .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-uBRKIe2rE9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uBRKIe2rE9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uBRKIe2rE9 .dropdown-item.active,
.cid-uBRKIe2rE9 .dropdown-item:active {
  background-color: transparent;
}
.cid-uBRKIe2rE9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uBRKIe2rE9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uBRKIe2rE9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uBRKIe2rE9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uBRKIe2rE9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uBRKIe2rE9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uBRKIe2rE9 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uBRKIe2rE9 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uBRKIe2rE9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uBRKIe2rE9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #05386b;
}
.cid-uBRKIe2rE9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uBRKIe2rE9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uBRKIe2rE9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uBRKIe2rE9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uBRKIe2rE9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uBRKIe2rE9 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uBRKIe2rE9 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uBRKIe2rE9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uBRKIe2rE9 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uBRKIe2rE9 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uBRKIe2rE9 .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-uBRKIe2rE9 .navbar {
    height: 70px;
  }
  .cid-uBRKIe2rE9 .navbar.opened {
    height: auto;
  }
  .cid-uBRKIe2rE9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uBRKIet4Vo {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/cat-dog-dish2-1280-1280x583.jpg");
}
.cid-uBRKIet4Vo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBRKIet4Vo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBRKIet4Vo .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-uBRKIet4Vo .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-uBRLPX0W5d {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uBRLPX0W5d .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBRLPX0W5d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBRLPX0W5d ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-uBRLPX0W5d li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-uBRLPX0W5d ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #6592e6;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-uBRLPX0W5d H3 {
  color: #8e0c3a;
}
.cid-uBRLQWuxjk {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uBRKIgAeHf {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #8e0c3a;
}
.cid-uBRKIgAeHf .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uBRKIgAeHf .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uBRKIgAeHf .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uBRKIgAeHf .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uBRKIgAeHf .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uBRKIgAeHf .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uBRKIgAeHf .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-uBRKIgAeHf .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uBRKIgAeHf .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uBRKIgAeHf .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uBRKIgAeHf .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uBRKIgAeHf .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uBRKIgAeHf .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uBRKIgAeHf .media-container-row .row-copirayt p {
  width: 100%;
}
