.btn {
  border-width: 2px;
}
img,
.card-wrap,
.card-wrapper,
.video-wrapper,
.mbr-figure iframe,
.google-map iframe,
.slide-content,
.plan,
.card,
.item-wrapper {
  border-radius: 0 !important;
}
.video-wrapper {
  overflow: hidden;
}
body {
  font-family: Inter Tight;
}
.display-1 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 3rem;
  line-height: 1;
}
.display-1 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-2 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 2.5rem;
  line-height: 1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.125rem;
}
.display-4 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1rem;
  line-height: 1.3;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- 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.4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.1rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.525rem + (2.5 - 1.525) * ((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: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1.25rem 2rem;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .btn {
    padding: 0.75rem 1.5rem;
  }
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1.25rem 2rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #ffffff !important;
}
.bg-success {
  background-color: #a6a99c !important;
}
.bg-info {
  background-color: #000000 !important;
}
.bg-warning {
  background-color: #707777 !important;
}
.bg-danger {
  background-color: #544e4e !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: none;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: inherit;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: none;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #edefeb !important;
  border-color: #edefeb !important;
  color: #6e7a61 !important;
  box-shadow: none;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: inherit;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: none;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #6e7a61 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-info,
.btn-info:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: inherit;
  background-color: #1a1a1a !important;
  border-color: #1a1a1a !important;
  box-shadow: none;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #1a1a1a !important;
  border-color: #1a1a1a !important;
}
.btn-success,
.btn-success:active {
  background-color: #a6a99c !important;
  border-color: #a6a99c !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: inherit;
  background-color: #bfc1b7 !important;
  border-color: #bfc1b7 !important;
  box-shadow: none;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #bfc1b7 !important;
  border-color: #bfc1b7 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #707777 !important;
  border-color: #707777 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: inherit;
  background-color: #8a9090 !important;
  border-color: #8a9090 !important;
  box-shadow: none;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #8a9090 !important;
  border-color: #8a9090 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #544e4e !important;
  border-color: #544e4e !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: inherit;
  background-color: #6e6767 !important;
  border-color: #6e6767 !important;
  box-shadow: none;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #6e6767 !important;
  border-color: #6e6767 !important;
}
.btn-white,
.btn-white:active {
  background-color: #eff0ec !important;
  border-color: #eff0ec !important;
  color: #757b62 !important;
  box-shadow: none;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: inherit;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: none;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #757b62 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: inherit;
  background-color: #3d3d3d !important;
  border-color: #3d3d3d !important;
  box-shadow: none;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #3d3d3d !important;
  border-color: #3d3d3d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent !important;
  border-color: #d4d4d4 !important;
  box-shadow: none !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #edefeb;
  color: #edefeb;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #c2c8bb !important;
  background-color: transparent !important;
  border-color: #c2c8bb !important;
  box-shadow: none !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #6e7a61 !important;
  background-color: #edefeb !important;
  border-color: #edefeb !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #000000;
  color: #000000;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: #000000 !important;
  box-shadow: none !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #a6a99c;
  color: #a6a99c;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #7c806f !important;
  background-color: transparent !important;
  border-color: #7c806f !important;
  box-shadow: none !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #a6a99c !important;
  border-color: #a6a99c !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #707777;
  color: #707777;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #464a4a !important;
  background-color: transparent !important;
  border-color: #464a4a !important;
  box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #707777 !important;
  border-color: #707777 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #544e4e;
  color: #544e4e;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #272424 !important;
  background-color: transparent !important;
  border-color: #272424 !important;
  box-shadow: none !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #544e4e !important;
  border-color: #544e4e !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: #ffffff !important;
}
.text-secondary {
  color: #edefeb !important;
}
.text-success {
  color: #a6a99c !important;
}
.text-info {
  color: #000000 !important;
}
.text-warning {
  color: #707777 !important;
}
.text-danger {
  color: #544e4e !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #cccccc !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #bac2b2 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #747768 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #000000 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #3f4242 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #1f1d1d !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) {
  transition: 0.2s;
  position: relative;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0 1.2em;
}
.nav-tabs .nav-link.active {
  color: #ffffff;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #000000;
}
.alert-warning {
  background-color: #707777;
}
.alert-danger {
  background-color: #544e4e;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #8c8c8c;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ffffff;
}
.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: #e3e4e0;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #b3b3b3;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #b1b6b6;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #c6c2c2;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1rem;
  line-height: 1.3;
  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: #ffffff !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #ffffff;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #232323;
  border-bottom-color: #232323;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #ffffff !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: #edefeb !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='%23ffffff' %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-tSVg42eynp {
  z-index: 1000;
  width: 100%;
}
.cid-tSVg42eynp nav.navbar {
  position: fixed;
}
.cid-tSVg42eynp .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-tSVg42eynp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tSVg42eynp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tSVg42eynp .dropdown-item:hover,
.cid-tSVg42eynp .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-tSVg42eynp .dropdown-item:hover span {
  color: white;
}
.cid-tSVg42eynp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tSVg42eynp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tSVg42eynp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tSVg42eynp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tSVg42eynp .nav-link {
  position: relative;
}
.cid-tSVg42eynp .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tSVg42eynp .container {
    flex-wrap: nowrap;
  }
}
.cid-tSVg42eynp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tSVg42eynp .dropdown-menu,
.cid-tSVg42eynp .navbar.opened {
  background: #ffffff !important;
}
.cid-tSVg42eynp .nav-item:focus,
.cid-tSVg42eynp .nav-link:focus {
  outline: none;
}
.cid-tSVg42eynp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tSVg42eynp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tSVg42eynp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tSVg42eynp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tSVg42eynp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tSVg42eynp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tSVg42eynp .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
  backdrop-filter: blur(5px);
}
.cid-tSVg42eynp .navbar.opened {
  transition: all 0.3s;
}
.cid-tSVg42eynp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tSVg42eynp .navbar .navbar-logo img {
  width: auto;
}
.cid-tSVg42eynp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tSVg42eynp .navbar.collapsed {
  justify-content: center;
}
.cid-tSVg42eynp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tSVg42eynp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tSVg42eynp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.1rem);
  }
}
.cid-tSVg42eynp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tSVg42eynp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tSVg42eynp .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-tSVg42eynp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tSVg42eynp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tSVg42eynp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tSVg42eynp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tSVg42eynp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tSVg42eynp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tSVg42eynp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tSVg42eynp .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-tSVg42eynp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tSVg42eynp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tSVg42eynp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tSVg42eynp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tSVg42eynp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tSVg42eynp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tSVg42eynp .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tSVg42eynp .navbar.navbar-short {
  min-height: 60px;
}
.cid-tSVg42eynp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tSVg42eynp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tSVg42eynp .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-tSVg42eynp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tSVg42eynp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tSVg42eynp .dropdown-item.active,
.cid-tSVg42eynp .dropdown-item:active {
  background-color: transparent;
}
.cid-tSVg42eynp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tSVg42eynp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tSVg42eynp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tSVg42eynp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tSVg42eynp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tSVg42eynp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tSVg42eynp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tSVg42eynp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tSVg42eynp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tSVg42eynp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tSVg42eynp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tSVg42eynp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tSVg42eynp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tSVg42eynp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tSVg42eynp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tSVg42eynp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tSVg42eynp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tSVg42eynp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tSVg42eynp .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tSVg42eynp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tSVg42eynp .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-tSVg42eynp .navbar {
    height: 70px;
  }
  .cid-tSVg42eynp .navbar.opened {
    height: auto;
  }
  .cid-tSVg42eynp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uVWjo4RSHt {
  padding-top: 9rem;
  padding-bottom: 0rem;
  background-color: #757b62;
}
.cid-uVWjo4RSHt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVWjo4RSHt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVWjo4RSHt .content-head {
  max-width: 800px;
}
.cid-uToK5TBLK0 {
  display: flex;
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7f7f7;
}
.cid-uToK5TBLK0 .content-wrap {
  padding: 5rem 1rem;
  max-width: 800px;
}
@media (min-width: 768px) {
  .cid-uToK5TBLK0 {
    align-items: flex-end;
  }
  .cid-uToK5TBLK0 .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uToK5TBLK0 .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uToK5TBLK0 {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uToK5TBLK0 .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uToK5TBLK0 .content-wrap {
    width: 100%;
  }
}
.cid-uToK5TBLK0 .mbr-section-title {
  text-align: center;
}
.cid-uToK5TBLK0 .mbr-text,
.cid-uToK5TBLK0 .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uToNwshdVa {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #f7f7f7;
}
.cid-uToNwshdVa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uToNwshdVa .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-uToNwshdVa .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uToNwshdVa .row {
  flex-direction: row-reverse;
}
.cid-uToNwshdVa .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uToNwshdVa .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uToNwshdVa .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uToNwshdVa .mbr-section-title {
  color: #000000;
}
.cid-uToNwshdVa .mbr-text,
.cid-uToNwshdVa .mbr-section-btn {
  color: #232323;
}
.cid-uToOhwFYwz {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #f7f7f7;
}
.cid-uToOhwFYwz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uToOhwFYwz .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-uToOhwFYwz .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uToOhwFYwz .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uToOhwFYwz .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uToOhwFYwz .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uToOhwFYwz .mbr-section-title {
  color: #000000;
}
.cid-uToOhwFYwz .mbr-text,
.cid-uToOhwFYwz .mbr-section-btn {
  color: #232323;
}
.cid-uVcQtDImH3 {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #f7f7f7;
}
.cid-uVcQtDImH3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVcQtDImH3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVcQtDImH3 .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 40%;
  margin-bottom: 40px;
}
@media (max-width: 1440px) {
  .cid-uVcQtDImH3 .title-wrapper .mbr-section-title {
    width: 60%;
    margin-bottom: 30px;
  }
}
@media (max-width: 992px) {
  .cid-uVcQtDImH3 .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 30px;
  }
}
.cid-uVcQtDImH3 .items-wrapper {
  margin: 0 -5px;
}
.cid-uVcQtDImH3 .items-wrapper .item {
  padding: 0 5px;
  margin-bottom: 10px;
}
@media (max-width: 992px) {
  .cid-uVcQtDImH3 .items-wrapper .item {
    margin-bottom: 20px;
  }
}
.cid-uVcQtDImH3 .items-wrapper .item .item-wrapper {
  height: 100%;
  background-color: #000000;
}
.cid-uVcQtDImH3 .items-wrapper .item .item-wrapper .item-img img {
  height: 400px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uVcQtDImH3 .items-wrapper .item .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-uVcQtDImH3 .items-wrapper .item .item-wrapper .item-content {
  padding: 20px;
}
.cid-uVcQtDImH3 .items-wrapper .item .item-wrapper .item-content .item-title {
  margin-bottom: 10px;
}
.cid-uVcQtDImH3 .items-wrapper .item .item-wrapper .item-content .text-wrapper .item-text {
  display: inline-block;
  width: 90%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uVcQtDImH3 .items-wrapper .item .item-wrapper .item-content .text-wrapper .item-text {
    width: 100%;
  }
}
.cid-uVcQtDImH3 .items-wrapper .item .item-wrapper .item-content .mbr-section-btn {
  margin-top: 20px;
}
.cid-uVcQtDImH3 .items-wrapper .item .item-wrapper .item-content .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uVcQtDImH3 .mbr-section-title {
  color: #093388;
}
.cid-uVcQtDImH3 .item-title {
  color: #093388;
}
.cid-uVcQtDImH3 .item-text {
  color: #58595b;
}
.cid-uVcQtDImH3 .mbr-section-title,
.cid-uVcQtDImH3 .title-wrapper {
  text-align: center;
  color: #000000;
}
.cid-uVcQtDImH3 .item-text,
.cid-uVcQtDImH3 .text-wrapper {
  color: #ffffff;
}
.cid-uVcN3pWDXG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f7f7f7;
}
.cid-uVcN3pWDXG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVcN3pWDXG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVcN3pWDXG .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uVcN3pWDXG .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uVcN3pWDXG .container {
    padding: 0 25px;
  }
}
.cid-uVcN3pWDXG .row {
  justify-content: center;
}
.cid-uVcN3pWDXG .item {
  padding: 90px 25px;
  border-right: 2px solid #000000;
}
.cid-uVcN3pWDXG .item:nth-child(4n) {
  border-right: none;
}
@media (max-width: 768px) {
  .cid-uVcN3pWDXG .item {
    border-right: none;
    border-bottom: 2px solid #000000;
  }
  .cid-uVcN3pWDXG .item:last-child {
    border-bottom: none;
  }
}
.cid-uVcN3pWDXG .item .item-wrapper a {
  display: block;
}
.cid-uVcN3pWDXG .item .item-wrapper a .card-box .icon-wrapper {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uVcN3pWDXG .item .item-wrapper a .card-box .icon-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uVcN3pWDXG .item .item-wrapper a .card-box .icon-wrapper .mbr-iconfont {
  font-size: 104px;
  display: inline-flex;
  color: #000000;
}
.cid-uVcN3pWDXG .item .item-wrapper a .card-box .item-title {
  margin-bottom: 10px;
}
.cid-uVcN3pWDXG .item .item-wrapper a .card-box .mbr-text {
  margin-bottom: 0;
}
.cid-uVcN3pWDXG .item-title {
  color: #ffffff;
}
.cid-uVcN3pWDXG .item-title,
.cid-uVcN3pWDXG .icon-wrapper {
  text-align: center;
  color: #000000;
}
.cid-tSVefpL8Xy {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f7f7f7;
}
@media (max-width: 991px) {
  .cid-tSVefpL8Xy .container {
    padding: 0 16px;
  }
}
@media (max-width: 767px) {
  .cid-tSVefpL8Xy .container {
    padding: 0 12px;
  }
}
.cid-tSVefpL8Xy .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-tSVefpL8Xy .social-row .soc-item {
  margin: 8px;
}
.cid-tSVefpL8Xy .social-row .soc-item a:hover .mbr-iconfont,
.cid-tSVefpL8Xy .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-tSVefpL8Xy .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #000000;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-tSVefpL8Xy .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tSVefpL8Xy .mbr-section-title {
  color: #ffffff;
}
.cid-tSVefpL8Xy .mbr-section-title,
.cid-tSVefpL8Xy .social-list {
  color: #000000;
}
.cid-tSVfeGmw92 {
  padding-top: 60px;
  padding-bottom: 90px;
  background-color: #000000;
}
.cid-tSVfeGmw92 .logo {
  max-width: 140px;
  width: 100%;
  margin: auto;
}
.cid-tSVfeGmw92 .row {
  border-bottom: 1px solid #808080;
}
.cid-tSVfeGmw92 H2 {
  color: #e7272d;
}
.cid-tSVfeGmw92 .feedimg {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 2px;
}
.cid-tSVfeGmw92 .logo-wrap {
  width: fit-content;
  margin: auto;
  position: relative;
}
.cid-tSVfeGmw92 .logo-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 180px;
  width: 999px;
  height: 1px;
  background: #808080;
}
.cid-tSVfeGmw92 .logo-wrap:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 180px;
  width: 999px;
  height: 1px;
  background: #808080;
}
.cid-tSVfeGmw92 .col-lg-12 {
  overflow: hidden;
}
.cid-tSVfeGmw92 H4 {
  color: #fbbe36;
}
.cid-tSVfeGmw92 .mbr-text,
.cid-tSVfeGmw92 .mbr-section-btn {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-tSVfeGmw92 .logo-wrap:before {
    content: none;
  }
  .cid-tSVfeGmw92 .logo-wrap:after {
    content: none;
  }
}
.cid-tSVfeGmw92 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSVfeGmw92 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tSYilGm0Ih {
  z-index: 1000;
  width: 100%;
}
.cid-tSYilGm0Ih nav.navbar {
  position: fixed;
}
.cid-tSYilGm0Ih .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-tSYilGm0Ih .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tSYilGm0Ih .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tSYilGm0Ih .dropdown-item:hover,
.cid-tSYilGm0Ih .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-tSYilGm0Ih .dropdown-item:hover span {
  color: white;
}
.cid-tSYilGm0Ih .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tSYilGm0Ih .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tSYilGm0Ih .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tSYilGm0Ih .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tSYilGm0Ih .nav-link {
  position: relative;
}
.cid-tSYilGm0Ih .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tSYilGm0Ih .container {
    flex-wrap: nowrap;
  }
}
.cid-tSYilGm0Ih .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tSYilGm0Ih .dropdown-menu,
.cid-tSYilGm0Ih .navbar.opened {
  background: #ffffff !important;
}
.cid-tSYilGm0Ih .nav-item:focus,
.cid-tSYilGm0Ih .nav-link:focus {
  outline: none;
}
.cid-tSYilGm0Ih .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tSYilGm0Ih .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tSYilGm0Ih .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tSYilGm0Ih .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tSYilGm0Ih .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tSYilGm0Ih .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tSYilGm0Ih .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
  backdrop-filter: blur(5px);
}
.cid-tSYilGm0Ih .navbar.opened {
  transition: all 0.3s;
}
.cid-tSYilGm0Ih .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tSYilGm0Ih .navbar .navbar-logo img {
  width: auto;
}
.cid-tSYilGm0Ih .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tSYilGm0Ih .navbar.collapsed {
  justify-content: center;
}
.cid-tSYilGm0Ih .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tSYilGm0Ih .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tSYilGm0Ih .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.3rem);
  }
}
.cid-tSYilGm0Ih .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tSYilGm0Ih .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tSYilGm0Ih .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-tSYilGm0Ih .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tSYilGm0Ih .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tSYilGm0Ih .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tSYilGm0Ih .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tSYilGm0Ih .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tSYilGm0Ih .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tSYilGm0Ih .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tSYilGm0Ih .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-tSYilGm0Ih .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tSYilGm0Ih .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tSYilGm0Ih .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tSYilGm0Ih .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tSYilGm0Ih .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tSYilGm0Ih .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tSYilGm0Ih .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tSYilGm0Ih .navbar.navbar-short {
  min-height: 60px;
}
.cid-tSYilGm0Ih .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tSYilGm0Ih .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tSYilGm0Ih .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-tSYilGm0Ih .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tSYilGm0Ih .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tSYilGm0Ih .dropdown-item.active,
.cid-tSYilGm0Ih .dropdown-item:active {
  background-color: transparent;
}
.cid-tSYilGm0Ih .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tSYilGm0Ih .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tSYilGm0Ih .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tSYilGm0Ih .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tSYilGm0Ih .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tSYilGm0Ih .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tSYilGm0Ih ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tSYilGm0Ih .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tSYilGm0Ih button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tSYilGm0Ih button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tSYilGm0Ih button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tSYilGm0Ih button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tSYilGm0Ih button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tSYilGm0Ih button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tSYilGm0Ih nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tSYilGm0Ih nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tSYilGm0Ih nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tSYilGm0Ih nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tSYilGm0Ih .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tSYilGm0Ih a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tSYilGm0Ih .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-tSYilGm0Ih .navbar {
    height: 70px;
  }
  .cid-tSYilGm0Ih .navbar.opened {
    height: auto;
  }
  .cid-tSYilGm0Ih .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tSYky8bWVJ {
  display: flex;
  padding-top: 165px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-tSYky8bWVJ .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-tSYky8bWVJ {
    align-items: center;
  }
  .cid-tSYky8bWVJ .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tSYky8bWVJ .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tSYky8bWVJ {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tSYky8bWVJ .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tSYky8bWVJ .content-wrap {
    width: 100%;
  }
}
.cid-tSYky8bWVJ .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-tSYky8bWVJ .mbr-text,
.cid-tSYky8bWVJ .mbr-section-btn {
  text-align: center;
}
.cid-uTSnCPaUxc {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #f7f7f7;
}
.cid-uTSnCPaUxc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTSnCPaUxc .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-uTSnCPaUxc .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uTSnCPaUxc .row {
  flex-direction: row-reverse;
}
.cid-uTSnCPaUxc .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uTSnCPaUxc .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uTSnCPaUxc .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uTSnCPaUxc .mbr-section-title {
  color: #000000;
}
.cid-uTSnCPaUxc .mbr-text,
.cid-uTSnCPaUxc .mbr-section-btn {
  color: #000000;
}
.cid-uTSnEPi3h4 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #f7f7f7;
}
.cid-uTSnEPi3h4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTSnEPi3h4 .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-uTSnEPi3h4 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uTSnEPi3h4 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uTSnEPi3h4 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uTSnEPi3h4 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uTSnEPi3h4 .mbr-section-title {
  color: #000000;
}
.cid-uTSnEPi3h4 .mbr-text,
.cid-uTSnEPi3h4 .mbr-section-btn {
  color: #000000;
}
.cid-uTSnvwp8XR {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f7f7f7;
}
.cid-uTSnvwp8XR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTSnvwp8XR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTSnvwp8XR .video-wrapper iframe {
  width: 100%;
}
.cid-uTSnvwp8XR .mbr-section-title,
.cid-uTSnvwp8XR .mbr-section-subtitle,
.cid-uTSnvwp8XR .mbr-text {
  text-align: center;
}
.cid-uVcSVEmqjX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f7f7f7;
}
.cid-uVcSVEmqjX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVcSVEmqjX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVcSVEmqjX .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uVcSVEmqjX .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uVcSVEmqjX .container {
    padding: 0 25px;
  }
}
.cid-uVcSVEmqjX .row {
  justify-content: center;
}
.cid-uVcSVEmqjX .item {
  padding: 90px 25px;
  border-right: 2px solid #000000;
}
.cid-uVcSVEmqjX .item:nth-child(4n) {
  border-right: none;
}
@media (max-width: 768px) {
  .cid-uVcSVEmqjX .item {
    border-right: none;
    border-bottom: 2px solid #000000;
  }
  .cid-uVcSVEmqjX .item:last-child {
    border-bottom: none;
  }
}
.cid-uVcSVEmqjX .item .item-wrapper a {
  display: block;
}
.cid-uVcSVEmqjX .item .item-wrapper a .card-box .icon-wrapper {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uVcSVEmqjX .item .item-wrapper a .card-box .icon-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uVcSVEmqjX .item .item-wrapper a .card-box .icon-wrapper .mbr-iconfont {
  font-size: 104px;
  display: inline-flex;
  color: #000000;
}
.cid-uVcSVEmqjX .item .item-wrapper a .card-box .item-title {
  margin-bottom: 10px;
}
.cid-uVcSVEmqjX .item .item-wrapper a .card-box .mbr-text {
  margin-bottom: 0;
}
.cid-uVcSVEmqjX .item-title {
  color: #ffffff;
}
.cid-uVcSVEmqjX .item-title,
.cid-uVcSVEmqjX .icon-wrapper {
  text-align: center;
  color: #000000;
}
.cid-tSYilMLrGl {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f7f7f7;
}
@media (max-width: 991px) {
  .cid-tSYilMLrGl .container {
    padding: 0 16px;
  }
}
@media (max-width: 767px) {
  .cid-tSYilMLrGl .container {
    padding: 0 12px;
  }
}
.cid-tSYilMLrGl .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-tSYilMLrGl .social-row .soc-item {
  margin: 8px;
}
.cid-tSYilMLrGl .social-row .soc-item a:hover .mbr-iconfont,
.cid-tSYilMLrGl .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-tSYilMLrGl .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #000000;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-tSYilMLrGl .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tSYilMLrGl .mbr-section-title {
  color: #ffffff;
}
.cid-tSYilMLrGl .mbr-section-title,
.cid-tSYilMLrGl .social-list {
  color: #000000;
}
.cid-tSYilNS7QO {
  padding-top: 60px;
  padding-bottom: 90px;
  background-color: #000000;
}
.cid-tSYilNS7QO .logo {
  max-width: 140px;
  width: 100%;
  margin: auto;
}
.cid-tSYilNS7QO .row {
  border-bottom: 1px solid #808080;
}
.cid-tSYilNS7QO H2 {
  color: #e7272d;
}
.cid-tSYilNS7QO .feedimg {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 2px;
}
.cid-tSYilNS7QO .logo-wrap {
  width: fit-content;
  margin: auto;
  position: relative;
}
.cid-tSYilNS7QO .logo-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 180px;
  width: 999px;
  height: 1px;
  background: #808080;
}
.cid-tSYilNS7QO .logo-wrap:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 180px;
  width: 999px;
  height: 1px;
  background: #808080;
}
.cid-tSYilNS7QO .col-lg-12 {
  overflow: hidden;
}
.cid-tSYilNS7QO H4 {
  color: #fbbe36;
}
.cid-tSYilNS7QO .mbr-text,
.cid-tSYilNS7QO .mbr-section-btn {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-tSYilNS7QO .logo-wrap:before {
    content: none;
  }
  .cid-tSYilNS7QO .logo-wrap:after {
    content: none;
  }
}
.cid-tSYilNS7QO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSYilNS7QO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tSYl4XDXoh {
  z-index: 1000;
  width: 100%;
}
.cid-tSYl4XDXoh nav.navbar {
  position: fixed;
}
.cid-tSYl4XDXoh .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-tSYl4XDXoh .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tSYl4XDXoh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tSYl4XDXoh .dropdown-item:hover,
.cid-tSYl4XDXoh .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-tSYl4XDXoh .dropdown-item:hover span {
  color: white;
}
.cid-tSYl4XDXoh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tSYl4XDXoh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tSYl4XDXoh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tSYl4XDXoh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tSYl4XDXoh .nav-link {
  position: relative;
}
.cid-tSYl4XDXoh .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tSYl4XDXoh .container {
    flex-wrap: nowrap;
  }
}
.cid-tSYl4XDXoh .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tSYl4XDXoh .dropdown-menu,
.cid-tSYl4XDXoh .navbar.opened {
  background: #ffffff !important;
}
.cid-tSYl4XDXoh .nav-item:focus,
.cid-tSYl4XDXoh .nav-link:focus {
  outline: none;
}
.cid-tSYl4XDXoh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tSYl4XDXoh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tSYl4XDXoh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tSYl4XDXoh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tSYl4XDXoh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tSYl4XDXoh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tSYl4XDXoh .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
  backdrop-filter: blur(5px);
}
.cid-tSYl4XDXoh .navbar.opened {
  transition: all 0.3s;
}
.cid-tSYl4XDXoh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tSYl4XDXoh .navbar .navbar-logo img {
  width: auto;
}
.cid-tSYl4XDXoh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tSYl4XDXoh .navbar.collapsed {
  justify-content: center;
}
.cid-tSYl4XDXoh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tSYl4XDXoh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tSYl4XDXoh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.3rem);
  }
}
.cid-tSYl4XDXoh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tSYl4XDXoh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tSYl4XDXoh .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-tSYl4XDXoh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tSYl4XDXoh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tSYl4XDXoh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tSYl4XDXoh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tSYl4XDXoh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tSYl4XDXoh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tSYl4XDXoh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tSYl4XDXoh .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-tSYl4XDXoh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tSYl4XDXoh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tSYl4XDXoh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tSYl4XDXoh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tSYl4XDXoh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tSYl4XDXoh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tSYl4XDXoh .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tSYl4XDXoh .navbar.navbar-short {
  min-height: 60px;
}
.cid-tSYl4XDXoh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tSYl4XDXoh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tSYl4XDXoh .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-tSYl4XDXoh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tSYl4XDXoh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tSYl4XDXoh .dropdown-item.active,
.cid-tSYl4XDXoh .dropdown-item:active {
  background-color: transparent;
}
.cid-tSYl4XDXoh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tSYl4XDXoh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tSYl4XDXoh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tSYl4XDXoh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tSYl4XDXoh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tSYl4XDXoh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tSYl4XDXoh ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tSYl4XDXoh .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tSYl4XDXoh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tSYl4XDXoh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tSYl4XDXoh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tSYl4XDXoh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tSYl4XDXoh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tSYl4XDXoh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tSYl4XDXoh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tSYl4XDXoh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tSYl4XDXoh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tSYl4XDXoh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tSYl4XDXoh .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tSYl4XDXoh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tSYl4XDXoh .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-tSYl4XDXoh .navbar {
    height: 70px;
  }
  .cid-tSYl4XDXoh .navbar.opened {
    height: auto;
  }
  .cid-tSYl4XDXoh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tSYl4ZweOg {
  display: flex;
  padding-top: 165px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-tSYl4ZweOg .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-tSYl4ZweOg {
    align-items: center;
  }
  .cid-tSYl4ZweOg .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tSYl4ZweOg .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tSYl4ZweOg {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tSYl4ZweOg .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tSYl4ZweOg .content-wrap {
    width: 100%;
  }
}
.cid-tSYl4ZweOg .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-tSYl4ZweOg .mbr-text,
.cid-tSYl4ZweOg .mbr-section-btn {
  text-align: center;
}
.cid-uUwEs4jAcM {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #f7f7f7;
}
.cid-uUwEs4jAcM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUwEs4jAcM .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-uUwEs4jAcM .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uUwEs4jAcM .row {
  flex-direction: row-reverse;
}
.cid-uUwEs4jAcM .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uUwEs4jAcM .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uUwEs4jAcM .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uUwEs4jAcM .mbr-section-title {
  color: #000000;
}
.cid-uUwEs4jAcM .mbr-text,
.cid-uUwEs4jAcM .mbr-section-btn {
  color: #000000;
}
.cid-uUwF4GI3HZ {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #f7f7f7;
}
.cid-uUwF4GI3HZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUwF4GI3HZ .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-uUwF4GI3HZ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uUwF4GI3HZ .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uUwF4GI3HZ .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uUwF4GI3HZ .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uUwF4GI3HZ .mbr-section-title {
  color: #000000;
}
.cid-uUwF4GI3HZ .mbr-text,
.cid-uUwF4GI3HZ .mbr-section-btn {
  color: #000000;
}
.cid-uUwGgCoIep {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #f7f7f7;
}
.cid-uUwGgCoIep .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUwGgCoIep .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-uUwGgCoIep .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uUwGgCoIep .row {
  flex-direction: row-reverse;
}
.cid-uUwGgCoIep .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uUwGgCoIep .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uUwGgCoIep .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uUwGgCoIep .mbr-section-title {
  color: #000000;
}
.cid-uUwGgCoIep .mbr-text,
.cid-uUwGgCoIep .mbr-section-btn {
  color: #000000;
}
.cid-uUwIAGfuZn {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #f7f7f7;
}
.cid-uUwIAGfuZn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUwIAGfuZn .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-uUwIAGfuZn .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uUwIAGfuZn .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uUwIAGfuZn .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uUwIAGfuZn .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uUwIAGfuZn .mbr-section-title {
  color: #000000;
}
.cid-uUwIAGfuZn .mbr-text,
.cid-uUwIAGfuZn .mbr-section-btn {
  color: #000000;
}
.cid-uVcSZFTuil {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f7f7f7;
}
.cid-uVcSZFTuil .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVcSZFTuil .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVcSZFTuil .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uVcSZFTuil .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uVcSZFTuil .container {
    padding: 0 25px;
  }
}
.cid-uVcSZFTuil .row {
  justify-content: center;
}
.cid-uVcSZFTuil .item {
  padding: 90px 25px;
  border-right: 2px solid #000000;
}
.cid-uVcSZFTuil .item:nth-child(4n) {
  border-right: none;
}
@media (max-width: 768px) {
  .cid-uVcSZFTuil .item {
    border-right: none;
    border-bottom: 2px solid #000000;
  }
  .cid-uVcSZFTuil .item:last-child {
    border-bottom: none;
  }
}
.cid-uVcSZFTuil .item .item-wrapper a {
  display: block;
}
.cid-uVcSZFTuil .item .item-wrapper a .card-box .icon-wrapper {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uVcSZFTuil .item .item-wrapper a .card-box .icon-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uVcSZFTuil .item .item-wrapper a .card-box .icon-wrapper .mbr-iconfont {
  font-size: 104px;
  display: inline-flex;
  color: #000000;
}
.cid-uVcSZFTuil .item .item-wrapper a .card-box .item-title {
  margin-bottom: 10px;
}
.cid-uVcSZFTuil .item .item-wrapper a .card-box .mbr-text {
  margin-bottom: 0;
}
.cid-uVcSZFTuil .item-title {
  color: #ffffff;
}
.cid-uVcSZFTuil .item-title,
.cid-uVcSZFTuil .icon-wrapper {
  text-align: center;
  color: #000000;
}
.cid-tSYl539XDF {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f7f7f7;
}
@media (max-width: 991px) {
  .cid-tSYl539XDF .container {
    padding: 0 16px;
  }
}
@media (max-width: 767px) {
  .cid-tSYl539XDF .container {
    padding: 0 12px;
  }
}
.cid-tSYl539XDF .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-tSYl539XDF .social-row .soc-item {
  margin: 8px;
}
.cid-tSYl539XDF .social-row .soc-item a:hover .mbr-iconfont,
.cid-tSYl539XDF .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-tSYl539XDF .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #000000;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-tSYl539XDF .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tSYl539XDF .mbr-section-title {
  color: #ffffff;
}
.cid-tSYl539XDF .mbr-section-title,
.cid-tSYl539XDF .social-list {
  color: #000000;
}
.cid-tSYl54iZc9 {
  padding-top: 60px;
  padding-bottom: 90px;
  background-color: #000000;
}
.cid-tSYl54iZc9 .logo {
  max-width: 140px;
  width: 100%;
  margin: auto;
}
.cid-tSYl54iZc9 .row {
  border-bottom: 1px solid #808080;
}
.cid-tSYl54iZc9 H2 {
  color: #e7272d;
}
.cid-tSYl54iZc9 .feedimg {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 2px;
}
.cid-tSYl54iZc9 .logo-wrap {
  width: fit-content;
  margin: auto;
  position: relative;
}
.cid-tSYl54iZc9 .logo-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 180px;
  width: 999px;
  height: 1px;
  background: #808080;
}
.cid-tSYl54iZc9 .logo-wrap:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 180px;
  width: 999px;
  height: 1px;
  background: #808080;
}
.cid-tSYl54iZc9 .col-lg-12 {
  overflow: hidden;
}
.cid-tSYl54iZc9 H4 {
  color: #fbbe36;
}
.cid-tSYl54iZc9 .mbr-text,
.cid-tSYl54iZc9 .mbr-section-btn {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-tSYl54iZc9 .logo-wrap:before {
    content: none;
  }
  .cid-tSYl54iZc9 .logo-wrap:after {
    content: none;
  }
}
.cid-tSYl54iZc9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSYl54iZc9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tSYmCM6la0 {
  z-index: 1000;
  width: 100%;
}
.cid-tSYmCM6la0 nav.navbar {
  position: fixed;
}
.cid-tSYmCM6la0 .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-tSYmCM6la0 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tSYmCM6la0 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tSYmCM6la0 .dropdown-item:hover,
.cid-tSYmCM6la0 .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-tSYmCM6la0 .dropdown-item:hover span {
  color: white;
}
.cid-tSYmCM6la0 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tSYmCM6la0 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tSYmCM6la0 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tSYmCM6la0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tSYmCM6la0 .nav-link {
  position: relative;
}
.cid-tSYmCM6la0 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tSYmCM6la0 .container {
    flex-wrap: nowrap;
  }
}
.cid-tSYmCM6la0 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tSYmCM6la0 .dropdown-menu,
.cid-tSYmCM6la0 .navbar.opened {
  background: #ffffff !important;
}
.cid-tSYmCM6la0 .nav-item:focus,
.cid-tSYmCM6la0 .nav-link:focus {
  outline: none;
}
.cid-tSYmCM6la0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tSYmCM6la0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tSYmCM6la0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tSYmCM6la0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tSYmCM6la0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tSYmCM6la0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tSYmCM6la0 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
  backdrop-filter: blur(5px);
}
.cid-tSYmCM6la0 .navbar.opened {
  transition: all 0.3s;
}
.cid-tSYmCM6la0 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tSYmCM6la0 .navbar .navbar-logo img {
  width: auto;
}
.cid-tSYmCM6la0 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tSYmCM6la0 .navbar.collapsed {
  justify-content: center;
}
.cid-tSYmCM6la0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tSYmCM6la0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tSYmCM6la0 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.4rem);
  }
}
.cid-tSYmCM6la0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tSYmCM6la0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tSYmCM6la0 .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-tSYmCM6la0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tSYmCM6la0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tSYmCM6la0 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tSYmCM6la0 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tSYmCM6la0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tSYmCM6la0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tSYmCM6la0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tSYmCM6la0 .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-tSYmCM6la0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tSYmCM6la0 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tSYmCM6la0 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tSYmCM6la0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tSYmCM6la0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tSYmCM6la0 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tSYmCM6la0 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tSYmCM6la0 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tSYmCM6la0 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tSYmCM6la0 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tSYmCM6la0 .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-tSYmCM6la0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tSYmCM6la0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tSYmCM6la0 .dropdown-item.active,
.cid-tSYmCM6la0 .dropdown-item:active {
  background-color: transparent;
}
.cid-tSYmCM6la0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tSYmCM6la0 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tSYmCM6la0 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tSYmCM6la0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tSYmCM6la0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tSYmCM6la0 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tSYmCM6la0 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tSYmCM6la0 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tSYmCM6la0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tSYmCM6la0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tSYmCM6la0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tSYmCM6la0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tSYmCM6la0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tSYmCM6la0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tSYmCM6la0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tSYmCM6la0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tSYmCM6la0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tSYmCM6la0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tSYmCM6la0 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tSYmCM6la0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tSYmCM6la0 .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-tSYmCM6la0 .navbar {
    height: 70px;
  }
  .cid-tSYmCM6la0 .navbar.opened {
    height: auto;
  }
  .cid-tSYmCM6la0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tSYmCMD45S {
  display: flex;
  padding-top: 165px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-tSYmCMD45S .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-tSYmCMD45S {
    align-items: center;
  }
  .cid-tSYmCMD45S .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tSYmCMD45S .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tSYmCMD45S {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tSYmCMD45S .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tSYmCMD45S .content-wrap {
    width: 100%;
  }
}
.cid-tSYmCMD45S .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-tSYmCMD45S .mbr-text,
.cid-tSYmCMD45S .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uSEjOE7TIB {
  display: flex;
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7f7f7;
}
.cid-uSEjOE7TIB .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-uSEjOE7TIB {
    align-items: center;
  }
  .cid-uSEjOE7TIB .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uSEjOE7TIB .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uSEjOE7TIB {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uSEjOE7TIB .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uSEjOE7TIB .content-wrap {
    width: 100%;
  }
}
.cid-uSEjOE7TIB .mbr-section-title {
  text-align: center;
}
.cid-uSEjOE7TIB .mbr-text,
.cid-uSEjOE7TIB .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uVWrcxnMvV {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f7f7f7;
}
.cid-uVWrcxnMvV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVWrcxnMvV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVWrcxnMvV .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uVWrcxnMvV .item {
    margin-bottom: 1rem;
  }
}
.cid-uVWrcxnMvV .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uVWrcxnMvV .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uVWrcxnMvV .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 transparent;
  border-radius: 50%;
  opacity: 0;
  color: #464845 !important;
  transform: translateX(-50%) translateY(-50%);
  background-color: #edefea !important;
  transition: 0.2s;
}
.cid-uVWrcxnMvV .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-uVWrcxnMvV .carousel-control,
.cid-uVWrcxnMvV .close {
  background: #1b1b1b;
}
.cid-uVWrcxnMvV .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uVWrcxnMvV .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uVWrcxnMvV .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uVWrcxnMvV .carousel-control-next span {
  margin-left: 5px;
}
.cid-uVWrcxnMvV .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-uVWrcxnMvV .close::before {
  content: '\e91a';
}
.cid-uVWrcxnMvV .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uVWrcxnMvV .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-uVWrcxnMvV .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uVWrcxnMvV .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uVWrcxnMvV .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uVWrcxnMvV .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uVWrcxnMvV .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-uVWrcxnMvV .carousel-indicators li.active,
.cid-uVWrcxnMvV .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uVWrcxnMvV .carousel-indicators li::after,
.cid-uVWrcxnMvV .carousel-indicators li::before {
  content: none;
}
.cid-uVWrcxnMvV .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uVWrcxnMvV .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uVWrcxnMvV .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uVWrcxnMvV .carousel-indicators {
    display: none;
  }
}
.cid-uVWrcxnMvV .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uVWrcxnMvV .carousel-inner > .active {
  display: block;
}
.cid-uVWrcxnMvV .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uVWrcxnMvV .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uVWrcxnMvV .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uVWrcxnMvV .carousel-control,
  .cid-uVWrcxnMvV .carousel-indicators,
  .cid-uVWrcxnMvV .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uVWrcxnMvV .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uVWrcxnMvV .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uVWrcxnMvV .carousel-indicators .active,
.cid-uVWrcxnMvV .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uVWrcxnMvV .carousel-indicators .active {
  background: #fff;
}
.cid-uVWrcxnMvV .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uVWrcxnMvV .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uVWrcxnMvV .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uVWrcxnMvV .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uVWrcxnMvV .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uVWrcxnMvV .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uVWrcxnMvV .carousel {
  width: 100%;
}
.cid-uVWrcxnMvV .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uVWrcxnMvV .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uVWrcxnMvV .modal.fade .modal-dialog,
.cid-uVWrcxnMvV .modal.in .modal-dialog {
  transform: none;
}
.cid-uVWrcxnMvV .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uVWrcxnMvV .content-head {
  max-width: 800px;
}
.cid-uVcTbLUJXZ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f7f7f7;
}
.cid-uVcTbLUJXZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVcTbLUJXZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVcTbLUJXZ .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uVcTbLUJXZ .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uVcTbLUJXZ .container {
    padding: 0 25px;
  }
}
.cid-uVcTbLUJXZ .row {
  justify-content: center;
}
.cid-uVcTbLUJXZ .item {
  padding: 90px 25px;
  border-right: 2px solid #000000;
}
.cid-uVcTbLUJXZ .item:nth-child(4n) {
  border-right: none;
}
@media (max-width: 768px) {
  .cid-uVcTbLUJXZ .item {
    border-right: none;
    border-bottom: 2px solid #000000;
  }
  .cid-uVcTbLUJXZ .item:last-child {
    border-bottom: none;
  }
}
.cid-uVcTbLUJXZ .item .item-wrapper a {
  display: block;
}
.cid-uVcTbLUJXZ .item .item-wrapper a .card-box .icon-wrapper {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uVcTbLUJXZ .item .item-wrapper a .card-box .icon-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uVcTbLUJXZ .item .item-wrapper a .card-box .icon-wrapper .mbr-iconfont {
  font-size: 104px;
  display: inline-flex;
  color: #000000;
}
.cid-uVcTbLUJXZ .item .item-wrapper a .card-box .item-title {
  margin-bottom: 10px;
}
.cid-uVcTbLUJXZ .item .item-wrapper a .card-box .mbr-text {
  margin-bottom: 0;
}
.cid-uVcTbLUJXZ .item-title {
  color: #ffffff;
}
.cid-uVcTbLUJXZ .item-title,
.cid-uVcTbLUJXZ .icon-wrapper {
  text-align: center;
  color: #000000;
}
.cid-tSYmCNwrzf {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f7f7f7;
}
@media (max-width: 991px) {
  .cid-tSYmCNwrzf .container {
    padding: 0 16px;
  }
}
@media (max-width: 767px) {
  .cid-tSYmCNwrzf .container {
    padding: 0 12px;
  }
}
.cid-tSYmCNwrzf .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-tSYmCNwrzf .social-row .soc-item {
  margin: 8px;
}
.cid-tSYmCNwrzf .social-row .soc-item a:hover .mbr-iconfont,
.cid-tSYmCNwrzf .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-tSYmCNwrzf .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #000000;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-tSYmCNwrzf .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tSYmCNwrzf .mbr-section-title {
  color: #ffffff;
}
.cid-tSYmCNwrzf .mbr-section-title,
.cid-tSYmCNwrzf .social-list {
  color: #000000;
}
.cid-tSYmCNOw5W {
  padding-top: 60px;
  padding-bottom: 90px;
  background-color: #000000;
}
.cid-tSYmCNOw5W .logo {
  max-width: 140px;
  width: 100%;
  margin: auto;
}
.cid-tSYmCNOw5W .row {
  border-bottom: 1px solid #808080;
}
.cid-tSYmCNOw5W H2 {
  color: #e7272d;
}
.cid-tSYmCNOw5W .feedimg {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 2px;
}
.cid-tSYmCNOw5W .logo-wrap {
  width: fit-content;
  margin: auto;
  position: relative;
}
.cid-tSYmCNOw5W .logo-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 180px;
  width: 999px;
  height: 1px;
  background: #808080;
}
.cid-tSYmCNOw5W .logo-wrap:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 180px;
  width: 999px;
  height: 1px;
  background: #808080;
}
.cid-tSYmCNOw5W .col-lg-12 {
  overflow: hidden;
}
.cid-tSYmCNOw5W H4 {
  color: #fbbe36;
}
.cid-tSYmCNOw5W .mbr-text,
.cid-tSYmCNOw5W .mbr-section-btn {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-tSYmCNOw5W .logo-wrap:before {
    content: none;
  }
  .cid-tSYmCNOw5W .logo-wrap:after {
    content: none;
  }
}
.cid-tSYmCNOw5W .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSYmCNOw5W .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tSYo5iQRgP {
  z-index: 1000;
  width: 100%;
}
.cid-tSYo5iQRgP nav.navbar {
  position: fixed;
}
.cid-tSYo5iQRgP .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-tSYo5iQRgP .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tSYo5iQRgP .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tSYo5iQRgP .dropdown-item:hover,
.cid-tSYo5iQRgP .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-tSYo5iQRgP .dropdown-item:hover span {
  color: white;
}
.cid-tSYo5iQRgP .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tSYo5iQRgP .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tSYo5iQRgP .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tSYo5iQRgP .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tSYo5iQRgP .nav-link {
  position: relative;
}
.cid-tSYo5iQRgP .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tSYo5iQRgP .container {
    flex-wrap: nowrap;
  }
}
.cid-tSYo5iQRgP .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tSYo5iQRgP .dropdown-menu,
.cid-tSYo5iQRgP .navbar.opened {
  background: #ffffff !important;
}
.cid-tSYo5iQRgP .nav-item:focus,
.cid-tSYo5iQRgP .nav-link:focus {
  outline: none;
}
.cid-tSYo5iQRgP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tSYo5iQRgP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tSYo5iQRgP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tSYo5iQRgP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tSYo5iQRgP .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tSYo5iQRgP .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tSYo5iQRgP .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
  backdrop-filter: blur(5px);
}
.cid-tSYo5iQRgP .navbar.opened {
  transition: all 0.3s;
}
.cid-tSYo5iQRgP .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tSYo5iQRgP .navbar .navbar-logo img {
  width: auto;
}
.cid-tSYo5iQRgP .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tSYo5iQRgP .navbar.collapsed {
  justify-content: center;
}
.cid-tSYo5iQRgP .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tSYo5iQRgP .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tSYo5iQRgP .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.4rem);
  }
}
.cid-tSYo5iQRgP .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tSYo5iQRgP .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tSYo5iQRgP .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-tSYo5iQRgP .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tSYo5iQRgP .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tSYo5iQRgP .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tSYo5iQRgP .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tSYo5iQRgP .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tSYo5iQRgP .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tSYo5iQRgP .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tSYo5iQRgP .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-tSYo5iQRgP .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tSYo5iQRgP .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tSYo5iQRgP .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tSYo5iQRgP .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tSYo5iQRgP .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tSYo5iQRgP .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tSYo5iQRgP .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tSYo5iQRgP .navbar.navbar-short {
  min-height: 60px;
}
.cid-tSYo5iQRgP .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tSYo5iQRgP .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tSYo5iQRgP .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-tSYo5iQRgP .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tSYo5iQRgP .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tSYo5iQRgP .dropdown-item.active,
.cid-tSYo5iQRgP .dropdown-item:active {
  background-color: transparent;
}
.cid-tSYo5iQRgP .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tSYo5iQRgP .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tSYo5iQRgP .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tSYo5iQRgP .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tSYo5iQRgP .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tSYo5iQRgP .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tSYo5iQRgP ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tSYo5iQRgP .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tSYo5iQRgP button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tSYo5iQRgP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tSYo5iQRgP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tSYo5iQRgP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tSYo5iQRgP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tSYo5iQRgP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tSYo5iQRgP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tSYo5iQRgP nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tSYo5iQRgP nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tSYo5iQRgP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tSYo5iQRgP .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tSYo5iQRgP a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tSYo5iQRgP .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-tSYo5iQRgP .navbar {
    height: 70px;
  }
  .cid-tSYo5iQRgP .navbar.opened {
    height: auto;
  }
  .cid-tSYo5iQRgP .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tSYo5jrsN3 {
  display: flex;
  padding-top: 165px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-tSYo5jrsN3 .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-tSYo5jrsN3 {
    align-items: center;
  }
  .cid-tSYo5jrsN3 .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tSYo5jrsN3 .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tSYo5jrsN3 {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tSYo5jrsN3 .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tSYo5jrsN3 .content-wrap {
    width: 100%;
  }
}
.cid-tSYo5jrsN3 .mbr-section-title {
  text-align: center;
}
.cid-tSYo5jrsN3 .mbr-text,
.cid-tSYo5jrsN3 .mbr-section-btn {
  text-align: center;
}
.cid-uUD9TtG4sq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  min-height: 280px;
  background-image: url("../../../assets/images/outside-2000x1125.png");
  display: flex;
  align-items: center;
}
@media (min-width: 640px) {
  .cid-uUD9TtG4sq {
    min-height: 300px;
  }
}
@media (min-width: 768px) {
  .cid-uUD9TtG4sq {
    min-height: 380px;
  }
}
@media (min-width: 992px) {
  .cid-uUD9TtG4sq {
    min-height: 420px;
  }
}
@media (min-width: 1200px) {
  .cid-uUD9TtG4sq {
    min-height: 610px;
  }
}
.cid-uUD9TtG4sq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUD9TtG4sq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUD9TtG4sq .row {
  justify-content: flex-start;
}
.cid-uUD9TtG4sq .mbr-section-title {
  color: #FEF9EE;
}
.cid-uUD9TtG4sq .mbr-section-subtitle {
  color: #FEF9EE;
}
.cid-uUD9TtG4sq .mbr-text {
  color: #FEF9EE;
}
.cid-tSYphyxB5u {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f7f7f7;
}
.cid-tSYphyxB5u .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSYphyxB5u .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-tSYphyxB5u .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tSYphyxB5u .row {
  flex-direction: row-reverse;
}
.cid-tSYphyxB5u .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tSYphyxB5u .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tSYphyxB5u .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tSYphyxB5u .mbr-section-title {
  color: #000000;
}
.cid-tSYphyxB5u .mbr-text,
.cid-tSYphyxB5u .mbr-section-btn {
  color: #000000;
}
.cid-tSYpTjEuSe {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #131313;
}
.cid-tSYpTjEuSe .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSYpTjEuSe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tSYpTjEuSe .container-fluid {
  padding: 0;
}
@media (max-width: 1440px) {
  .cid-tSYpTjEuSe .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tSYpTjEuSe .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tSYpTjEuSe .container {
    padding: 0 30px;
  }
}
.cid-tSYpTjEuSe .google-map {
  border-top: 2px solid #9c9c9c;
  border-bottom: 2px solid #9c9c9c;
}
.cid-tSYpTjEuSe .google-map iframe {
  border-radius: 0 !important;
  height: 500px;
  filter: grayscale(100%);
}
.cid-uVcTx4dO4p {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f7f7f7;
}
.cid-uVcTx4dO4p .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVcTx4dO4p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVcTx4dO4p .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uVcTx4dO4p .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uVcTx4dO4p .container {
    padding: 0 25px;
  }
}
.cid-uVcTx4dO4p .row {
  justify-content: center;
}
.cid-uVcTx4dO4p .item {
  padding: 90px 25px;
  border-right: 2px solid #000000;
}
.cid-uVcTx4dO4p .item:nth-child(4n) {
  border-right: none;
}
@media (max-width: 768px) {
  .cid-uVcTx4dO4p .item {
    border-right: none;
    border-bottom: 2px solid #000000;
  }
  .cid-uVcTx4dO4p .item:last-child {
    border-bottom: none;
  }
}
.cid-uVcTx4dO4p .item .item-wrapper a {
  display: block;
}
.cid-uVcTx4dO4p .item .item-wrapper a .card-box .icon-wrapper {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uVcTx4dO4p .item .item-wrapper a .card-box .icon-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uVcTx4dO4p .item .item-wrapper a .card-box .icon-wrapper .mbr-iconfont {
  font-size: 104px;
  display: inline-flex;
  color: #000000;
}
.cid-uVcTx4dO4p .item .item-wrapper a .card-box .item-title {
  margin-bottom: 10px;
}
.cid-uVcTx4dO4p .item .item-wrapper a .card-box .mbr-text {
  margin-bottom: 0;
}
.cid-uVcTx4dO4p .item-title {
  color: #ffffff;
}
.cid-uVcTx4dO4p .item-title,
.cid-uVcTx4dO4p .icon-wrapper {
  text-align: center;
  color: #000000;
}
.cid-tSYo5kAVVC {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f7f7f7;
}
@media (max-width: 991px) {
  .cid-tSYo5kAVVC .container {
    padding: 0 16px;
  }
}
@media (max-width: 767px) {
  .cid-tSYo5kAVVC .container {
    padding: 0 12px;
  }
}
.cid-tSYo5kAVVC .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-tSYo5kAVVC .social-row .soc-item {
  margin: 8px;
}
.cid-tSYo5kAVVC .social-row .soc-item a:hover .mbr-iconfont,
.cid-tSYo5kAVVC .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-tSYo5kAVVC .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #000000;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-tSYo5kAVVC .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tSYo5kAVVC .mbr-section-title {
  color: #ffffff;
}
.cid-tSYo5kAVVC .mbr-section-title,
.cid-tSYo5kAVVC .social-list {
  color: #000000;
}
.cid-tSYo5kZknU {
  padding-top: 60px;
  padding-bottom: 90px;
  background-color: #000000;
}
.cid-tSYo5kZknU .logo {
  max-width: 140px;
  width: 100%;
  margin: auto;
}
.cid-tSYo5kZknU .row {
  border-bottom: 1px solid #808080;
}
.cid-tSYo5kZknU H2 {
  color: #e7272d;
}
.cid-tSYo5kZknU .feedimg {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 2px;
}
.cid-tSYo5kZknU .logo-wrap {
  width: fit-content;
  margin: auto;
  position: relative;
}
.cid-tSYo5kZknU .logo-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 180px;
  width: 999px;
  height: 1px;
  background: #808080;
}
.cid-tSYo5kZknU .logo-wrap:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 180px;
  width: 999px;
  height: 1px;
  background: #808080;
}
.cid-tSYo5kZknU .col-lg-12 {
  overflow: hidden;
}
.cid-tSYo5kZknU H4 {
  color: #fbbe36;
}
.cid-tSYo5kZknU .mbr-text,
.cid-tSYo5kZknU .mbr-section-btn {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-tSYo5kZknU .logo-wrap:before {
    content: none;
  }
  .cid-tSYo5kZknU .logo-wrap:after {
    content: none;
  }
}
.cid-tSYo5kZknU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSYo5kZknU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tSYqfc2cfd {
  z-index: 1000;
  width: 100%;
}
.cid-tSYqfc2cfd nav.navbar {
  position: fixed;
}
.cid-tSYqfc2cfd .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-tSYqfc2cfd .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tSYqfc2cfd .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tSYqfc2cfd .dropdown-item:hover,
.cid-tSYqfc2cfd .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-tSYqfc2cfd .dropdown-item:hover span {
  color: white;
}
.cid-tSYqfc2cfd .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tSYqfc2cfd .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tSYqfc2cfd .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tSYqfc2cfd .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tSYqfc2cfd .nav-link {
  position: relative;
}
.cid-tSYqfc2cfd .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tSYqfc2cfd .container {
    flex-wrap: nowrap;
  }
}
.cid-tSYqfc2cfd .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tSYqfc2cfd .dropdown-menu,
.cid-tSYqfc2cfd .navbar.opened {
  background: #ffffff !important;
}
.cid-tSYqfc2cfd .nav-item:focus,
.cid-tSYqfc2cfd .nav-link:focus {
  outline: none;
}
.cid-tSYqfc2cfd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tSYqfc2cfd .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tSYqfc2cfd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tSYqfc2cfd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tSYqfc2cfd .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tSYqfc2cfd .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tSYqfc2cfd .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
  backdrop-filter: blur(5px);
}
.cid-tSYqfc2cfd .navbar.opened {
  transition: all 0.3s;
}
.cid-tSYqfc2cfd .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tSYqfc2cfd .navbar .navbar-logo img {
  width: auto;
}
.cid-tSYqfc2cfd .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tSYqfc2cfd .navbar.collapsed {
  justify-content: center;
}
.cid-tSYqfc2cfd .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tSYqfc2cfd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tSYqfc2cfd .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.4rem);
  }
}
.cid-tSYqfc2cfd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tSYqfc2cfd .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tSYqfc2cfd .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-tSYqfc2cfd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tSYqfc2cfd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tSYqfc2cfd .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tSYqfc2cfd .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tSYqfc2cfd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tSYqfc2cfd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tSYqfc2cfd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tSYqfc2cfd .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-tSYqfc2cfd .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tSYqfc2cfd .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tSYqfc2cfd .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tSYqfc2cfd .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tSYqfc2cfd .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tSYqfc2cfd .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tSYqfc2cfd .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tSYqfc2cfd .navbar.navbar-short {
  min-height: 60px;
}
.cid-tSYqfc2cfd .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tSYqfc2cfd .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tSYqfc2cfd .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-tSYqfc2cfd .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tSYqfc2cfd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tSYqfc2cfd .dropdown-item.active,
.cid-tSYqfc2cfd .dropdown-item:active {
  background-color: transparent;
}
.cid-tSYqfc2cfd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tSYqfc2cfd .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tSYqfc2cfd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tSYqfc2cfd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tSYqfc2cfd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tSYqfc2cfd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tSYqfc2cfd ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tSYqfc2cfd .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tSYqfc2cfd button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tSYqfc2cfd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tSYqfc2cfd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tSYqfc2cfd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tSYqfc2cfd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tSYqfc2cfd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tSYqfc2cfd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tSYqfc2cfd nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tSYqfc2cfd nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tSYqfc2cfd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tSYqfc2cfd .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tSYqfc2cfd a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tSYqfc2cfd .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-tSYqfc2cfd .navbar {
    height: 70px;
  }
  .cid-tSYqfc2cfd .navbar.opened {
    height: auto;
  }
  .cid-tSYqfc2cfd .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tSYqfcLbZm {
  display: flex;
  padding-top: 165px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-tSYqfcLbZm .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-tSYqfcLbZm {
    align-items: center;
  }
  .cid-tSYqfcLbZm .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tSYqfcLbZm .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tSYqfcLbZm {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tSYqfcLbZm .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tSYqfcLbZm .content-wrap {
    width: 100%;
  }
}
.cid-tSYqfcLbZm .mbr-section-title {
  text-align: center;
}
.cid-tSYqfcLbZm .mbr-text,
.cid-tSYqfcLbZm .mbr-section-btn {
  text-align: center;
}
.cid-tSYqfd7bEn {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f7f7f7;
}
.cid-tSYqfd7bEn .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSYqfd7bEn .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-tSYqfd7bEn .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tSYqfd7bEn .row {
  flex-direction: row-reverse;
}
.cid-tSYqfd7bEn .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tSYqfd7bEn .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tSYqfd7bEn .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tSYqfd7bEn .mbr-section-title {
  color: #000000;
}
.cid-tSYqfd7bEn .mbr-text,
.cid-tSYqfd7bEn .mbr-section-btn {
  color: #000000;
}
.cid-tSYsJn8NkK {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f7f7f7;
}
.cid-tSYsJn8NkK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSYsJn8NkK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tSYsJn8NkK .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tSYsJn8NkK .item {
    margin-bottom: 1rem;
  }
}
.cid-tSYsJn8NkK .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tSYsJn8NkK .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tSYsJn8NkK .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 transparent;
  border-radius: 50%;
  opacity: 0;
  color: #464845 !important;
  transform: translateX(-50%) translateY(-50%);
  background-color: #edefea !important;
  transition: 0.2s;
}
.cid-tSYsJn8NkK .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-tSYsJn8NkK .carousel-control,
.cid-tSYsJn8NkK .close {
  background: #1b1b1b;
}
.cid-tSYsJn8NkK .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tSYsJn8NkK .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tSYsJn8NkK .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tSYsJn8NkK .carousel-control-next span {
  margin-left: 5px;
}
.cid-tSYsJn8NkK .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-tSYsJn8NkK .close::before {
  content: '\e91a';
}
.cid-tSYsJn8NkK .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tSYsJn8NkK .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-tSYsJn8NkK .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tSYsJn8NkK .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tSYsJn8NkK .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tSYsJn8NkK .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tSYsJn8NkK .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-tSYsJn8NkK .carousel-indicators li.active,
.cid-tSYsJn8NkK .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tSYsJn8NkK .carousel-indicators li::after,
.cid-tSYsJn8NkK .carousel-indicators li::before {
  content: none;
}
.cid-tSYsJn8NkK .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tSYsJn8NkK .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tSYsJn8NkK .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tSYsJn8NkK .carousel-indicators {
    display: none;
  }
}
.cid-tSYsJn8NkK .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tSYsJn8NkK .carousel-inner > .active {
  display: block;
}
.cid-tSYsJn8NkK .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tSYsJn8NkK .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tSYsJn8NkK .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tSYsJn8NkK .carousel-control,
  .cid-tSYsJn8NkK .carousel-indicators,
  .cid-tSYsJn8NkK .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tSYsJn8NkK .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tSYsJn8NkK .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tSYsJn8NkK .carousel-indicators .active,
.cid-tSYsJn8NkK .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tSYsJn8NkK .carousel-indicators .active {
  background: #fff;
}
.cid-tSYsJn8NkK .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tSYsJn8NkK .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tSYsJn8NkK .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tSYsJn8NkK .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tSYsJn8NkK .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tSYsJn8NkK .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tSYsJn8NkK .carousel {
  width: 100%;
}
.cid-tSYsJn8NkK .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tSYsJn8NkK .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tSYsJn8NkK .modal.fade .modal-dialog,
.cid-tSYsJn8NkK .modal.in .modal-dialog {
  transform: none;
}
.cid-tSYsJn8NkK .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tSYsJn8NkK .content-head {
  max-width: 800px;
}
.cid-uVcUaHAMt7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f7f7f7;
}
.cid-uVcUaHAMt7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVcUaHAMt7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVcUaHAMt7 .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uVcUaHAMt7 .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uVcUaHAMt7 .container {
    padding: 0 25px;
  }
}
.cid-uVcUaHAMt7 .row {
  justify-content: center;
}
.cid-uVcUaHAMt7 .item {
  padding: 90px 25px;
  border-right: 2px solid #000000;
}
.cid-uVcUaHAMt7 .item:nth-child(4n) {
  border-right: none;
}
@media (max-width: 768px) {
  .cid-uVcUaHAMt7 .item {
    border-right: none;
    border-bottom: 2px solid #000000;
  }
  .cid-uVcUaHAMt7 .item:last-child {
    border-bottom: none;
  }
}
.cid-uVcUaHAMt7 .item .item-wrapper a {
  display: block;
}
.cid-uVcUaHAMt7 .item .item-wrapper a .card-box .icon-wrapper {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uVcUaHAMt7 .item .item-wrapper a .card-box .icon-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uVcUaHAMt7 .item .item-wrapper a .card-box .icon-wrapper .mbr-iconfont {
  font-size: 104px;
  display: inline-flex;
  color: #000000;
}
.cid-uVcUaHAMt7 .item .item-wrapper a .card-box .item-title {
  margin-bottom: 10px;
}
.cid-uVcUaHAMt7 .item .item-wrapper a .card-box .mbr-text {
  margin-bottom: 0;
}
.cid-uVcUaHAMt7 .item-title {
  color: #ffffff;
}
.cid-uVcUaHAMt7 .item-title,
.cid-uVcUaHAMt7 .icon-wrapper {
  text-align: center;
  color: #000000;
}
.cid-tSYqfezxhO {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f7f7f7;
}
@media (max-width: 991px) {
  .cid-tSYqfezxhO .container {
    padding: 0 16px;
  }
}
@media (max-width: 767px) {
  .cid-tSYqfezxhO .container {
    padding: 0 12px;
  }
}
.cid-tSYqfezxhO .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-tSYqfezxhO .social-row .soc-item {
  margin: 8px;
}
.cid-tSYqfezxhO .social-row .soc-item a:hover .mbr-iconfont,
.cid-tSYqfezxhO .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-tSYqfezxhO .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #000000;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-tSYqfezxhO .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tSYqfezxhO .mbr-section-title {
  color: #ffffff;
}
.cid-tSYqfezxhO .mbr-section-title,
.cid-tSYqfezxhO .social-list {
  color: #000000;
}
.cid-tSYqff3xZA {
  padding-top: 60px;
  padding-bottom: 90px;
  background-color: #000000;
}
.cid-tSYqff3xZA .logo {
  max-width: 140px;
  width: 100%;
  margin: auto;
}
.cid-tSYqff3xZA .row {
  border-bottom: 1px solid #808080;
}
.cid-tSYqff3xZA H2 {
  color: #e7272d;
}
.cid-tSYqff3xZA .feedimg {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 2px;
}
.cid-tSYqff3xZA .logo-wrap {
  width: fit-content;
  margin: auto;
  position: relative;
}
.cid-tSYqff3xZA .logo-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 180px;
  width: 999px;
  height: 1px;
  background: #808080;
}
.cid-tSYqff3xZA .logo-wrap:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 180px;
  width: 999px;
  height: 1px;
  background: #808080;
}
.cid-tSYqff3xZA .col-lg-12 {
  overflow: hidden;
}
.cid-tSYqff3xZA H4 {
  color: #fbbe36;
}
.cid-tSYqff3xZA .mbr-text,
.cid-tSYqff3xZA .mbr-section-btn {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-tSYqff3xZA .logo-wrap:before {
    content: none;
  }
  .cid-tSYqff3xZA .logo-wrap:after {
    content: none;
  }
}
.cid-tSYqff3xZA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSYqff3xZA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tSYtbWuWjB {
  z-index: 1000;
  width: 100%;
}
.cid-tSYtbWuWjB nav.navbar {
  position: fixed;
}
.cid-tSYtbWuWjB .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-tSYtbWuWjB .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tSYtbWuWjB .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tSYtbWuWjB .dropdown-item:hover,
.cid-tSYtbWuWjB .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-tSYtbWuWjB .dropdown-item:hover span {
  color: white;
}
.cid-tSYtbWuWjB .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tSYtbWuWjB .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tSYtbWuWjB .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tSYtbWuWjB .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tSYtbWuWjB .nav-link {
  position: relative;
}
.cid-tSYtbWuWjB .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tSYtbWuWjB .container {
    flex-wrap: nowrap;
  }
}
.cid-tSYtbWuWjB .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tSYtbWuWjB .dropdown-menu,
.cid-tSYtbWuWjB .navbar.opened {
  background: #ffffff !important;
}
.cid-tSYtbWuWjB .nav-item:focus,
.cid-tSYtbWuWjB .nav-link:focus {
  outline: none;
}
.cid-tSYtbWuWjB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tSYtbWuWjB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tSYtbWuWjB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tSYtbWuWjB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tSYtbWuWjB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tSYtbWuWjB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tSYtbWuWjB .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
  backdrop-filter: blur(5px);
}
.cid-tSYtbWuWjB .navbar.opened {
  transition: all 0.3s;
}
.cid-tSYtbWuWjB .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tSYtbWuWjB .navbar .navbar-logo img {
  width: auto;
}
.cid-tSYtbWuWjB .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tSYtbWuWjB .navbar.collapsed {
  justify-content: center;
}
.cid-tSYtbWuWjB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tSYtbWuWjB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tSYtbWuWjB .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.4rem);
  }
}
.cid-tSYtbWuWjB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tSYtbWuWjB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tSYtbWuWjB .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-tSYtbWuWjB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tSYtbWuWjB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tSYtbWuWjB .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tSYtbWuWjB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tSYtbWuWjB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tSYtbWuWjB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tSYtbWuWjB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tSYtbWuWjB .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-tSYtbWuWjB .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tSYtbWuWjB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tSYtbWuWjB .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tSYtbWuWjB .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tSYtbWuWjB .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tSYtbWuWjB .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tSYtbWuWjB .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tSYtbWuWjB .navbar.navbar-short {
  min-height: 60px;
}
.cid-tSYtbWuWjB .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tSYtbWuWjB .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tSYtbWuWjB .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-tSYtbWuWjB .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tSYtbWuWjB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tSYtbWuWjB .dropdown-item.active,
.cid-tSYtbWuWjB .dropdown-item:active {
  background-color: transparent;
}
.cid-tSYtbWuWjB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tSYtbWuWjB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tSYtbWuWjB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tSYtbWuWjB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tSYtbWuWjB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tSYtbWuWjB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tSYtbWuWjB ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tSYtbWuWjB .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tSYtbWuWjB button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tSYtbWuWjB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tSYtbWuWjB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tSYtbWuWjB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tSYtbWuWjB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tSYtbWuWjB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tSYtbWuWjB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tSYtbWuWjB nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tSYtbWuWjB nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tSYtbWuWjB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tSYtbWuWjB .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tSYtbWuWjB a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tSYtbWuWjB .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-tSYtbWuWjB .navbar {
    height: 70px;
  }
  .cid-tSYtbWuWjB .navbar.opened {
    height: auto;
  }
  .cid-tSYtbWuWjB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tSYtbX2M3e {
  display: flex;
  padding-top: 165px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-tSYtbX2M3e .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-tSYtbX2M3e {
    align-items: center;
  }
  .cid-tSYtbX2M3e .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tSYtbX2M3e .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tSYtbX2M3e {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tSYtbX2M3e .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tSYtbX2M3e .content-wrap {
    width: 100%;
  }
}
.cid-tSYtbX2M3e .mbr-section-title {
  text-align: center;
}
.cid-tSYtbX2M3e .mbr-text,
.cid-tSYtbX2M3e .mbr-section-btn {
  text-align: center;
}
.cid-uSEhMyf6JZ {
  display: flex;
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f7f7f7;
}
.cid-uSEhMyf6JZ .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-uSEhMyf6JZ {
    align-items: center;
  }
  .cid-uSEhMyf6JZ .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uSEhMyf6JZ .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uSEhMyf6JZ {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uSEhMyf6JZ .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uSEhMyf6JZ .content-wrap {
    width: 100%;
  }
}
.cid-uSEhMyf6JZ .mbr-section-title {
  text-align: center;
}
.cid-uSEhMyf6JZ .mbr-text,
.cid-uSEhMyf6JZ .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-tSYtXyDzsX {
  display: flex;
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #f7f7f7;
}
.cid-tSYtXyDzsX .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-tSYtXyDzsX {
    align-items: center;
  }
  .cid-tSYtXyDzsX .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tSYtXyDzsX .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tSYtXyDzsX {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tSYtXyDzsX .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tSYtXyDzsX .content-wrap {
    width: 100%;
  }
}
.cid-tSYtXyDzsX .mbr-section-title {
  text-align: center;
}
.cid-tSYtXyDzsX .mbr-text,
.cid-tSYtXyDzsX .mbr-section-btn {
  text-align: center;
}
.cid-uVcUecLLQq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f7f7f7;
}
.cid-uVcUecLLQq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVcUecLLQq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVcUecLLQq .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uVcUecLLQq .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uVcUecLLQq .container {
    padding: 0 25px;
  }
}
.cid-uVcUecLLQq .row {
  justify-content: center;
}
.cid-uVcUecLLQq .item {
  padding: 90px 25px;
  border-right: 2px solid #000000;
}
.cid-uVcUecLLQq .item:nth-child(4n) {
  border-right: none;
}
@media (max-width: 768px) {
  .cid-uVcUecLLQq .item {
    border-right: none;
    border-bottom: 2px solid #000000;
  }
  .cid-uVcUecLLQq .item:last-child {
    border-bottom: none;
  }
}
.cid-uVcUecLLQq .item .item-wrapper a {
  display: block;
}
.cid-uVcUecLLQq .item .item-wrapper a .card-box .icon-wrapper {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uVcUecLLQq .item .item-wrapper a .card-box .icon-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uVcUecLLQq .item .item-wrapper a .card-box .icon-wrapper .mbr-iconfont {
  font-size: 104px;
  display: inline-flex;
  color: #000000;
}
.cid-uVcUecLLQq .item .item-wrapper a .card-box .item-title {
  margin-bottom: 10px;
}
.cid-uVcUecLLQq .item .item-wrapper a .card-box .mbr-text {
  margin-bottom: 0;
}
.cid-uVcUecLLQq .item-title {
  color: #ffffff;
}
.cid-uVcUecLLQq .item-title,
.cid-uVcUecLLQq .icon-wrapper {
  text-align: center;
  color: #000000;
}
.cid-tSYtbYRq9H {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f7f7f7;
}
@media (max-width: 991px) {
  .cid-tSYtbYRq9H .container {
    padding: 0 16px;
  }
}
@media (max-width: 767px) {
  .cid-tSYtbYRq9H .container {
    padding: 0 12px;
  }
}
.cid-tSYtbYRq9H .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-tSYtbYRq9H .social-row .soc-item {
  margin: 8px;
}
.cid-tSYtbYRq9H .social-row .soc-item a:hover .mbr-iconfont,
.cid-tSYtbYRq9H .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
}
.cid-tSYtbYRq9H .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #000000;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-tSYtbYRq9H .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tSYtbYRq9H .mbr-section-title {
  color: #ffffff;
}
.cid-tSYtbYRq9H .mbr-section-title,
.cid-tSYtbYRq9H .social-list {
  color: #000000;
}
.cid-tSYtbZk14Q {
  padding-top: 60px;
  padding-bottom: 90px;
  background-color: #000000;
}
.cid-tSYtbZk14Q .logo {
  max-width: 140px;
  width: 100%;
  margin: auto;
}
.cid-tSYtbZk14Q .row {
  border-bottom: 1px solid #808080;
}
.cid-tSYtbZk14Q H2 {
  color: #e7272d;
}
.cid-tSYtbZk14Q .feedimg {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 2px;
}
.cid-tSYtbZk14Q .logo-wrap {
  width: fit-content;
  margin: auto;
  position: relative;
}
.cid-tSYtbZk14Q .logo-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 180px;
  width: 999px;
  height: 1px;
  background: #808080;
}
.cid-tSYtbZk14Q .logo-wrap:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 180px;
  width: 999px;
  height: 1px;
  background: #808080;
}
.cid-tSYtbZk14Q .col-lg-12 {
  overflow: hidden;
}
.cid-tSYtbZk14Q H4 {
  color: #fbbe36;
}
.cid-tSYtbZk14Q .mbr-text,
.cid-tSYtbZk14Q .mbr-section-btn {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-tSYtbZk14Q .logo-wrap:before {
    content: none;
  }
  .cid-tSYtbZk14Q .logo-wrap:after {
    content: none;
  }
}
.cid-tSYtbZk14Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSYtbZk14Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
