.btn {
  border-width: 2px;
}
body {
  font-family: Syne;
}
.display-1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 3.5rem;
}
.display-2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.125rem;
}
.display-5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-7 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.125rem;
}
/* ---- 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.24rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.96rem;
    font-size: calc( 1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.72rem;
    font-size: calc( 0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    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-7 {
    font-size: 0.72rem;
    font-size: calc( 0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #d24d2c !important;
}
.bg-success {
  background-color: #f4c316 !important;
}
.bg-info {
  background-color: #4479d9 !important;
}
.bg-warning {
  background-color: #5b6153 !important;
}
.bg-danger {
  background-color: #caa884 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #d24d2c !important;
  border-color: #d24d2c !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #8a331d !important;
  border-color: #8a331d !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #8a331d !important;
  border-color: #8a331d !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #d24d2c !important;
  border-color: #d24d2c !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #8a331d !important;
  border-color: #8a331d !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #8a331d !important;
  border-color: #8a331d !important;
}
.btn-info,
.btn-info:active {
  background-color: #4479d9 !important;
  border-color: #4479d9 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #2150a5 !important;
  border-color: #2150a5 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #2150a5 !important;
  border-color: #2150a5 !important;
}
.btn-success,
.btn-success:active {
  background-color: #f4c316 !important;
  border-color: #f4c316 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #ab8708 !important;
  border-color: #ab8708 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #ab8708 !important;
  border-color: #ab8708 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #5b6153 !important;
  border-color: #5b6153 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #2f322b !important;
  border-color: #2f322b !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #2f322b !important;
  border-color: #2f322b !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #caa884 !important;
  border-color: #caa884 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ad7d4a !important;
  border-color: #ad7d4a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ad7d4a !important;
  border-color: #ad7d4a !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #d24d2c;
  color: #d24d2c;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #8a331d !important;
  background-color: transparent!important;
  border-color: #8a331d !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #d24d2c !important;
  border-color: #d24d2c !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #d24d2c;
  color: #d24d2c;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #8a331d !important;
  background-color: transparent!important;
  border-color: #8a331d !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #d24d2c !important;
  border-color: #d24d2c !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #4479d9;
  color: #4479d9;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #2150a5 !important;
  background-color: transparent!important;
  border-color: #2150a5 !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #4479d9 !important;
  border-color: #4479d9 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #f4c316;
  color: #f4c316;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ab8708 !important;
  background-color: transparent!important;
  border-color: #ab8708 !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #f4c316 !important;
  border-color: #f4c316 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #5b6153;
  color: #5b6153;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #2f322b !important;
  background-color: transparent!important;
  border-color: #2f322b !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #5b6153 !important;
  border-color: #5b6153 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #caa884;
  color: #caa884;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ad7d4a !important;
  background-color: transparent!important;
  border-color: #ad7d4a !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #caa884 !important;
  border-color: #caa884 !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: #d24d2c !important;
}
.text-secondary {
  color: #d24d2c !important;
}
.text-success {
  color: #f4c316 !important;
}
.text-info {
  color: #4479d9 !important;
}
.text-warning {
  color: #5b6153 !important;
}
.text-danger {
  color: #caa884 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #7e2e1a !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #7e2e1a !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #9d7c07 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1f4a98 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #272a24 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #a27546 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #d24d2c;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #4479d9;
}
.alert-warning {
  background-color: #5b6153;
}
.alert-danger {
  background-color: #caa884;
}
.mbr-gallery-filter li.active .btn {
  background-color: #d24d2c;
  border-color: #d24d2c;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #d24d2c;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #f6dbd4;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #fdf5d9;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #eef2fb;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #9ba292;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.125rem;
}
.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: #d24d2c !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.125rem;
}
blockquote {
  border-color: #d24d2c;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #d24d2c;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #d24d2c;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #d24d2c;
  border-bottom-color: #d24d2c;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #d24d2c !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #d24d2c !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='%23d24d2c' %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-uD4b3rQBjQ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uD4b3rQBjQ nav.navbar {
  position: fixed;
}
.cid-uD4b3rQBjQ .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-uD4b3rQBjQ .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-uD4b3rQBjQ .dropdown-item:hover,
.cid-uD4b3rQBjQ .dropdown-item:focus {
  color: #d24d2c !important;
}
.cid-uD4b3rQBjQ .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
  font-weight: 500;
}
.cid-uD4b3rQBjQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uD4b3rQBjQ .nav-link {
  position: relative;
  padding: 0;
}
.cid-uD4b3rQBjQ .container {
  display: flex;
  margin: auto;
}
.cid-uD4b3rQBjQ .iconfont-wrapper {
  color: #d24d2c !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uD4b3rQBjQ .dropdown-menu,
.cid-uD4b3rQBjQ .navbar.opened {
  background: #ffffff !important;
}
.cid-uD4b3rQBjQ .nav-item:focus,
.cid-uD4b3rQBjQ .nav-link:focus {
  outline: none;
}
.cid-uD4b3rQBjQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uD4b3rQBjQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uD4b3rQBjQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uD4b3rQBjQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uD4b3rQBjQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uD4b3rQBjQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uD4b3rQBjQ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uD4b3rQBjQ .navbar.opened {
  transition: all 0.3s;
}
.cid-uD4b3rQBjQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uD4b3rQBjQ .navbar .navbar-logo img {
  width: auto;
}
.cid-uD4b3rQBjQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uD4b3rQBjQ .navbar.collapsed {
  justify-content: center;
}
.cid-uD4b3rQBjQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uD4b3rQBjQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uD4b3rQBjQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-uD4b3rQBjQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uD4b3rQBjQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uD4b3rQBjQ .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-uD4b3rQBjQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uD4b3rQBjQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uD4b3rQBjQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uD4b3rQBjQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uD4b3rQBjQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uD4b3rQBjQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uD4b3rQBjQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uD4b3rQBjQ .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-uD4b3rQBjQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uD4b3rQBjQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uD4b3rQBjQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uD4b3rQBjQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uD4b3rQBjQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uD4b3rQBjQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uD4b3rQBjQ .navbar.navbar-short {
  min-height: 60px;
}
.cid-uD4b3rQBjQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uD4b3rQBjQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uD4b3rQBjQ .navbar-brand {
  display: inline-flex;
  align-items: center;
  min-height: 70px;
  flex-shrink: 0;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uD4b3rQBjQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uD4b3rQBjQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uD4b3rQBjQ .dropdown-item.active,
.cid-uD4b3rQBjQ .dropdown-item:active {
  background-color: transparent;
}
.cid-uD4b3rQBjQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uD4b3rQBjQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uD4b3rQBjQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uD4b3rQBjQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uD4b3rQBjQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uD4b3rQBjQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uD4b3rQBjQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uD4b3rQBjQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uD4b3rQBjQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uD4b3rQBjQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uD4b3rQBjQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uD4b3rQBjQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uD4b3rQBjQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uD4b3rQBjQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uD4b3rQBjQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uD4b3rQBjQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uD4b3rQBjQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uD4b3rQBjQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uD4b3rQBjQ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uD4b3rQBjQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uD4b3rQBjQ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-start;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uD4b3rQBjQ .navbar {
    height: 70px;
  }
  .cid-uD4b3rQBjQ .navbar.opened {
    height: auto;
  }
  .cid-uD4b3rQBjQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uD4b3rQBjQ .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-uD4b3rQBjQ .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-uD4b3rQBjQ a {
  display: inline;
  font-weight: bold;
}
.cid-uD4b3rQBjQ img {
  display: inline;
  padding-right: 10px;
}
.cid-uD4b3rQBjQ .dropdown-toggle:after {
  display: none;
}
.cid-uD4b3rQBjQ .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-uD4b3rQBjQ .dropdown-item:hover {
  color: #5b6153 !important;
}
@media (max-width: 990px) {
  .cid-uD4b3rQBjQ .dropdown-menu {
    margin-top: 0px;
  }
  .cid-uD4b3rQBjQ .collapse .btn {
    margin: 11px 21px 18px;
  }
}
.cid-uD4b3rQBjQ .navbar-collapse .btn {
  display: block;
  margin: 0px 21px 0;
  font-weight: 500;
}
@media (min-width: 992px) {
  .cid-uD4b3rQBjQ .navbar-expand-lg .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
    align-items: center;
  }
}
.cid-uD4b3rQBjQ .btn {
  display: inline !important;
}
.cid-uD4b3rQBjQ .navbar .navbar-collapse ul.navbar-nav li {
  margin: 0 !important;
}
.cid-uD4b3rQBjQ .navbar-collapse .nav-link {
  display: inline-flex;
}
.cid-uD4b3rQBjQ .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-uD4b3rQBjQ .nav-link:hover:after {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-uD4b3rQBjQ .nav-link:after {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-uD4hzbg3ot {
  padding-top: 160px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/img-2364-2000x1333.jpg");
}
.cid-uD4hzbg3ot .mbr-arrow {
  background: #000000 !important;
  opacity: 0.7;
}
.cid-uD4hzbg3ot .mbr-arrow i {
  color: #ffffff !important;
}
.cid-uD4hzbg3ot .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-uD3DKZtVAS {
  padding-top: 2.5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uD3DKZtVAS .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uD3DKZtVAS .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uD3DKZtVAS .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uD3DKZtVAS .align-bottom {
  margin-left: 3px;
  margin-bottom: 13px;
  padding-bottom: 10px;
}
.cid-uD3DKZtVAS .mbr-overlay {
  z-index: 1;
}
.cid-uD3DKZtVAS .carousel,
.cid-uD3DKZtVAS .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uD3DKZtVAS .item-wrapper {
  width: 100%;
}
.cid-uD3DKZtVAS .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uD3DKZtVAS .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
@media (max-width: 767px) {
  .cid-uD3DKZtVAS .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uD3DKZtVAS .carousel-control {
  top: 50%;
  width: 45px;
  height: 45px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: #E8E8E8;
  border-radius: 50%;
  transition: all 0.3s;
  opacity: 1;
}
.cid-uD3DKZtVAS .carousel-control span {
  color: #101019;
}
.cid-uD3DKZtVAS .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 1rem;
}
@media (max-width: 767px) {
  .cid-uD3DKZtVAS .carousel-control.carousel-control-prev {
    margin-left: 0.5rem;
  }
}
.cid-uD3DKZtVAS .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 1rem;
}
@media (max-width: 767px) {
  .cid-uD3DKZtVAS .carousel-control.carousel-control-next {
    margin-right: 0.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uD3DKZtVAS .carousel-indicators {
    margin-left: 0;
    text-align: center;
  }
}
.cid-uD3DKZtVAS .carousel-indicators li {
  height: 8px;
  max-height: 8px;
  width: 8px;
  max-width: 8px;
  margin: 3px;
  background-color: #ffffff;
  border-radius: 50%;
}
.cid-uD3DKZtVAS .carousel-indicators li.active,
.cid-uD3DKZtVAS .carousel-indicators li:hover {
  opacity: 0.9;
  border: none;
  margin: 13px 3px;
}
.cid-uD3DKZtVAS .carousel-indicators li::after,
.cid-uD3DKZtVAS .carousel-indicators li::before {
  content: none;
}
.cid-uD3DKZtVAS .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uD3DKZtVAS .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 600px) {
  .cid-uD3DKZtVAS .mbr-section-title {
    letter-spacing: -1px;
  }
}
.cid-uD3DKZtVAS .mbr-text,
.cid-uD3DKZtVAS .mbr-section-btn {
  color: #2a2e25;
}
.cid-uD3DKZtVAS .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-uDU6y9AxZl {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uDU6y9AxZl .card {
  display: block;
}
.cid-uDU6y9AxZl .card .card-img {
  overflow: hidden;
}
.cid-uDU6y9AxZl .card .card-img img {
  transition: all 0.5s;
}
.cid-uDU6y9AxZl .card .card-wrapper:hover .card-img img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-uDU6y9AxZl .underline .line {
  width: 2rem;
  height: 1px;
  background: #121212;
  display: inline-block;
}
.cid-uDU6y9AxZl .card .card-wrapper {
  height: 100%;
  overflow: hidden;
  position: relative;
}
.cid-uDU6y9AxZl .card .card-wrapper .card-link {
  z-index: 2;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  font-size: 0;
  display: none;
}
.cid-uDU6y9AxZl .card .card-wrapper .card-img {
  height: 100%;
  border-radius: 0;
}
.cid-uDU6y9AxZl .card .card-wrapper .card-img .mbr-overlay {
  background: #000000;
  opacity: 0.3;
  border-top-right-radius: 25%;
}
.cid-uDU6y9AxZl .card .card-wrapper .card-img img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-uDU6y9AxZl .popup-btn .card-link {
  display: block !important;
}
.cid-uDU6y9AxZl .popup-btn .mbr-overlay {
  border-top-right-radius: 0 !important;
}
.cid-uDU6y9AxZl .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 2rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
  letter-spacing: 2px;
}
.cid-uDU6y9AxZl .caption .mbr-text {
  margin-bottom: 2rem;
}
.cid-uDU6y9AxZl .caption .card-title {
  padding-right: 2rem;
}
.cid-uDU6y9AxZl .caption .price {
  background: #d24d2c;
  padding: 0 0.5rem;
}
@media (min-width: 768px) {
  .cid-uDU6y9AxZl .first-row-card {
    padding-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uDU6y9AxZl .card:not(:last-child) {
    padding-bottom: 2rem;
  }
}
.cid-uD8HOkUlA0 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uD8HOkUlA0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uD8HOkUlA0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uD8HOkUlA0 .row {
  flex-direction: row-reverse;
}
@media (max-width: 992px) {
  .cid-uD8HOkUlA0 .mbr-figure {
    margin-top: 1.5rem;
  }
}
.cid-uD8HOkUlA0 .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-uD8HOkUlA0 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uD8HOkUlA0 .media-content,
.cid-uD8HOkUlA0 .mbr-figure {
  align-self: center;
}
.cid-uD8HOkUlA0 .mbr-figure iframe {
  width: 100%;
  border-radius: 2rem;
  overflow: hidden;
}
.cid-uD8HOkUlA0 .mbr-figure {
  border-radius: 0rem;
  overflow: hidden;
}
@media (min-width: 767px) {
  .cid-uD8HOkUlA0 .mbr-figure {
    border-radius: 2rem;
  }
}
.cid-uD8HOkUlA0 .mbr-section-maintitle {
  text-align: center;
}
.cid-uD8HOkUlA0 .mbr-section-title {
  text-align: left;
}
.cid-uD8HOkUlA0 .mbr-text,
.cid-uD8HOkUlA0 .mbr-section-btn {
  text-align: left;
}
.cid-uDkPkSzHAp {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uDkPkSzHAp .features-image img {
  width: 100%;
  z-index: 1;
}
.cid-uDkPkSzHAp .features-image .card {
  margin-left: 20%;
  background-color: #d24d2c;
  padding: 2rem;
  position: relative;
  margin-top: -8rem;
  right: 1rem;
  z-index: 2;
  border-radius: 0;
}
.cid-uDkPkSzHAp .item-wrapper {
  padding-bottom: 2rem;
}
.cid-uDkPkSzHAp .card .mbr-text,
.cid-uDkPkSzHAp .card .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uDkPkSzHAp .mbr-text {
  color: #ffffff;
}
.cid-uDkPkSzHAp H5 {
  color: #ffffff;
}
.cid-uDkPkSzHAp H2 {
  text-align: left;
}
.cid-uD8Le7vKPK {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #d24d2c;
}
.cid-uD8Le7vKPK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uD8Le7vKPK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uD8Le7vKPK .google-map {
  height: 350px;
  position: relative;
}
.cid-uD8Le7vKPK .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uD8Le7vKPK .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uD8Le7vKPK .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uD8Le7vKPK .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uD8Le7vKPK .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uD8Le7vKPK .mbr-section-title {
  color: #ffffff;
}
.cid-uD92W8uH9h {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #1a1b18;
}
.cid-uD92W8uH9h .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uD92W8uH9h .social-row .soc-item {
  margin: 8px;
}
.cid-uD92W8uH9h .social-row .soc-item a:hover .mbr-iconfont,
.cid-uD92W8uH9h .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #f4c316;
}
.cid-uD92W8uH9h .social-row .soc-item a .mbr-iconfont {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 17px;
  background-color: #d24d2c;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uD92W8uH9h .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uD92W8uH9h .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uD92W8uH9h .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uD92W8uH9h .header-menu li p {
  margin: 0;
}
.cid-uD92W8uH9h .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-uD92W8uH9h .mbr-section-title {
  color: #ffffff;
}
.cid-uD9mBNDeg4 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uD9mBNDeg4 nav.navbar {
  position: fixed;
}
.cid-uD9mBNDeg4 .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-uD9mBNDeg4 .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-uD9mBNDeg4 .dropdown-item:hover,
.cid-uD9mBNDeg4 .dropdown-item:focus {
  color: #d24d2c !important;
}
.cid-uD9mBNDeg4 .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
  font-weight: 500;
}
.cid-uD9mBNDeg4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uD9mBNDeg4 .nav-link {
  position: relative;
  padding: 0;
}
.cid-uD9mBNDeg4 .container {
  display: flex;
  margin: auto;
}
.cid-uD9mBNDeg4 .iconfont-wrapper {
  color: #d24d2c !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uD9mBNDeg4 .dropdown-menu,
.cid-uD9mBNDeg4 .navbar.opened {
  background: #ffffff !important;
}
.cid-uD9mBNDeg4 .nav-item:focus,
.cid-uD9mBNDeg4 .nav-link:focus {
  outline: none;
}
.cid-uD9mBNDeg4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uD9mBNDeg4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uD9mBNDeg4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uD9mBNDeg4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uD9mBNDeg4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uD9mBNDeg4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uD9mBNDeg4 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uD9mBNDeg4 .navbar.opened {
  transition: all 0.3s;
}
.cid-uD9mBNDeg4 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uD9mBNDeg4 .navbar .navbar-logo img {
  width: auto;
}
.cid-uD9mBNDeg4 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uD9mBNDeg4 .navbar.collapsed {
  justify-content: center;
}
.cid-uD9mBNDeg4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uD9mBNDeg4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uD9mBNDeg4 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-uD9mBNDeg4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uD9mBNDeg4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uD9mBNDeg4 .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-uD9mBNDeg4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uD9mBNDeg4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uD9mBNDeg4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uD9mBNDeg4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uD9mBNDeg4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uD9mBNDeg4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uD9mBNDeg4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uD9mBNDeg4 .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-uD9mBNDeg4 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uD9mBNDeg4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uD9mBNDeg4 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uD9mBNDeg4 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uD9mBNDeg4 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uD9mBNDeg4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uD9mBNDeg4 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uD9mBNDeg4 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uD9mBNDeg4 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uD9mBNDeg4 .navbar-brand {
  display: inline-flex;
  align-items: center;
  min-height: 70px;
  flex-shrink: 0;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uD9mBNDeg4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uD9mBNDeg4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uD9mBNDeg4 .dropdown-item.active,
.cid-uD9mBNDeg4 .dropdown-item:active {
  background-color: transparent;
}
.cid-uD9mBNDeg4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uD9mBNDeg4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uD9mBNDeg4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uD9mBNDeg4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uD9mBNDeg4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uD9mBNDeg4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uD9mBNDeg4 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uD9mBNDeg4 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uD9mBNDeg4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uD9mBNDeg4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uD9mBNDeg4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uD9mBNDeg4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uD9mBNDeg4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uD9mBNDeg4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uD9mBNDeg4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uD9mBNDeg4 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uD9mBNDeg4 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uD9mBNDeg4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uD9mBNDeg4 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uD9mBNDeg4 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uD9mBNDeg4 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-start;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uD9mBNDeg4 .navbar {
    height: 70px;
  }
  .cid-uD9mBNDeg4 .navbar.opened {
    height: auto;
  }
  .cid-uD9mBNDeg4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uD9mBNDeg4 .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-uD9mBNDeg4 .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-uD9mBNDeg4 a {
  display: inline;
  font-weight: bold;
}
.cid-uD9mBNDeg4 img {
  display: inline;
  padding-right: 10px;
}
.cid-uD9mBNDeg4 .dropdown-toggle:after {
  display: none;
}
.cid-uD9mBNDeg4 .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-uD9mBNDeg4 .dropdown-item:hover {
  color: #5b6153 !important;
}
@media (max-width: 990px) {
  .cid-uD9mBNDeg4 .dropdown-menu {
    margin-top: 0px;
  }
  .cid-uD9mBNDeg4 .collapse .btn {
    margin: 11px 21px 18px;
  }
}
.cid-uD9mBNDeg4 .navbar-collapse .btn {
  display: block;
  margin: 0px 21px 0;
  font-weight: 500;
}
@media (min-width: 992px) {
  .cid-uD9mBNDeg4 .navbar-expand-lg .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
    align-items: center;
  }
}
.cid-uD9mBNDeg4 .btn {
  display: inline !important;
}
.cid-uD9mBNDeg4 .navbar .navbar-collapse ul.navbar-nav li {
  margin: 0 !important;
}
.cid-uD9mBNDeg4 .navbar-collapse .nav-link {
  display: inline-flex;
}
.cid-uD9mBNDeg4 .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-uD9mBNDeg4 .nav-link:hover:after {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-uD9mBNDeg4 .nav-link:after {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-uD9qw0Grsf {
  padding-top: 135px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/img-2367-2000x1333.jpg");
}
.cid-uD9qw0Grsf .mbr-arrow {
  background: #000000 !important;
  opacity: 0.7;
}
.cid-uD9qw0Grsf .mbr-arrow i {
  color: #d24d2c !important;
}
.cid-uD9qw0Grsf .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-uD9qw0Grsf .mbr-section-title {
  text-align: center;
  text-shadow: 2px 2px 4px #000000;
}
.cid-uDkcBAYILH {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/background4.jpg");
}
.cid-uDkcBAYILH .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.6;
}
.cid-uDkcBAYILH input,
.cid-uDkcBAYILH textarea {
  opacity: 0.7;
  border-radius: 10px;
}
.cid-uDkcBAYILH input:hover,
.cid-uDkcBAYILH textarea:hover {
  border-color: transparent!important;
}
.cid-uDkcBAYILH .btn {
  border-radius: 2rem;
  padding: 1rem 3rem;
  width: -webkit-fill-available;
}
.cid-uDkcBAYILH h4 {
  margin-bottom: 3rem;
}
.cid-uDkcBAYILH .col-auto {
  width: 100%;
}
.cid-uDkcBAYILH textarea {
  min-height: 250px;
}
.cid-uDkcBAYILH .mbr-form {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 7rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-uDkcBAYILH .mbr-form {
    padding: 2rem 1rem;
  }
}
.cid-uDkcBAYILH .mbr-form:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-uDkcBAYILH H4 {
  color: #263d5a;
}
.cid-uD9mBUHcJQ {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #1a1b18;
}
.cid-uD9mBUHcJQ .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uD9mBUHcJQ .social-row .soc-item {
  margin: 8px;
}
.cid-uD9mBUHcJQ .social-row .soc-item a:hover .mbr-iconfont,
.cid-uD9mBUHcJQ .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #f4c316;
}
.cid-uD9mBUHcJQ .social-row .soc-item a .mbr-iconfont {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 17px;
  background-color: #d24d2c;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uD9mBUHcJQ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uD9mBUHcJQ .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uD9mBUHcJQ .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uD9mBUHcJQ .header-menu li p {
  margin: 0;
}
.cid-uD9mBUHcJQ .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-uD9mBUHcJQ .mbr-section-title {
  color: #ffffff;
}
.cid-uDkeHSz0eT {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uDkeHSz0eT nav.navbar {
  position: fixed;
}
.cid-uDkeHSz0eT .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-uDkeHSz0eT .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-uDkeHSz0eT .dropdown-item:hover,
.cid-uDkeHSz0eT .dropdown-item:focus {
  color: #d24d2c !important;
}
.cid-uDkeHSz0eT .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
  font-weight: 500;
}
.cid-uDkeHSz0eT .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uDkeHSz0eT .nav-link {
  position: relative;
  padding: 0;
}
.cid-uDkeHSz0eT .container {
  display: flex;
  margin: auto;
}
.cid-uDkeHSz0eT .iconfont-wrapper {
  color: #d24d2c !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uDkeHSz0eT .dropdown-menu,
.cid-uDkeHSz0eT .navbar.opened {
  background: #ffffff !important;
}
.cid-uDkeHSz0eT .nav-item:focus,
.cid-uDkeHSz0eT .nav-link:focus {
  outline: none;
}
.cid-uDkeHSz0eT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uDkeHSz0eT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uDkeHSz0eT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uDkeHSz0eT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uDkeHSz0eT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uDkeHSz0eT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uDkeHSz0eT .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uDkeHSz0eT .navbar.opened {
  transition: all 0.3s;
}
.cid-uDkeHSz0eT .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uDkeHSz0eT .navbar .navbar-logo img {
  width: auto;
}
.cid-uDkeHSz0eT .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uDkeHSz0eT .navbar.collapsed {
  justify-content: center;
}
.cid-uDkeHSz0eT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uDkeHSz0eT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uDkeHSz0eT .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-uDkeHSz0eT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uDkeHSz0eT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uDkeHSz0eT .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-uDkeHSz0eT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uDkeHSz0eT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uDkeHSz0eT .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uDkeHSz0eT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uDkeHSz0eT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uDkeHSz0eT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uDkeHSz0eT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uDkeHSz0eT .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-uDkeHSz0eT .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uDkeHSz0eT .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uDkeHSz0eT .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uDkeHSz0eT .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uDkeHSz0eT .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uDkeHSz0eT .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uDkeHSz0eT .navbar.navbar-short {
  min-height: 60px;
}
.cid-uDkeHSz0eT .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uDkeHSz0eT .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uDkeHSz0eT .navbar-brand {
  display: inline-flex;
  align-items: center;
  min-height: 70px;
  flex-shrink: 0;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uDkeHSz0eT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uDkeHSz0eT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uDkeHSz0eT .dropdown-item.active,
.cid-uDkeHSz0eT .dropdown-item:active {
  background-color: transparent;
}
.cid-uDkeHSz0eT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uDkeHSz0eT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uDkeHSz0eT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uDkeHSz0eT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uDkeHSz0eT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uDkeHSz0eT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uDkeHSz0eT ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uDkeHSz0eT .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uDkeHSz0eT button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uDkeHSz0eT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uDkeHSz0eT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uDkeHSz0eT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uDkeHSz0eT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uDkeHSz0eT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uDkeHSz0eT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uDkeHSz0eT nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uDkeHSz0eT nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uDkeHSz0eT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uDkeHSz0eT .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uDkeHSz0eT a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uDkeHSz0eT .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-start;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uDkeHSz0eT .navbar {
    height: 70px;
  }
  .cid-uDkeHSz0eT .navbar.opened {
    height: auto;
  }
  .cid-uDkeHSz0eT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uDkeHSz0eT .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-uDkeHSz0eT .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-uDkeHSz0eT a {
  display: inline;
  font-weight: bold;
}
.cid-uDkeHSz0eT img {
  display: inline;
  padding-right: 10px;
}
.cid-uDkeHSz0eT .dropdown-toggle:after {
  display: none;
}
.cid-uDkeHSz0eT .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-uDkeHSz0eT .dropdown-item:hover {
  color: #5b6153 !important;
}
@media (max-width: 990px) {
  .cid-uDkeHSz0eT .dropdown-menu {
    margin-top: 0px;
  }
  .cid-uDkeHSz0eT .collapse .btn {
    margin: 11px 21px 18px;
  }
}
.cid-uDkeHSz0eT .navbar-collapse .btn {
  display: block;
  margin: 0px 21px 0;
  font-weight: 500;
}
@media (min-width: 992px) {
  .cid-uDkeHSz0eT .navbar-expand-lg .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
    align-items: center;
  }
}
.cid-uDkeHSz0eT .btn {
  display: inline !important;
}
.cid-uDkeHSz0eT .navbar .navbar-collapse ul.navbar-nav li {
  margin: 0 !important;
}
.cid-uDkeHSz0eT .navbar-collapse .nav-link {
  display: inline-flex;
}
.cid-uDkeHSz0eT .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-uDkeHSz0eT .nav-link:hover:after {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-uDkeHSz0eT .nav-link:after {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-uDkeHUplgB {
  padding-top: 135px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/mbr-1920x1279.jpg");
}
.cid-uDkeHUplgB .mbr-arrow {
  background: #000000 !important;
  opacity: 0.7;
}
.cid-uDkeHUplgB .mbr-arrow i {
  color: #d24d2c !important;
}
.cid-uDkeHUplgB .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-uDkeHUplgB .mbr-section-title {
  text-align: center;
  text-shadow: 2px 2px 4px #000000;
}
.cid-uDkNYSQBLl {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uDkNYSQBLl .wrapper {
  background-color: #d24d2c;
  border-radius: 10px;
  padding: 1rem;
}
@media (min-width: 992px) {
  .cid-uDkNYSQBLl .wrapper {
    padding: 3rem;
  }
}
.cid-uDkNYSQBLl .mbr-text {
  line-height: 1.72;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uDkNYSQBLl .mbr-section-subtitle {
    margin-bottom: 0.75rem;
  }
}
.cid-uDkNYSQBLl .mbr-section-title {
  margin: 0;
  margin-bottom: 3rem;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uDkNYSQBLl .mbr-section-title {
    margin-bottom: 2rem;
  }
}
.cid-uDkwYgYj2V {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uDkwYgYj2V .features-image img {
  width: 100%;
  z-index: 1;
}
.cid-uDkwYgYj2V .features-image .card {
  margin-left: 20%;
  background-color: #d24d2c;
  padding: 2rem;
  position: relative;
  margin-top: -8rem;
  right: 1rem;
  z-index: 2;
  border-radius: 0;
}
.cid-uDkwYgYj2V .item-wrapper {
  padding-bottom: 2rem;
}
.cid-uDkwYgYj2V .card .mbr-text,
.cid-uDkwYgYj2V .card .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uDkwYgYj2V .mbr-text {
  color: #ffffff;
}
.cid-uDkwYgYj2V H5 {
  color: #ffffff;
}
.cid-uDkeHWKa3r {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #1a1b18;
}
.cid-uDkeHWKa3r .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uDkeHWKa3r .social-row .soc-item {
  margin: 8px;
}
.cid-uDkeHWKa3r .social-row .soc-item a:hover .mbr-iconfont,
.cid-uDkeHWKa3r .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #f4c316;
}
.cid-uDkeHWKa3r .social-row .soc-item a .mbr-iconfont {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 17px;
  background-color: #d24d2c;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uDkeHWKa3r .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uDkeHWKa3r .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uDkeHWKa3r .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uDkeHWKa3r .header-menu li p {
  margin: 0;
}
.cid-uDkeHWKa3r .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-uDkeHWKa3r .mbr-section-title {
  color: #ffffff;
}
.cid-uDkOPvTwJm {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uDkOPvTwJm nav.navbar {
  position: fixed;
}
.cid-uDkOPvTwJm .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-uDkOPvTwJm .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-uDkOPvTwJm .dropdown-item:hover,
.cid-uDkOPvTwJm .dropdown-item:focus {
  color: #d24d2c !important;
}
.cid-uDkOPvTwJm .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
  font-weight: 500;
}
.cid-uDkOPvTwJm .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uDkOPvTwJm .nav-link {
  position: relative;
  padding: 0;
}
.cid-uDkOPvTwJm .container {
  display: flex;
  margin: auto;
}
.cid-uDkOPvTwJm .iconfont-wrapper {
  color: #d24d2c !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uDkOPvTwJm .dropdown-menu,
.cid-uDkOPvTwJm .navbar.opened {
  background: #ffffff !important;
}
.cid-uDkOPvTwJm .nav-item:focus,
.cid-uDkOPvTwJm .nav-link:focus {
  outline: none;
}
.cid-uDkOPvTwJm .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uDkOPvTwJm .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uDkOPvTwJm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uDkOPvTwJm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uDkOPvTwJm .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uDkOPvTwJm .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uDkOPvTwJm .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uDkOPvTwJm .navbar.opened {
  transition: all 0.3s;
}
.cid-uDkOPvTwJm .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uDkOPvTwJm .navbar .navbar-logo img {
  width: auto;
}
.cid-uDkOPvTwJm .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uDkOPvTwJm .navbar.collapsed {
  justify-content: center;
}
.cid-uDkOPvTwJm .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uDkOPvTwJm .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uDkOPvTwJm .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-uDkOPvTwJm .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uDkOPvTwJm .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uDkOPvTwJm .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-uDkOPvTwJm .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uDkOPvTwJm .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uDkOPvTwJm .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uDkOPvTwJm .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uDkOPvTwJm .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uDkOPvTwJm .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uDkOPvTwJm .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uDkOPvTwJm .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-uDkOPvTwJm .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uDkOPvTwJm .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uDkOPvTwJm .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uDkOPvTwJm .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uDkOPvTwJm .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uDkOPvTwJm .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uDkOPvTwJm .navbar.navbar-short {
  min-height: 60px;
}
.cid-uDkOPvTwJm .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uDkOPvTwJm .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uDkOPvTwJm .navbar-brand {
  display: inline-flex;
  align-items: center;
  min-height: 70px;
  flex-shrink: 0;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uDkOPvTwJm .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uDkOPvTwJm .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uDkOPvTwJm .dropdown-item.active,
.cid-uDkOPvTwJm .dropdown-item:active {
  background-color: transparent;
}
.cid-uDkOPvTwJm .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uDkOPvTwJm .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uDkOPvTwJm .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uDkOPvTwJm .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uDkOPvTwJm .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uDkOPvTwJm .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uDkOPvTwJm ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uDkOPvTwJm .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uDkOPvTwJm button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uDkOPvTwJm button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uDkOPvTwJm button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uDkOPvTwJm button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uDkOPvTwJm button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uDkOPvTwJm button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uDkOPvTwJm nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uDkOPvTwJm nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uDkOPvTwJm nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uDkOPvTwJm nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uDkOPvTwJm .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uDkOPvTwJm a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uDkOPvTwJm .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-start;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uDkOPvTwJm .navbar {
    height: 70px;
  }
  .cid-uDkOPvTwJm .navbar.opened {
    height: auto;
  }
  .cid-uDkOPvTwJm .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uDkOPvTwJm .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-uDkOPvTwJm .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-uDkOPvTwJm a {
  display: inline;
  font-weight: bold;
}
.cid-uDkOPvTwJm img {
  display: inline;
  padding-right: 10px;
}
.cid-uDkOPvTwJm .dropdown-toggle:after {
  display: none;
}
.cid-uDkOPvTwJm .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-uDkOPvTwJm .dropdown-item:hover {
  color: #5b6153 !important;
}
@media (max-width: 990px) {
  .cid-uDkOPvTwJm .dropdown-menu {
    margin-top: 0px;
  }
  .cid-uDkOPvTwJm .collapse .btn {
    margin: 11px 21px 18px;
  }
}
.cid-uDkOPvTwJm .navbar-collapse .btn {
  display: block;
  margin: 0px 21px 0;
  font-weight: 500;
}
@media (min-width: 992px) {
  .cid-uDkOPvTwJm .navbar-expand-lg .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
    align-items: center;
  }
}
.cid-uDkOPvTwJm .btn {
  display: inline !important;
}
.cid-uDkOPvTwJm .navbar .navbar-collapse ul.navbar-nav li {
  margin: 0 !important;
}
.cid-uDkOPvTwJm .navbar-collapse .nav-link {
  display: inline-flex;
}
.cid-uDkOPvTwJm .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-uDkOPvTwJm .nav-link:hover:after {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-uDkOPvTwJm .nav-link:after {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-uDkOPx51lp {
  padding-top: 135px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/img-2330-2000x1333.jpeg");
}
.cid-uDkOPx51lp .mbr-arrow {
  background: #000000 !important;
  opacity: 0.7;
}
.cid-uDkOPx51lp .mbr-arrow i {
  color: #d24d2c !important;
}
.cid-uDkOPx51lp .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-uDkOPx51lp .mbr-section-title {
  text-align: center;
  text-shadow: 2px 2px 4px #000000;
}
.cid-uDkTeX7Jvy {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uDkTeX7Jvy .content {
  padding: 50px 75px;
  background-color: #d24d2c;
}
.cid-uDkTeX7Jvy .content a {
  background-size: 100% 0%;
}
.cid-uDkTeX7Jvy .content a:hover {
  background-size: 100% 100%;
}
.cid-uDkTeX7Jvy .content .list {
  margin-bottom: 0;
}
.cid-uDkTeX7Jvy ul li::marker {
  font-size: 28px;
}
@media (max-width: 992px) {
  .cid-uDkTeX7Jvy .content {
    padding: 50px 50px;
  }
}
@media (max-width: 767px) {
  .cid-uDkTeX7Jvy .content {
    padding: 12% 9% 12% 9%;
  }
}
.cid-uDkTeX7Jvy .mbr-text {
  color: #ffffff;
}
.cid-uDkTeX7Jvy .list,
.cid-uDkTeX7Jvy .mbr-text {
  color: #ffffff;
}
.cid-uDkTeX7Jvy H3 {
  color: #ffffff;
}
.cid-uDkOPA9qF1 {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #1a1b18;
}
.cid-uDkOPA9qF1 .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uDkOPA9qF1 .social-row .soc-item {
  margin: 8px;
}
.cid-uDkOPA9qF1 .social-row .soc-item a:hover .mbr-iconfont,
.cid-uDkOPA9qF1 .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #f4c316;
}
.cid-uDkOPA9qF1 .social-row .soc-item a .mbr-iconfont {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 17px;
  background-color: #d24d2c;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uDkOPA9qF1 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uDkOPA9qF1 .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uDkOPA9qF1 .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uDkOPA9qF1 .header-menu li p {
  margin: 0;
}
.cid-uDkOPA9qF1 .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-uDkOPA9qF1 .mbr-section-title {
  color: #ffffff;
}
.cid-uDqyC03PHr {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uDqyC03PHr nav.navbar {
  position: fixed;
}
.cid-uDqyC03PHr .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-uDqyC03PHr .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-uDqyC03PHr .dropdown-item:hover,
.cid-uDqyC03PHr .dropdown-item:focus {
  color: #d24d2c !important;
}
.cid-uDqyC03PHr .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
  font-weight: 500;
}
.cid-uDqyC03PHr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uDqyC03PHr .nav-link {
  position: relative;
  padding: 0;
}
.cid-uDqyC03PHr .container {
  display: flex;
  margin: auto;
}
.cid-uDqyC03PHr .iconfont-wrapper {
  color: #d24d2c !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uDqyC03PHr .dropdown-menu,
.cid-uDqyC03PHr .navbar.opened {
  background: #ffffff !important;
}
.cid-uDqyC03PHr .nav-item:focus,
.cid-uDqyC03PHr .nav-link:focus {
  outline: none;
}
.cid-uDqyC03PHr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uDqyC03PHr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uDqyC03PHr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uDqyC03PHr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uDqyC03PHr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uDqyC03PHr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uDqyC03PHr .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uDqyC03PHr .navbar.opened {
  transition: all 0.3s;
}
.cid-uDqyC03PHr .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uDqyC03PHr .navbar .navbar-logo img {
  width: auto;
}
.cid-uDqyC03PHr .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uDqyC03PHr .navbar.collapsed {
  justify-content: center;
}
.cid-uDqyC03PHr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uDqyC03PHr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uDqyC03PHr .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-uDqyC03PHr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uDqyC03PHr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uDqyC03PHr .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-uDqyC03PHr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uDqyC03PHr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uDqyC03PHr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uDqyC03PHr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uDqyC03PHr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uDqyC03PHr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uDqyC03PHr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uDqyC03PHr .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-uDqyC03PHr .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uDqyC03PHr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uDqyC03PHr .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uDqyC03PHr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uDqyC03PHr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uDqyC03PHr .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uDqyC03PHr .navbar.navbar-short {
  min-height: 60px;
}
.cid-uDqyC03PHr .navbar.navbar-short .navbar-logo img {
  height: 3.8rem !important;
}
.cid-uDqyC03PHr .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uDqyC03PHr .navbar-brand {
  display: inline-flex;
  align-items: center;
  min-height: 70px;
  flex-shrink: 0;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uDqyC03PHr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uDqyC03PHr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uDqyC03PHr .dropdown-item.active,
.cid-uDqyC03PHr .dropdown-item:active {
  background-color: transparent;
}
.cid-uDqyC03PHr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uDqyC03PHr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uDqyC03PHr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uDqyC03PHr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uDqyC03PHr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uDqyC03PHr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uDqyC03PHr ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uDqyC03PHr .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uDqyC03PHr button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uDqyC03PHr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uDqyC03PHr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uDqyC03PHr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uDqyC03PHr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uDqyC03PHr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uDqyC03PHr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uDqyC03PHr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uDqyC03PHr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uDqyC03PHr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uDqyC03PHr .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uDqyC03PHr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uDqyC03PHr .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-start;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uDqyC03PHr .navbar {
    height: 70px;
  }
  .cid-uDqyC03PHr .navbar.opened {
    height: auto;
  }
  .cid-uDqyC03PHr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uDqyC03PHr .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-uDqyC03PHr .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-uDqyC03PHr a {
  display: inline;
  font-weight: bold;
}
.cid-uDqyC03PHr img {
  display: inline;
  padding-right: 10px;
}
.cid-uDqyC03PHr .dropdown-toggle:after {
  display: none;
}
.cid-uDqyC03PHr .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-uDqyC03PHr .dropdown-item:hover {
  color: #5b6153 !important;
}
@media (max-width: 990px) {
  .cid-uDqyC03PHr .dropdown-menu {
    margin-top: 0px;
  }
  .cid-uDqyC03PHr .collapse .btn {
    margin: 11px 21px 18px;
  }
}
.cid-uDqyC03PHr .navbar-collapse .btn {
  display: block;
  margin: 0px 21px 0;
  font-weight: 500;
}
@media (min-width: 992px) {
  .cid-uDqyC03PHr .navbar-expand-lg .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
    align-items: center;
  }
}
.cid-uDqyC03PHr .btn {
  display: inline !important;
}
.cid-uDqyC03PHr .navbar .navbar-collapse ul.navbar-nav li {
  margin: 0 !important;
}
.cid-uDqyC03PHr .navbar-collapse .nav-link {
  display: inline-flex;
}
.cid-uDqyC03PHr .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-uDqyC03PHr .nav-link:hover:after {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-uDqyC03PHr .nav-link:after {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-uDqySiV89Z {
  padding-top: 135px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/cover-2000x1600.jpg");
}
.cid-uDqySiV89Z .mbr-arrow {
  background: #000000 !important;
  opacity: 0.7;
}
.cid-uDqySiV89Z .mbr-arrow i {
  color: #d24d2c !important;
}
.cid-uDqySiV89Z .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-uDqySiV89Z .mbr-section-title {
  text-align: center;
  text-shadow: 2px 2px 4px #000000;
}
.cid-uDTNoyEo9m {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uDTNoyEo9m .content {
  padding: 50px 75px;
  background-color: #d24d2c;
}
.cid-uDTNoyEo9m .content a {
  background-size: 100% 0%;
}
.cid-uDTNoyEo9m .content a:hover {
  background-size: 100% 100%;
}
.cid-uDTNoyEo9m .content .list {
  margin-bottom: 0;
}
.cid-uDTNoyEo9m ul li::marker {
  font-size: 28px;
}
@media (max-width: 992px) {
  .cid-uDTNoyEo9m .content {
    padding: 50px 50px;
  }
}
@media (max-width: 767px) {
  .cid-uDTNoyEo9m .content {
    padding: 12% 9% 12% 9%;
  }
}
.cid-uDTNoyEo9m .mbr-text {
  color: #ffffff;
}
.cid-uDTNoyEo9m .list,
.cid-uDTNoyEo9m .mbr-text {
  color: #ffffff;
}
.cid-uDTNoyEo9m H3 {
  color: #ffffff;
}
.cid-uDqVdkRrcy {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uDqVdkRrcy .mbr-iconfont {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  color: #d24d2c;
  margin-bottom: 2rem;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  box-shadow: 0 6px 24px -2px rgba(119, 139, 165, 0.2);
}
.cid-uDqVdkRrcy .card-link,
.cid-uDqVdkRrcy .link-wrap,
.cid-uDqVdkRrcy .card-link:before {
  color: #121212;
}
.cid-uDqVdkRrcy .card-wrapper {
  overflow: visible;
}
.cid-uDqVdkRrcy .card-link {
  position: relative;
  padding: 0;
  margin: 0;
  margin-right: 1.5rem;
  transition: all 0.3s;
  width: fit-content;
  cursor: pointer;
  display: inline-block;
}
.cid-uDqVdkRrcy .card-link:before {
  font-family: 'Moririse2';
  content: "\e96b";
  position: absolute;
  font-size: 1rem;
  top: 50%;
  transition: all 0.3s;
  transform: translateY(-50%);
  right: -1.5rem;
}
.cid-uDqVdkRrcy .card-link:hover {
  color: #d24d2c;
  transition: all 0.3s;
}
.cid-uDqVdkRrcy .card-link:hover:before {
  right: -2rem;
  color: #d24d2c;
  transition: all 0.3s;
}
.cid-uDqVdkRrcy .card-text {
  color: #454545;
}
.cid-uDqVdkRrcy .card-title,
.cid-uDqVdkRrcy .icon-wrap {
  color: #121212;
}
.cid-uDqFilbJcU {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-uDqFilbJcU .container-fluid {
  padding: 0;
}
.cid-uDqFilbJcU .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uDqFilbJcU .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uDqFilbJcU .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uDqFilbJcU .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uDqFilbJcU .mbr-gallery-item {
  padding: 8px !important;
}
.cid-uDqFilbJcU .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-uDqFilbJcU .mbr-gallery-filter .btn {
  color: #d24d2c !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  background: transparent;
  padding: 5px 12px;
}
.cid-uDqFilbJcU .mbr-gallery-filter ul {
  display: block;
}
.cid-uDqFilbJcU .mbr-gallery-filter ul li {
  position: relative;
  margin: 5px;
}
.cid-uDqFilbJcU .mbr-gallery-filter li.active .btn {
  color: #d24d2c !important;
  background: transparent;
  border: 1px solid #dddfe0 !important;
}
.cid-uDqFilbJcU .mbr-gallery-filter .btn::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #ffffff !important;
}
.cid-uDqFilbJcU .mbr-gallery-title {
  display: block;
  display: none !important;
  width: 100%;
  margin: 0;
  padding: 1rem 0 1rem 1rem;
  color: #222;
  text-align: left;
}
.cid-uDqFilbJcU .mbr-gallery-item > div:hover .mbr-gallery-title {
  top: 0;
  right: 0;
  display: block;
  visibility: visible;
  opacity: 1;
}
.cid-uDqFilbJcU .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 47px);
  top: calc(50% - 24px);
}
.cid-uDqFilbJcU .icon-focus:before {
  content: '\e96b';
}
.cid-uDqFilbJcU .icon-focus {
  transition: all .3s;
  font-size: 2.5rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px padding: 0 8px;
  border-radius: 50%;
  color: #ffffff !important;
}
.cid-uDqFilbJcU .mbr-section-title {
  margin: 0;
}
.cid-uDU30nLvYj {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uDU30nLvYj .mbr-section-title {
  margin: 0;
}
.cid-uDU30nLvYj .mbr-section-subtitle {
  margin-bottom: 2rem;
  color: #8d97ad;
}
.cid-uDU30nLvYj .mbr-text {
  margin: 0;
  color: #efefef;
}
.cid-uDU30nLvYj .wrapper {
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-radius: .25rem;
}
.cid-uDU30nLvYj .card1 {
  background: linear-gradient(45deg, #d24d2c, #d24d2c);
}
.cid-uDU30nLvYj .card2 {
  background: linear-gradient(45deg, #d24d2c, #d24d2c);
}
.cid-uDU30nLvYj .card3 {
  background: linear-gradient(45deg, #d24d2c, #d24d2c);
}
.cid-uDU30nLvYj .card4 {
  background: linear-gradient(45deg, #1dc9cb, #1dc9cb);
}
@media (max-width: 991px) {
  .cid-uDU30nLvYj .wrapper {
    margin-bottom: 5rem;
  }
}
.cid-uDU30nLvYj .mbr-card-title {
  padding-bottom: 1rem;
}
.cid-uDU30nLvYj .mbr-section-btn {
  padding-top: 1rem;
}
.cid-uDU30nLvYj .card1 > .mbr-card-title {
  text-align: center;
}
.cid-uDU30nLvYj .card2 > .mbr-card-title {
  text-align: center;
}
.cid-uDU30nLvYj .card3 > .mbr-card-title {
  text-align: center;
}
.cid-uDqE0LJONM {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background: #ffffff;
}
.cid-uDqE0LJONM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDqE0LJONM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDqE0LJONM .google-map {
  height: 30rem;
  position: relative;
  border-radius: 2rem;
}
.cid-uDqE0LJONM .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-uDqE0LJONM .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uDqE0LJONM .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uDqE0LJONM .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uDqE0LJONM .content-head {
  max-width: 800px;
}
.cid-uDqyC4DHSJ {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #1a1b18;
}
.cid-uDqyC4DHSJ .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uDqyC4DHSJ .social-row .soc-item {
  margin: 8px;
}
.cid-uDqyC4DHSJ .social-row .soc-item a:hover .mbr-iconfont,
.cid-uDqyC4DHSJ .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #f4c316;
}
.cid-uDqyC4DHSJ .social-row .soc-item a .mbr-iconfont {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 17px;
  background-color: #d24d2c;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uDqyC4DHSJ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uDqyC4DHSJ .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uDqyC4DHSJ .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uDqyC4DHSJ .header-menu li p {
  margin: 0;
}
.cid-uDqyC4DHSJ .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-uDqyC4DHSJ .mbr-section-title {
  color: #ffffff;
}
.cid-uDqYpjd4vJ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uDqYpjd4vJ nav.navbar {
  position: fixed;
}
.cid-uDqYpjd4vJ .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-uDqYpjd4vJ .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-uDqYpjd4vJ .dropdown-item:hover,
.cid-uDqYpjd4vJ .dropdown-item:focus {
  color: #d24d2c !important;
}
.cid-uDqYpjd4vJ .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
  font-weight: 500;
}
.cid-uDqYpjd4vJ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uDqYpjd4vJ .nav-link {
  position: relative;
  padding: 0;
}
.cid-uDqYpjd4vJ .container {
  display: flex;
  margin: auto;
}
.cid-uDqYpjd4vJ .iconfont-wrapper {
  color: #d24d2c !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uDqYpjd4vJ .dropdown-menu,
.cid-uDqYpjd4vJ .navbar.opened {
  background: #ffffff !important;
}
.cid-uDqYpjd4vJ .nav-item:focus,
.cid-uDqYpjd4vJ .nav-link:focus {
  outline: none;
}
.cid-uDqYpjd4vJ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uDqYpjd4vJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uDqYpjd4vJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uDqYpjd4vJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uDqYpjd4vJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uDqYpjd4vJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uDqYpjd4vJ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uDqYpjd4vJ .navbar.opened {
  transition: all 0.3s;
}
.cid-uDqYpjd4vJ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uDqYpjd4vJ .navbar .navbar-logo img {
  width: auto;
}
.cid-uDqYpjd4vJ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uDqYpjd4vJ .navbar.collapsed {
  justify-content: center;
}
.cid-uDqYpjd4vJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uDqYpjd4vJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uDqYpjd4vJ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-uDqYpjd4vJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uDqYpjd4vJ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uDqYpjd4vJ .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-uDqYpjd4vJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uDqYpjd4vJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uDqYpjd4vJ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uDqYpjd4vJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uDqYpjd4vJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uDqYpjd4vJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uDqYpjd4vJ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uDqYpjd4vJ .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-uDqYpjd4vJ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uDqYpjd4vJ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uDqYpjd4vJ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uDqYpjd4vJ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uDqYpjd4vJ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uDqYpjd4vJ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uDqYpjd4vJ .navbar.navbar-short {
  min-height: 60px;
}
.cid-uDqYpjd4vJ .navbar.navbar-short .navbar-logo img {
  height: 3.8rem !important;
}
.cid-uDqYpjd4vJ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uDqYpjd4vJ .navbar-brand {
  display: inline-flex;
  align-items: center;
  min-height: 70px;
  flex-shrink: 0;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uDqYpjd4vJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uDqYpjd4vJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uDqYpjd4vJ .dropdown-item.active,
.cid-uDqYpjd4vJ .dropdown-item:active {
  background-color: transparent;
}
.cid-uDqYpjd4vJ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uDqYpjd4vJ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uDqYpjd4vJ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uDqYpjd4vJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uDqYpjd4vJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uDqYpjd4vJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uDqYpjd4vJ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uDqYpjd4vJ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uDqYpjd4vJ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uDqYpjd4vJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uDqYpjd4vJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uDqYpjd4vJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uDqYpjd4vJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uDqYpjd4vJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uDqYpjd4vJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uDqYpjd4vJ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uDqYpjd4vJ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uDqYpjd4vJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uDqYpjd4vJ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uDqYpjd4vJ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uDqYpjd4vJ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-start;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uDqYpjd4vJ .navbar {
    height: 70px;
  }
  .cid-uDqYpjd4vJ .navbar.opened {
    height: auto;
  }
  .cid-uDqYpjd4vJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uDqYpjd4vJ .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-uDqYpjd4vJ .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-uDqYpjd4vJ a {
  display: inline;
  font-weight: bold;
}
.cid-uDqYpjd4vJ img {
  display: inline;
  padding-right: 10px;
}
.cid-uDqYpjd4vJ .dropdown-toggle:after {
  display: none;
}
.cid-uDqYpjd4vJ .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-uDqYpjd4vJ .dropdown-item:hover {
  color: #5b6153 !important;
}
@media (max-width: 990px) {
  .cid-uDqYpjd4vJ .dropdown-menu {
    margin-top: 0px;
  }
  .cid-uDqYpjd4vJ .collapse .btn {
    margin: 11px 21px 18px;
  }
}
.cid-uDqYpjd4vJ .navbar-collapse .btn {
  display: block;
  margin: 0px 21px 0;
  font-weight: 500;
}
@media (min-width: 992px) {
  .cid-uDqYpjd4vJ .navbar-expand-lg .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
    align-items: center;
  }
}
.cid-uDqYpjd4vJ .btn {
  display: inline !important;
}
.cid-uDqYpjd4vJ .navbar .navbar-collapse ul.navbar-nav li {
  margin: 0 !important;
}
.cid-uDqYpjd4vJ .navbar-collapse .nav-link {
  display: inline-flex;
}
.cid-uDqYpjd4vJ .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-uDqYpjd4vJ .nav-link:hover:after {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-uDqYpjd4vJ .nav-link:after {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-uDqYpjJS2o {
  padding-top: 135px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/cover-1-2000x1600.jpg");
}
.cid-uDqYpjJS2o .mbr-arrow {
  background: #000000 !important;
  opacity: 0.7;
}
.cid-uDqYpjJS2o .mbr-arrow i {
  color: #d24d2c !important;
}
.cid-uDqYpjJS2o .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-uDqYpjJS2o .mbr-section-title {
  text-align: center;
  text-shadow: 2px 2px 4px #000000;
}
.cid-uDU4HrAQwA {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uDU4HrAQwA .content {
  padding: 50px 75px;
  background-color: #d24d2c;
}
.cid-uDU4HrAQwA .content a {
  background-size: 100% 0%;
}
.cid-uDU4HrAQwA .content a:hover {
  background-size: 100% 100%;
}
.cid-uDU4HrAQwA .content .list {
  margin-bottom: 0;
}
.cid-uDU4HrAQwA ul li::marker {
  font-size: 28px;
}
@media (max-width: 992px) {
  .cid-uDU4HrAQwA .content {
    padding: 50px 50px;
  }
}
@media (max-width: 767px) {
  .cid-uDU4HrAQwA .content {
    padding: 12% 9% 12% 9%;
  }
}
.cid-uDU4HrAQwA .mbr-text {
  color: #ffffff;
}
.cid-uDU4HrAQwA .list,
.cid-uDU4HrAQwA .mbr-text {
  color: #ffffff;
}
.cid-uDU4HrAQwA H3 {
  color: #ffffff;
}
.cid-uDqYpkrOkS {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uDqYpkrOkS .mbr-iconfont {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  color: #d24d2c;
  margin-bottom: 2rem;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  box-shadow: 0 6px 24px -2px rgba(119, 139, 165, 0.2);
}
.cid-uDqYpkrOkS .card-link,
.cid-uDqYpkrOkS .link-wrap,
.cid-uDqYpkrOkS .card-link:before {
  color: #121212;
}
.cid-uDqYpkrOkS .card-wrapper {
  overflow: visible;
}
.cid-uDqYpkrOkS .card-link {
  position: relative;
  padding: 0;
  margin: 0;
  margin-right: 1.5rem;
  transition: all 0.3s;
  width: fit-content;
  cursor: pointer;
  display: inline-block;
}
.cid-uDqYpkrOkS .card-link:before {
  font-family: 'Moririse2';
  content: "\e96b";
  position: absolute;
  font-size: 1rem;
  top: 50%;
  transition: all 0.3s;
  transform: translateY(-50%);
  right: -1.5rem;
}
.cid-uDqYpkrOkS .card-link:hover {
  color: #d24d2c;
  transition: all 0.3s;
}
.cid-uDqYpkrOkS .card-link:hover:before {
  right: -2rem;
  color: #d24d2c;
  transition: all 0.3s;
}
.cid-uDqYpkrOkS .card-text {
  color: #454545;
}
.cid-uDqYpkrOkS .card-title,
.cid-uDqYpkrOkS .icon-wrap {
  color: #121212;
}
.cid-uDqYpkVzVh {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-uDqYpkVzVh .container-fluid {
  padding: 0;
}
.cid-uDqYpkVzVh .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uDqYpkVzVh .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uDqYpkVzVh .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uDqYpkVzVh .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uDqYpkVzVh .mbr-gallery-item {
  padding: 8px !important;
}
.cid-uDqYpkVzVh .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-uDqYpkVzVh .mbr-gallery-filter .btn {
  color: #d24d2c !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  background: transparent;
  padding: 5px 12px;
}
.cid-uDqYpkVzVh .mbr-gallery-filter ul {
  display: block;
}
.cid-uDqYpkVzVh .mbr-gallery-filter ul li {
  position: relative;
  margin: 5px;
}
.cid-uDqYpkVzVh .mbr-gallery-filter li.active .btn {
  color: #d24d2c !important;
  background: transparent;
  border: 1px solid #dddfe0 !important;
}
.cid-uDqYpkVzVh .mbr-gallery-filter .btn::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #ffffff !important;
}
.cid-uDqYpkVzVh .mbr-gallery-title {
  display: block;
  display: none !important;
  width: 100%;
  margin: 0;
  padding: 1rem 0 1rem 1rem;
  color: #222;
  text-align: left;
}
.cid-uDqYpkVzVh .mbr-gallery-item > div:hover .mbr-gallery-title {
  top: 0;
  right: 0;
  display: block;
  visibility: visible;
  opacity: 1;
}
.cid-uDqYpkVzVh .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 47px);
  top: calc(50% - 24px);
}
.cid-uDqYpkVzVh .icon-focus:before {
  content: '\e96b';
}
.cid-uDqYpkVzVh .icon-focus {
  transition: all .3s;
  font-size: 2.5rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px padding: 0 8px;
  border-radius: 50%;
  color: #ffffff !important;
}
.cid-uDqYpkVzVh .mbr-section-title {
  margin: 0;
}
.cid-uDU4IadxJf {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uDU4IadxJf .mbr-section-title {
  margin: 0;
}
.cid-uDU4IadxJf .mbr-section-subtitle {
  margin-bottom: 2rem;
  color: #8d97ad;
}
.cid-uDU4IadxJf .mbr-text {
  margin: 0;
  color: #efefef;
}
.cid-uDU4IadxJf .wrapper {
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-radius: .25rem;
}
.cid-uDU4IadxJf .card1 {
  background: linear-gradient(45deg, #d24d2c, #d24d2c);
}
.cid-uDU4IadxJf .card2 {
  background: linear-gradient(45deg, #d24d2c, #d24d2c);
}
.cid-uDU4IadxJf .card3 {
  background: linear-gradient(45deg, #d24d2c, #d24d2c);
}
.cid-uDU4IadxJf .card4 {
  background: linear-gradient(45deg, #1dc9cb, #1dc9cb);
}
@media (max-width: 991px) {
  .cid-uDU4IadxJf .wrapper {
    margin-bottom: 5rem;
  }
}
.cid-uDU4IadxJf .mbr-card-title {
  padding-bottom: 1rem;
}
.cid-uDU4IadxJf .mbr-section-btn {
  padding-top: 1rem;
}
.cid-uDU4IadxJf .card1 > .mbr-card-title {
  text-align: center;
}
.cid-uDU4IadxJf .card2 > .mbr-card-title {
  text-align: center;
}
.cid-uDU4IadxJf .card3 > .mbr-card-title {
  text-align: center;
}
.cid-uDqYplrbjr {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background: #ffffff;
}
.cid-uDqYplrbjr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDqYplrbjr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDqYplrbjr .google-map {
  height: 30rem;
  position: relative;
  border-radius: 2rem;
}
.cid-uDqYplrbjr .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-uDqYplrbjr .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uDqYplrbjr .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uDqYplrbjr .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uDqYplrbjr .content-head {
  max-width: 800px;
}
.cid-uDqYpmwCFj {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #1a1b18;
}
.cid-uDqYpmwCFj .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uDqYpmwCFj .social-row .soc-item {
  margin: 8px;
}
.cid-uDqYpmwCFj .social-row .soc-item a:hover .mbr-iconfont,
.cid-uDqYpmwCFj .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #f4c316;
}
.cid-uDqYpmwCFj .social-row .soc-item a .mbr-iconfont {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 17px;
  background-color: #d24d2c;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uDqYpmwCFj .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uDqYpmwCFj .header-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uDqYpmwCFj .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uDqYpmwCFj .header-menu li p {
  margin: 0;
}
.cid-uDqYpmwCFj .copyright {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-uDqYpmwCFj .mbr-section-title {
  color: #ffffff;
}
