body {
  font-family: 'DM Sans', sans-serif;
}
.display-1 {
  font-family: 'DM Sans', sans-serif;
  font-size: 5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 6.25rem;
}
.display-2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.3rem;
  line-height: 1.3;
}
.display-7 > .mbr-iconfont {
  font-size: 1.625rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.5rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.7rem 1.3rem;
  border-radius: 0px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 0px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 0px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 0px;
}
.bg-primary {
  background-color: #8e0606 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #8e0606 !important;
}
.bg-danger {
  background-color: #ec8e16 !important;
}
.btn-primary {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-primary,
.btn-primary:active {
  background-color: #8e0606 !important;
  border-color: #8e0606 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #8e0606 !important;
  border-color: #8e0606 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #8e0606 !important;
  border-color: #8e0606 !important;
}
.btn-primary:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-primary:hover {
  color: black !important;
}
.btn-primary:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-secondary {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #8e0606 !important;
  border-color: #8e0606 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #8e0606 !important;
  border-color: #8e0606 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #8e0606 !important;
  border-color: #8e0606 !important;
}
.btn-secondary:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-secondary:hover {
  color: black !important;
}
.btn-secondary:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-info {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-info:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-info:hover {
  color: black !important;
}
.btn-info:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-success {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-success:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-success:hover {
  color: black !important;
}
.btn-success:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-warning {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-warning,
.btn-warning:active {
  background-color: #8e0606 !important;
  border-color: #8e0606 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #8e0606 !important;
  border-color: #8e0606 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #8e0606 !important;
  border-color: #8e0606 !important;
}
.btn-warning:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-warning:hover {
  color: black !important;
}
.btn-warning:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-danger {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-danger,
.btn-danger:active {
  background-color: #ec8e16 !important;
  border-color: #ec8e16 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ec8e16 !important;
  border-color: #ec8e16 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ec8e16 !important;
  border-color: #ec8e16 !important;
}
.btn-danger:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-danger:hover {
  color: black !important;
}
.btn-danger:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-white {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-white,
.btn-white:active {
  background-color: #eaeaea !important;
  border-color: #eaeaea !important;
  color: #000000 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #000000 !important;
  background-color: #eaeaea !important;
  border-color: #eaeaea !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #000000 !important;
  background-color: #eaeaea !important;
  border-color: #eaeaea !important;
}
.btn-white:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-white:hover {
  color: black !important;
}
.btn-white:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-white:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: #8e0606;
  z-index: -1;
  transition: all 0.3s;
}
.btn-white:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-black {
  position: relative;
  z-index: 1;
  border: 0;
}
.btn-black,
.btn-black:active {
  background-color: rgba(0, 0, 0, 0.5) !important;
  border-color: rgba(0, 0, 0, 0.5) !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: rgba(0, 0, 0, 0.5) !important;
  border-color: rgba(0, 0, 0, 0.5) !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: rgba(0, 0, 0, 0.5) !important;
  border-color: rgba(0, 0, 0, 0.5) !important;
}
.btn-black:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-black:hover {
  color: black !important;
}
.btn-black:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #8e0606;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #3b0202 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #8e0606 !important;
  border-color: #8e0606 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #8e0606;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #3b0202 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #8e0606 !important;
  border-color: #8e0606 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #8e0606;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #3b0202 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #8e0606 !important;
  border-color: #8e0606 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ec8e16;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #9e5e0d !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ec8e16 !important;
  border-color: #ec8e16 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #272727;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #272727 !important;
  border-color: #272727 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #8e0606 !important;
}
.text-secondary {
  color: #8e0606 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #8e0606 !important;
}
.text-danger {
  color: #ec8e16 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #272727 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #8e0606 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #2c0202 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #2c0202 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #90560c !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #fafafa !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
.nav-tabs .nav-link.active {
  color: #8e0606;
}
.nav-tabs .nav-link:not(.active) {
  color: #272727;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #8e0606;
}
.alert-danger {
  background-color: #ec8e16;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #8e0606;
  border-color: #8e0606;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #8e0606;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #f51e1e;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #f51e1e;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #fbe9d3;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #8e0606 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #8e0606;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #8e0606;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #8e0606;
}
.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: #8e0606;
  border-bottom-color: #8e0606;
}
.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: #8e0606 !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: #8e0606 !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='%238e0606' %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-tJJW0hehYm {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tJJW0hehYm .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-tJJW0hehYm .iconfont-wrapper {
  overflow: hidden;
  color: #000000 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-tJJW0hehYm .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-tJJW0hehYm .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-tJJW0hehYm .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #8e0606;
  z-index: -1;
}
.cid-tJJW0hehYm nav.navbar {
  position: fixed;
}
.cid-tJJW0hehYm .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-tJJW0hehYm .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-tJJW0hehYm .nav-item {
    border: 0;
  }
}
.cid-tJJW0hehYm .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tJJW0hehYm .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-tJJW0hehYm .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-tJJW0hehYm .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-tJJW0hehYm .title-wrap:hover span {
  color: white;
}
.cid-tJJW0hehYm .title-wrap:hover:before {
  height: 100%;
}
.cid-tJJW0hehYm .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-tJJW0hehYm .dropdown-menu {
  padding: 0;
  border-top: 4px solid #8e0606;
}
.cid-tJJW0hehYm .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tJJW0hehYm .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tJJW0hehYm .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-tJJW0hehYm .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-tJJW0hehYm .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tJJW0hehYm .nav-link {
  position: relative;
}
.cid-tJJW0hehYm .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tJJW0hehYm .container {
    flex-wrap: nowrap;
  }
}
.cid-tJJW0hehYm .dropdown-menu,
.cid-tJJW0hehYm .navbar.opened {
  background: #ffffff !important;
}
.cid-tJJW0hehYm .nav-item:focus,
.cid-tJJW0hehYm .nav-link:focus {
  outline: none;
}
.cid-tJJW0hehYm .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tJJW0hehYm .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tJJW0hehYm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tJJW0hehYm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tJJW0hehYm .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tJJW0hehYm .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tJJW0hehYm .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-tJJW0hehYm .navbar.opened {
  transition: all 0.3s;
}
.cid-tJJW0hehYm .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tJJW0hehYm .navbar .navbar-logo img {
  width: auto;
}
.cid-tJJW0hehYm .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tJJW0hehYm .navbar.collapsed {
  justify-content: center;
}
.cid-tJJW0hehYm .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tJJW0hehYm .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tJJW0hehYm .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tJJW0hehYm .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tJJW0hehYm .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tJJW0hehYm .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-tJJW0hehYm .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tJJW0hehYm .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tJJW0hehYm .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tJJW0hehYm .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tJJW0hehYm .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tJJW0hehYm .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tJJW0hehYm .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tJJW0hehYm .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-tJJW0hehYm .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tJJW0hehYm .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tJJW0hehYm .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tJJW0hehYm .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tJJW0hehYm .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tJJW0hehYm .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tJJW0hehYm .navbar.navbar-short {
  min-height: 60px;
}
.cid-tJJW0hehYm .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tJJW0hehYm .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tJJW0hehYm .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tJJW0hehYm .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tJJW0hehYm .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tJJW0hehYm .dropdown-item.active,
.cid-tJJW0hehYm .dropdown-item:active {
  background-color: transparent;
}
.cid-tJJW0hehYm .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tJJW0hehYm .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tJJW0hehYm .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tJJW0hehYm .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tJJW0hehYm .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tJJW0hehYm .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tJJW0hehYm ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tJJW0hehYm .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tJJW0hehYm button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tJJW0hehYm button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tJJW0hehYm button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tJJW0hehYm button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tJJW0hehYm button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tJJW0hehYm button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tJJW0hehYm nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tJJW0hehYm nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tJJW0hehYm nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tJJW0hehYm nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tJJW0hehYm .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tJJW0hehYm a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tJJW0hehYm .navbar {
    height: 70px;
  }
  .cid-tJJW0hehYm .navbar.opened {
    height: auto;
  }
  .cid-tJJW0hehYm .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tJJW0hehYm .navbar-caption-wrap,
.cid-tJJW0hehYm .title-wrap {
  color: #272727;
}
.cid-t3rKdK4uyp .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #8e0606;
}
.cid-t3rKdK4uyp .card-wrapper {
  min-height: 300px;
  transition: all 0.3s;
  padding: 3rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 992px) {
  .cid-t3rKdK4uyp .card-wrapper {
    padding: 3rem 2rem;
  }
}
.cid-t3rKdK4uyp .icon1 {
  color: #ffffff;
}
.cid-t3rKdK4uyp .icon2 {
  color: #ffffff;
}
.cid-t3rKdK4uyp .icon3 {
  color: #272727;
}
.cid-t3rKdK4uyp .icon4 {
  color: #272727;
}
.cid-t3rKdK4uyp .big {
  min-height: 100%;
}
.cid-t3rKdK4uyp .mbr-section-btn {
  max-width: 200px;
}
.cid-t3rKdK4uyp .mbr-section-btn .btn {
  margin: 2px;
}
@media (max-width: 992px) {
  .cid-t3rKdK4uyp .mbr-section-btn {
    text-align: center;
    max-width: 100%;
    margin: auto;
  }
}
.cid-t3rKdK4uyp .card1 {
  background: #101112;
  background-image: url("../../../assets/images/imagen2-2000x1445.png");
  background-size: cover;
  background-position: center;
  padding: 6rem;
}
.cid-t3rKdK4uyp .card1 .mbr-iconfont {
  font-size: 16.5rem;
}
@media (max-width: 767px) {
  .cid-t3rKdK4uyp .card1 {
    padding: 3rem 1rem;
  }
}
.cid-t3rKdK4uyp .card-box {
  z-index: 2;
}
.cid-t3rKdK4uyp .card2 {
  background-image: url("../../../assets/images/photo-2023-07-09-12-53-6-1080x1080.jpg");
  background-size: auto 110%;
  position: relative;
  background-position: center;
}
.cid-t3rKdK4uyp .card2 .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  margin: auto;
  margin-bottom: 0rem;
}
.cid-t3rKdK4uyp .card2:before {
  content: '';
  position: absolute;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #101112;
  z-index: 1;
  opacity: 1;
}
.cid-t3rKdK4uyp .card2:hover {
  background-size: auto 115%;
}
.cid-t3rKdK4uyp .card2:hover:before {
  opacity: 0.3;
}
.cid-t3rKdK4uyp .card3 {
  background-image: url("../../../assets/images/background1.jpg");
  background-size: auto 110%;
  position: relative;
  background-position: center;
}
.cid-t3rKdK4uyp .card3 .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  margin: auto;
  margin-bottom: 0rem;
}
.cid-t3rKdK4uyp .card3:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  transition: all 0.3s;
  z-index: 1;
  opacity: 1;
}
.cid-t3rKdK4uyp .card3:hover {
  background-size: auto 115%;
}
.cid-t3rKdK4uyp .card3:hover:before {
  opacity: 0.3;
}
.cid-t3rKdK4uyp .card4 {
  background-image: url("../../../assets/images/photo-2023-07-09-12-53-6-1080x1080.jpg");
  background-size: auto 110%;
  position: relative;
  background-position: center;
}
.cid-t3rKdK4uyp .card4:hover {
  background-size: auto 115%;
}
.cid-t3rKdK4uyp .card4:hover:before {
  opacity: 0;
}
.cid-t3rKdK4uyp .card4 .mbr-iconfont {
  background: #8e0606;
  border-radius: 50%;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: auto;
  margin-bottom: 1rem;
}
.cid-t3rKdK4uyp .card-title,
.cid-t3rKdK4uyp .card-box {
  color: #ffffff;
}
.cid-t3rKdK4uyp .card2-title {
  color: #ffffff;
}
.cid-t3rKdK4uyp .card3-title {
  color: #ffffff;
}
.cid-t3rKdK4uyp .card4-title {
  color: #ffffff;
}
.cid-t3rKdK4uyp .card1-title {
  color: #ffffff;
  text-align: left;
}
.cid-t3rKdK4uyp .card2-text {
  color: #ffffff;
}
.cid-t3rKdK4uyp .card4-text {
  color: #ffffff;
}
.cid-tJxx5ZZJvL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9f9;
}
.cid-tJxx5ZZJvL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJxx5ZZJvL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tJxx5ZZJvL .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-tJxx5ZZJvL .container {
    padding: 0 12px;
  }
}
.cid-tJxx5ZZJvL .title-wrapper .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-tJxx5ZZJvL .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-tJxx5ZZJvL .title-wrapper .mbr-section-title span {
  padding: 6px 12px;
  background-color: #8e0606;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-tJxx5ZZJvL .title-wrapper .mbr-section-title span {
    padding: 0 10px;
    border-radius: 8px;
  }
}
.cid-tJxx5ZZJvL .title-wrapper .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-tJxx5ZZJvL .title-wrapper .mbr-text {
    margin-bottom: 24px;
  }
}
@media (max-width: 992px) {
  .cid-tJxx5ZZJvL .title-wrapper .mbr-section-btn {
    margin-bottom: 40px;
  }
}
.cid-tJxx5ZZJvL .title-wrapper .tags-wrapper {
  margin-bottom: 24px;
}
.cid-tJxx5ZZJvL .title-wrapper .tags-wrapper .tags-wrap {
  display: inline-block;
}
.cid-tJxx5ZZJvL .title-wrapper .tags-wrapper .tags-wrap .tag-item {
  display: inline-flex;
  align-items: center;
  margin-right: 40px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.cid-tJxx5ZZJvL .title-wrapper .tags-wrapper .tags-wrap .tag-item .mbr-iconfont {
  font-size: 44px;
  margin-right: 8px;
  color: #222222;
}
.cid-tJxx5ZZJvL .title-wrapper .tags-wrapper .tags-wrap .tag-item .mbr-tag {
  margin-bottom: 0;
}
.cid-tJxx5ZZJvL .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.cid-tJxx5ZZJvL .image-wrapper img {
  width: 420px;
  height: 420px;
  border-radius: 100%;
  border: 3px solid #222222;
  box-shadow: 4px 4px #222222;
  background-color: #222222;
  object-fit: cover;
}
@media (max-width: 1300px) {
  .cid-tJxx5ZZJvL .image-wrapper img {
    width: 350px;
    height: 350px;
  }
}
@media (max-width: 1200px) {
  .cid-tJxx5ZZJvL .image-wrapper img {
    width: 310px;
    height: 310px;
  }
}
@media (max-width: 768px) {
  .cid-tJxx5ZZJvL .image-wrapper img {
    width: 280px;
    height: 280px;
  }
}
.cid-tJxx5ZZJvL .mbr-section-title {
  color: #222222;
}
.cid-tJxx5ZZJvL .mbr-text {
  color: #353535;
}
.cid-tJxx5ZZJvL .mbr-tag {
  color: #222222;
}
.cid-tJxx5ZZJvL .mbr-section-title,
.cid-tJxx5ZZJvL .mbr-section-btn {
  color: #000000;
}
.cid-tJyGKHwToH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #101112;
}
.cid-tJyGKHwToH .image-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-tJyGKHwToH .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tJyGKHwToH .card-wrapper {
  padding: 3rem;
  padding-bottom: 1rem;
  background: #000000;
  position: relative;
  margin-bottom: 2rem;
}
.cid-tJyGKHwToH .card-wrapper .mbr-iconfont {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.4);
}
@media (max-width: 767px) {
  .cid-tJyGKHwToH .card-wrapper {
    padding: 1.5rem;
    padding-bottom: 0;
  }
}
.cid-tJyGKHwToH .primary {
  background: #8e0606;
}
.cid-tJyGKHwToH .primary .mbr-iconfont {
  color: #ffffff;
}
.cid-tJyGKHwToH .mbr-text {
  color: #bbbbbb;
}
.cid-tJyGKHwToH .name {
  color: #ffffff;
}
.cid-tJyGKHwToH .position {
  color: #bbbbbb;
}
.cid-tJyGKHwToH .mbr-section-title {
  color: #ffffff;
}
.cid-tJyGKHwToH .mbr-primarytext {
  color: #ffffff;
}
.cid-tJyGKHwToH .primary-name {
  color: #ffffff;
}
.cid-tJyGKHwToH .primary-position {
  color: #000000;
}
.cid-tJx7vqAQ6z {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-tJx7vqAQ6z .row-gallery {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  justify-content: space-between;
}
.cid-tJx7vqAQ6z .item-wrapper {
  margin: 15px 5px;
  position: relative;
  padding: 0;
}
.cid-tJx7vqAQ6z .item-wrapper img {
  height: 200px;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.cid-tJx7vqAQ6z .item-wrapper:hover {
  cursor: pointer;
}
.cid-tJx7vqAQ6z .item-wrapper:hover:before {
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  background-color: #8e0606;
  opacity: 0.5;
  border-radius: 10px;
  pointer-events: none;
}
.cid-tJx7vqAQ6z .mbr-section-title {
  margin-bottom: 35px;
}
.cid-tJx7vqAQ6z .block__inner {
  margin: 15px 0;
  padding: 30px 70px;
  border-radius: 10px;
  border: 2px solid #ebeaed;
}
.cid-tJx7vqAQ6z .mbr-text {
  margin-bottom: 4px;
}
.cid-tJx7vqAQ6z .icons-menu {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tJx7vqAQ6z .soc-item {
  line-height: 30px;
  margin-left: 15px;
  margin-right: 15px;
}
.cid-tJx7vqAQ6z .soc-item .mbr-iconfont {
  color: #2f1893;
  font-size: 20px;
  height: 20px;
  width: 20px;
}
@media (max-width: 991px) {
  .cid-tJx7vqAQ6z .block__inner {
    padding: 30px;
  }
}
@media (max-width: 575px) {
  .cid-tJx7vqAQ6z .item-wrapper {
    display: inline-flex;
    box-sizing: border-box;
  }
  .cid-tJx7vqAQ6z .item-wrapper img {
    width: 100%;
    height: 100%;
  }
}
.cid-tJx7vqAQ6z .modal-body a.close {
  border-radius: 0;
  font-size: 16px;
  top: 0;
  right: 0;
  height: 36px;
  width: 36px;
  line-height: 36px;
  position: fixed;
  opacity: .5;
  color: #fff;
  border: none;
  text-align: center;
  z-index: 5;
  transition: opacity .3s ease;
  font-family: 'MobiriseIcons';
}
.cid-tJx7vqAQ6z .modal-body a.close::before {
  content: '\e91a';
}
.cid-tJx7vqAQ6z .modal-body a.close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tJx7vqAQ6z .carousel-control,
.cid-tJx7vqAQ6z .close {
  background: #1b1b1b;
}
.cid-tJx7vqAQ6z .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tJx7vqAQ6z .carousel-control-prev .mbri-left:before {
  content: "\e90a";
}
.cid-tJx7vqAQ6z .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tJx7vqAQ6z .carousel-control-next .mbri-right:before {
  content: "\e909";
}
.cid-tJx7vqAQ6z .carousel-control {
  position: fixed;
  width: 40px;
  height: 40px;
  top: 50%;
  margin-top: -35px;
  line-height: 40px;
  border-radius: 50%;
  font-size: 26px;
  border: 0;
  opacity: .5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  transition: all 0.22s ease 0s;
}
.cid-tJx7vqAQ6z .carousel-inner > .active {
  display: block;
}
.cid-tJx7vqAQ6z .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tJx7vqAQ6z .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tJx7vqAQ6z .carousel-control .icon-next,
.cid-tJx7vqAQ6z .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 26px;
  line-height: 27px;
}
.cid-tJx7vqAQ6z .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tJx7vqAQ6z .carousel-control,
  .cid-tJx7vqAQ6z .carousel-indicators,
  .cid-tJx7vqAQ6z .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tJx7vqAQ6z .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tJx7vqAQ6z .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tJx7vqAQ6z .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-tJx7vqAQ6z .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tJx7vqAQ6z .carousel-indicators {
    display: none;
  }
}
.cid-tJx7vqAQ6z .carousel-indicators .active,
.cid-tJx7vqAQ6z .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: .5;
  border: 4px solid #1b1b1b;
}
.cid-tJx7vqAQ6z .carousel-indicators .active {
  background: #fff;
}
.cid-tJx7vqAQ6z .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tJx7vqAQ6z .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tJx7vqAQ6z .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tJx7vqAQ6z .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tJx7vqAQ6z .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tJx7vqAQ6z .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(98.25vh);
}
.cid-tJx7vqAQ6z .carousel {
  width: 100%;
}
.cid-tJx7vqAQ6z .modal-dialog .carousel-inner {
  height: auto;
}
.cid-tJx7vqAQ6z .modal-backdrop.in {
  opacity: .8;
}
.cid-tJx7vqAQ6z .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tJx7vqAQ6z .modal.fade .modal-dialog,
.cid-tJx7vqAQ6z .modal.in .modal-dialog {
  transform: none;
}
.cid-tJx7vqAQ6z .span__text {
  color: #919dab;
}
.cid-tJx7vqAQ6z .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJx7vqAQ6z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJxyDTNcS3 {
  background-color: #ffffff;
}
.cid-tJxyDTNcS3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJxyDTNcS3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJxyDTNcS3 .row {
  justify-content: center;
}
.cid-tJxyDTNcS3 .mbr-form {
  padding: 40px 45px;
}
@media (max-width: 992px) {
  .cid-tJxyDTNcS3 .mbr-form {
    padding: 32px 24px;
  }
}
.cid-tJxyDTNcS3 .mbr-form .dragArea.row .mbr-section-title {
  margin-bottom: 11px;
}
.cid-tJxyDTNcS3 .mbr-form .dragArea.row .mbr-text {
  margin-bottom: 22px;
}
.cid-tJxyDTNcS3 .mbr-form .dragArea.row .form-group {
  margin-bottom: 25px !important;
}
.cid-tJxyDTNcS3 .mbr-form .dragArea.row .form-group .form-control-label {
  width: 100%;
  padding: 0 10px 5px 0;
  margin: 0;
}
.cid-tJxyDTNcS3 .mbr-form .dragArea.row .form-group .form-control {
  padding: 0 20px;
  background-color: #f3f3f3;
  min-height: 60px;
  border-radius: 100px;
  box-shadow: none;
  border: none !important;
}
.cid-tJxyDTNcS3 .mbr-form .dragArea.row .form-group .form-control::placeholder {
  color: #6e716f;
}
.cid-tJxyDTNcS3 .mbr-form .dragArea.row .form-group .form-control:hover,
.cid-tJxyDTNcS3 .mbr-form .dragArea.row .form-group .form-control:focus {
  border: none !important;
}
.cid-tJxyDTNcS3 .mbr-form .dragArea.row .form-group .form-check {
  padding-left: 1.9em;
  margin: 0;
}
.cid-tJxyDTNcS3 .mbr-form .dragArea.row .form-group .form-check .form-check-input {
  border-radius: 0;
  border: 2px solid #6e716f;
  background-color: transparent;
}
.cid-tJxyDTNcS3 .mbr-form .dragArea.row .form-group .form-check .form-check-label {
  width: 100%;
  padding-top: 4px;
}
.cid-tJxyDTNcS3 .mbr-form .dragArea.row .form-group textarea {
  padding: 10px 20px 0;
}
.cid-tJxyDTNcS3 .mbr-form .dragArea.row .mbr-section-btn {
  width: 100% !important;
}
.cid-tJxyDTNcS3 .mbr-form .dragArea.row .mbr-section-btn .btn {
  min-height: 54px;
}
.cid-tJxyDTNcS3 .mbr-section-title {
  color: #101511;
  text-align: center;
}
.cid-tJxyDTNcS3 .mbr-text {
  color: #6e716f;
  text-align: center;
}
.cid-tJxyDTNcS3 LABEL {
  color: #101511;
}
.cid-tJK1t0bYPq {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #101112;
}
.cid-tJK1t0bYPq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJK1t0bYPq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJK1t0bYPq .navbar-brand-box {
  width: 100%;
}
.cid-tJK1t0bYPq .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tJK1t0bYPq .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tJK1t0bYPq .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tJK1t0bYPq .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tJK1t0bYPq .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
  color: #8e0606 !important;
}
.cid-tJK1t0bYPq .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tJK1t0bYPq .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tJK1t0bYPq .col-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 60px 0 100px;
}
@media (max-width: 991px) {
  .cid-tJK1t0bYPq .col-links {
    margin: 90px 0 30px;
    flex-wrap: wrap;
  }
}
@media (max-width: 575px) {
  .cid-tJK1t0bYPq .col-links {
    margin: 50px 0 16px;
  }
}
.cid-tJK1t0bYPq .list-box {
  width: 100%;
  max-width: 65%;
}
@media (max-width: 991px) {
  .cid-tJK1t0bYPq .list-box {
    max-width: 100%;
  }
}
.cid-tJK1t0bYPq .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-tJK1t0bYPq .list li {
  color: inherit !important;
  margin-right: 30px;
  transition: 0.4s all;
  opacity: 0.4;
}
@media (max-width: 991px) {
  .cid-tJK1t0bYPq .list li {
    width: 50%;
    margin: 10px 0;
  }
}
@media (max-width: 575px) {
  .cid-tJK1t0bYPq .list li {
    width: 100%;
    margin-right: 0;
  }
}
.cid-tJK1t0bYPq .list li:hover {
  opacity: 1;
}
.cid-tJK1t0bYPq .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tJK1t0bYPq .list a:hover {
  color: #8e0606 !important;
  line-height: inherit !important;
}
.cid-tJK1t0bYPq .social-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  max-width: 30%;
}
@media (max-width: 991px) {
  .cid-tJK1t0bYPq .social-list {
    max-width: 100%;
    width: 100%;
    justify-content: flex-start;
    margin-top: 70px;
  }
}
@media (max-width: 575px) {
  .cid-tJK1t0bYPq .social-list {
    margin-top: 40px;
  }
}
.cid-tJK1t0bYPq .soc-item-title {
  margin-right: 20px;
}
@media (max-width: 575px) {
  .cid-tJK1t0bYPq .soc-item-title {
    margin-right: 10px;
  }
}
.cid-tJK1t0bYPq .soc-title {
  color: #FFFFFF;
  opacity: 0.5;
  margin-bottom: 0;
}
.cid-tJK1t0bYPq .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0;
  padding: 20px;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tJK1t0bYPq .soc-item {
    padding: 10px;
  }
}
.cid-tJK1t0bYPq .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 24px;
  color: #ffffff;
}
.cid-tJK1t0bYPq .soc-item:hover .mbr-iconfont {
  color: #8e0606 !important;
}
.cid-tJK1t0bYPq .border-item {
  width: 100%;
  height: 1px;
  background-color: #e43f3f;
  opacity: 0.2;
}
.cid-tJK1t0bYPq .copyright {
  color: #FFFFFF;
  opacity: 0.5;
  padding: 50px 0;
}
@media (max-width: 991px) {
  .cid-tJK1t0bYPq .copyright {
    padding: 2rem 0;
  }
}
.cid-t3rRNorvnO .mbr-iconfont {
  display: block;
  font-size: 4rem;
}
.cid-t3rRNorvnO .card-wrapper {
  transition: all 0.3s;
  padding: 3rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 992px) {
  .cid-t3rRNorvnO .card-wrapper {
    padding: 3rem 2rem;
  }
}
.cid-t3rRNorvnO .card-wrapper:hover .icon2,
.cid-t3rRNorvnO .card-wrapper:hover .icon3 {
  animation: icon;
  animation-duration: 0.3s;
}
.cid-t3rRNorvnO .text-wrapper {
  display: flex;
}
@keyframes icon {
  from {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}
.cid-t3rRNorvnO img {
  height: 100%;
  width: 100%;
  transition: all 0.3s;
  object-fit: cover;
}
.cid-t3rRNorvnO img:hover {
  transform: scale(1.05);
}
.cid-t3rRNorvnO .icon1 {
  color: #ffffff;
}
.cid-t3rRNorvnO .icon2 {
  color: #ffffff;
}
.cid-t3rRNorvnO .big {
  height: 100%;
  min-height: 420px;
  overflow: hidden;
}
.cid-t3rRNorvnO .card1 {
  background-image: url("../../../assets/images/background1.jpg");
  background-size: cover;
  background-position: center;
  padding: 6rem;
  padding-top: 15rem;
}
.cid-t3rRNorvnO .card1 .mbr-iconfont {
  font-size: 5rem;
}
@media (max-width: 1400px) {
  .cid-t3rRNorvnO .card1 {
    padding: 3rem 1rem;
  }
}
@media (max-width: 992px) {
  .cid-t3rRNorvnO .card1 {
    padding: 6rem;
  }
}
@media (max-width: 767px) {
  .cid-t3rRNorvnO .card1 {
    padding: 3rem 1rem;
  }
}
.cid-t3rRNorvnO .social {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.5rem;
}
.cid-t3rRNorvnO .social .mbr-iconfont {
  padding-right: 0.6rem;
  color: #8e0606;
  font-size: 1.2rem;
}
.cid-t3rRNorvnO .card-box {
  z-index: 2;
}
.cid-t3rRNorvnO .card2 {
  background: #101112;
}
.cid-t3rRNorvnO .card2-title {
  color: #ffffff;
}
.cid-t3rRNorvnO .card3-title {
  color: #ffffff;
}
.cid-t3rRNorvnO .card1-title {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-t3rRNorvnO .card1-title {
    text-align: center;
  }
}
.cid-t3rRNorvnO .card1-text {
  color: #ffffff;
}
.cid-t3rRNorvnO .soc-link,
.cid-t3rRNorvnO .soc-wrapper {
  color: #ffffff;
}
.cid-tJzyMSOPpe {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #fafafa;
}
@media (min-width: 1400px) {
  .cid-tJzyMSOPpe .container {
    max-width: 1200px;
  }
}
.cid-tJzyMSOPpe .row {
  justify-content: space-between;
}
.cid-tJzyMSOPpe .text-wrapper {
  border-left: 4px solid #8e0606;
  padding-left: 2rem;
}
.cid-tJzyMSOPpe .mbr-main-subtitle {
  background: #8e0606;
  width: fit-content;
  padding: 0.6rem 1rem;
  position: relative;
  color: #000000;
}
.cid-tJzyMSOPpe .mbr-main-subtitle:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -18px;
  border-left: 24px solid #8e0606;
  border-bottom: 18px solid transparent;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-tJzyMSOPpe .mbr-main-subtitle {
    margin: auto;
    margin-bottom: 2rem;
  }
}
.cid-tJzyMSOPpe .image-wrap {
  overflow: hidden;
}
.cid-tJzyMSOPpe .card-wrap .mbr-main-subtitle:before {
  content: none;
}
.cid-tJzyMSOPpe .card-wrap:hover img {
  transform: scale(1.05);
}
@media (max-width: 991px) {
  .cid-tJzyMSOPpe .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-tJzyMSOPpe .card-wrap .image-wrap img {
  width: 100%;
  transition: all 0.3s;
  object-fit: cover;
}
.cid-tJzyMSOPpe .card-text,
.cid-tJzyMSOPpe .mbr-section-btn,
.cid-tJzyMSOPpe .social-row {
  color: #353535;
}
.cid-tJzyMSOPpe .card1-text {
  color: #353535;
}
.cid-tJzyMSOPpe .card-title,
.cid-tJzyMSOPpe .social-row {
  color: #000000;
}
.cid-tJzyMSOPpe .mbr-section-title {
  color: #000000;
}
.cid-t3rRQ8D3xs {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t3rRQ8D3xs .mbr-media {
  position: relative;
}
.cid-t3rRQ8D3xs .mbr-media img {
  width: 100%;
  object-fit: cover;
  height: 800px;
}
@media (max-width: 767px) {
  .cid-t3rRQ8D3xs .mbr-media img {
    height: 400px;
  }
}
.cid-t3rRQ8D3xs .text {
  padding: 1rem;
  position: absolute;
  bottom: 4rem;
  left: 10rem;
}
@media (max-width: 992px) {
  .cid-t3rRQ8D3xs .text {
    width: 100%;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
  }
}
.cid-t3rRQ8D3xs .container-fluid {
  padding: 0;
}
.cid-t3rRQ8D3xs .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  transition: all 0.3s;
}
.cid-t3rRQ8D3xs .icon-wrap:hover {
  transform: translate(-50%, -50%) scale(1.08);
}
@media (max-width: 767px) {
  .cid-t3rRQ8D3xs .icon-wrap {
    top: 25%;
  }
}
.cid-t3rRQ8D3xs .mbr-media span {
  font-size: 2.5rem;
  transition: all 0.2s;
  background: white;
  border-radius: 50%;
  padding: 1.5rem;
  color: black;
}
.cid-t3rRQ8D3xs .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-t3rRQ8D3xs .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-t3rRQ8D3xs .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-t3rRQ8D3xs .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-t3rRQ8D3xs .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-t3rRQ8D3xs .mbr-text,
.cid-t3rRQ8D3xs .mbr-section-btn {
  color: #ffffff;
}
.cid-tJzzpLv84l {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #fafafa;
}
@media (min-width: 1400px) {
  .cid-tJzzpLv84l .container {
    max-width: 1200px;
  }
}
.cid-tJzzpLv84l .row {
  justify-content: space-between;
}
.cid-tJzzpLv84l .text-wrapper {
  border-left: 4px solid #8e0606;
  padding-left: 2rem;
}
.cid-tJzzpLv84l .mbr-main-subtitle {
  background: #8e0606;
  width: fit-content;
  padding: 0.6rem 1rem;
  position: relative;
  color: #000000;
}
.cid-tJzzpLv84l .mbr-main-subtitle:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -18px;
  border-left: 24px solid #8e0606;
  border-bottom: 18px solid transparent;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-tJzzpLv84l .mbr-main-subtitle {
    margin: auto;
    margin-bottom: 2rem;
  }
}
.cid-tJzzpLv84l .image-wrap {
  overflow: hidden;
}
.cid-tJzzpLv84l .card-wrap .mbr-main-subtitle:before {
  content: none;
}
.cid-tJzzpLv84l .card-wrap:hover img {
  transform: scale(1.05);
}
@media (max-width: 991px) {
  .cid-tJzzpLv84l .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-tJzzpLv84l .card-wrap .image-wrap img {
  width: 100%;
  transition: all 0.3s;
  object-fit: cover;
}
.cid-tJzzpLv84l .card-text,
.cid-tJzzpLv84l .mbr-section-btn,
.cid-tJzzpLv84l .social-row {
  color: #353535;
}
.cid-tJzzpLv84l .card1-text {
  color: #353535;
}
.cid-tJzzpLv84l .card-title,
.cid-tJzzpLv84l .social-row {
  color: #000000;
}
.cid-tJzzpLv84l .mbr-section-title {
  color: #000000;
}
.cid-tJJW0hehYm {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tJJW0hehYm .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-tJJW0hehYm .iconfont-wrapper {
  overflow: hidden;
  color: #000000 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-tJJW0hehYm .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-tJJW0hehYm .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-tJJW0hehYm .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #8e0606;
  z-index: -1;
}
.cid-tJJW0hehYm nav.navbar {
  position: fixed;
}
.cid-tJJW0hehYm .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-tJJW0hehYm .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-tJJW0hehYm .nav-item {
    border: 0;
  }
}
.cid-tJJW0hehYm .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tJJW0hehYm .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-tJJW0hehYm .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-tJJW0hehYm .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-tJJW0hehYm .title-wrap:hover span {
  color: white;
}
.cid-tJJW0hehYm .title-wrap:hover:before {
  height: 100%;
}
.cid-tJJW0hehYm .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-tJJW0hehYm .dropdown-menu {
  padding: 0;
  border-top: 4px solid #8e0606;
}
.cid-tJJW0hehYm .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tJJW0hehYm .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tJJW0hehYm .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-tJJW0hehYm .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-tJJW0hehYm .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tJJW0hehYm .nav-link {
  position: relative;
}
.cid-tJJW0hehYm .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tJJW0hehYm .container {
    flex-wrap: nowrap;
  }
}
.cid-tJJW0hehYm .dropdown-menu,
.cid-tJJW0hehYm .navbar.opened {
  background: #ffffff !important;
}
.cid-tJJW0hehYm .nav-item:focus,
.cid-tJJW0hehYm .nav-link:focus {
  outline: none;
}
.cid-tJJW0hehYm .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tJJW0hehYm .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tJJW0hehYm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tJJW0hehYm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tJJW0hehYm .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tJJW0hehYm .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tJJW0hehYm .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-tJJW0hehYm .navbar.opened {
  transition: all 0.3s;
}
.cid-tJJW0hehYm .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tJJW0hehYm .navbar .navbar-logo img {
  width: auto;
}
.cid-tJJW0hehYm .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tJJW0hehYm .navbar.collapsed {
  justify-content: center;
}
.cid-tJJW0hehYm .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tJJW0hehYm .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tJJW0hehYm .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tJJW0hehYm .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tJJW0hehYm .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tJJW0hehYm .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-tJJW0hehYm .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tJJW0hehYm .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tJJW0hehYm .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tJJW0hehYm .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tJJW0hehYm .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tJJW0hehYm .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tJJW0hehYm .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tJJW0hehYm .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-tJJW0hehYm .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tJJW0hehYm .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tJJW0hehYm .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tJJW0hehYm .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tJJW0hehYm .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tJJW0hehYm .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tJJW0hehYm .navbar.navbar-short {
  min-height: 60px;
}
.cid-tJJW0hehYm .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tJJW0hehYm .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tJJW0hehYm .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tJJW0hehYm .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tJJW0hehYm .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tJJW0hehYm .dropdown-item.active,
.cid-tJJW0hehYm .dropdown-item:active {
  background-color: transparent;
}
.cid-tJJW0hehYm .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tJJW0hehYm .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tJJW0hehYm .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tJJW0hehYm .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tJJW0hehYm .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tJJW0hehYm .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tJJW0hehYm ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tJJW0hehYm .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tJJW0hehYm button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tJJW0hehYm button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tJJW0hehYm button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tJJW0hehYm button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tJJW0hehYm button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tJJW0hehYm button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tJJW0hehYm nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tJJW0hehYm nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tJJW0hehYm nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tJJW0hehYm nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tJJW0hehYm .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tJJW0hehYm a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tJJW0hehYm .navbar {
    height: 70px;
  }
  .cid-tJJW0hehYm .navbar.opened {
    height: auto;
  }
  .cid-tJJW0hehYm .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tJJW0hehYm .navbar-caption-wrap,
.cid-tJJW0hehYm .title-wrap {
  color: #272727;
}
.cid-tJK1t0bYPq {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #101112;
}
.cid-tJK1t0bYPq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJK1t0bYPq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJK1t0bYPq .navbar-brand-box {
  width: 100%;
}
.cid-tJK1t0bYPq .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tJK1t0bYPq .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tJK1t0bYPq .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tJK1t0bYPq .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tJK1t0bYPq .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
  color: #8e0606 !important;
}
.cid-tJK1t0bYPq .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tJK1t0bYPq .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tJK1t0bYPq .col-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 60px 0 100px;
}
@media (max-width: 991px) {
  .cid-tJK1t0bYPq .col-links {
    margin: 90px 0 30px;
    flex-wrap: wrap;
  }
}
@media (max-width: 575px) {
  .cid-tJK1t0bYPq .col-links {
    margin: 50px 0 16px;
  }
}
.cid-tJK1t0bYPq .list-box {
  width: 100%;
  max-width: 65%;
}
@media (max-width: 991px) {
  .cid-tJK1t0bYPq .list-box {
    max-width: 100%;
  }
}
.cid-tJK1t0bYPq .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-tJK1t0bYPq .list li {
  color: inherit !important;
  margin-right: 30px;
  transition: 0.4s all;
  opacity: 0.4;
}
@media (max-width: 991px) {
  .cid-tJK1t0bYPq .list li {
    width: 50%;
    margin: 10px 0;
  }
}
@media (max-width: 575px) {
  .cid-tJK1t0bYPq .list li {
    width: 100%;
    margin-right: 0;
  }
}
.cid-tJK1t0bYPq .list li:hover {
  opacity: 1;
}
.cid-tJK1t0bYPq .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tJK1t0bYPq .list a:hover {
  color: #8e0606 !important;
  line-height: inherit !important;
}
.cid-tJK1t0bYPq .social-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  max-width: 30%;
}
@media (max-width: 991px) {
  .cid-tJK1t0bYPq .social-list {
    max-width: 100%;
    width: 100%;
    justify-content: flex-start;
    margin-top: 70px;
  }
}
@media (max-width: 575px) {
  .cid-tJK1t0bYPq .social-list {
    margin-top: 40px;
  }
}
.cid-tJK1t0bYPq .soc-item-title {
  margin-right: 20px;
}
@media (max-width: 575px) {
  .cid-tJK1t0bYPq .soc-item-title {
    margin-right: 10px;
  }
}
.cid-tJK1t0bYPq .soc-title {
  color: #FFFFFF;
  opacity: 0.5;
  margin-bottom: 0;
}
.cid-tJK1t0bYPq .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0;
  padding: 20px;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tJK1t0bYPq .soc-item {
    padding: 10px;
  }
}
.cid-tJK1t0bYPq .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 24px;
  color: #ffffff;
}
.cid-tJK1t0bYPq .soc-item:hover .mbr-iconfont {
  color: #8e0606 !important;
}
.cid-tJK1t0bYPq .border-item {
  width: 100%;
  height: 1px;
  background-color: #e43f3f;
  opacity: 0.2;
}
.cid-tJK1t0bYPq .copyright {
  color: #FFFFFF;
  opacity: 0.5;
  padding: 50px 0;
}
@media (max-width: 991px) {
  .cid-tJK1t0bYPq .copyright {
    padding: 2rem 0;
  }
}
.cid-tJIlV3F1XT {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tJIlV3F1XT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJIlV3F1XT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-tJIlV3F1XT .row {
    padding: 0 24px;
  }
}
.cid-tJIlV3F1XT .items {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-tJIlV3F1XT .items {
    flex-direction: column;
  }
}
.cid-tJIlV3F1XT .items img {
  max-width: 330px;
  min-width: 100px;
  height: 405px;
  object-fit: cover;
  border-radius: 20px;
  margin-right: -3rem;
}
@media (max-width: 768px) {
  .cid-tJIlV3F1XT .items img {
    margin: 0 !important;
  }
}
.cid-tJIlV3F1XT .items img:nth-child(2) {
  height: 330px;
  margin-top: -12rem;
}
.cid-tJIlV3F1XT .items img:nth-child(3) {
  height: 290px;
}
.cid-tJIlV3F1XT .items img:nth-child(4) {
  height: 440px;
  margin-left: -6rem;
}
.cid-tJIlV3F1XT .items img:nth-child(5) {
  height: 430px;
  margin-top: -9rem;
}
.cid-tJIncfywM9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tJIncfywM9 .mbr-gallery-filter {
  text-align: left;
}
.cid-tJIncfywM9 .mbr-gallery-filter ul {
  position: relative;
}
@media (min-width: 768px) {
  .cid-tJIncfywM9 .mbr-gallery-filter ul {
    margin: 5px 0 60px;
    padding-left: 190px;
  }
  .cid-tJIncfywM9 .mbr-gallery-filter ul:before {
    content: "";
    width: 150px;
    height: 2px;
    position: absolute;
    top: 20px;
    left: 0;
    background: #8e0606;
  }
}
.cid-tJIncfywM9 .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-tJIncfywM9 .mbr-gallery-filter ul li a.btn {
  border: none !important;
  margin: 0;
  font-size: 24px;
  min-width: auto !important;
  background: transparent !important;
  box-shadow: none;
}
@media (max-width: 767px) {
  .cid-tJIncfywM9 .mbr-gallery-filter ul li a.btn {
    margin-right: 35px;
  }
}
.cid-tJIncfywM9 .mbr-gallery-filter ul li a.btn:before {
  background: transparent !important;
}
.cid-tJIncfywM9 .mbr-gallery-filter ul li a.btn:hover {
  background-color: transparent !important;
  color: #8e0606 !important;
}
.cid-tJIncfywM9 .mbr-gallery-filter ul li.active .btn {
  background-color: transparent !important;
  color: #8e0606 !important;
}
.cid-tJIncfywM9 .mbr-gallery-item > div {
  overflow: hidden;
}
.cid-tJIncfywM9 .mbr-gallery-item > div img {
  height: 420px;
  width: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.cid-tJIncfywM9 .mbr-gallery-item > div .icon-focus {
  top: auto;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 30px !important;
  transition: all 0.3s ease-in-out;
  font-family: "Moririse2" !important;
}
.cid-tJIncfywM9 .mbr-gallery-item > div .icon-focus:before {
  content: "\e99b";
}
.cid-tJIncfywM9 .mbr-gallery-item > div .icon-video {
  transform: translateY(50%);
  top: 55%;
}
.cid-tJIncfywM9 .mbr-gallery-item > div:after {
  content: "";
  position: absolute;
  top: 30px;
  right: 30px;
  bottom: 30px;
  left: 30px;
  opacity: 0;
  border: 1px solid #fff;
  z-index: 2;
  transition: 0.5s opacity ease-in-out;
}
.cid-tJIncfywM9 .mbr-slider .carousel-control {
  background: #1b1b1b;
  border-radius: 0;
}
.cid-tJIncfywM9 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tJIncfywM9 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tJIncfywM9 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tJIncfywM9 .mbr-gallery-item > div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #862222;
  opacity: 0;
  z-index: 2;
  -webkit-transition: 0.3s opacity ease-in-out;
  transition: 0.3s opacity ease-in-out;
}
.cid-tJIncfywM9 .mbr-gallery-item > div > span {
  color: #ffffff;
}
.cid-tJIncfywM9 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tJIncfywM9 .mbr-gallery-item > div:hover:after {
  opacity: 1;
}
.cid-tJIncfywM9 .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tJIncfywM9 .mbr-gallery-item > div:hover img {
  transform: scale3d(1.1, 1.1, 1);
}
.cid-tJIncfywM9 .mbr-gallery-item > div:hover .icon-focus {
  bottom: 33%;
  bottom: 50%;
}
.cid-tJIncfywM9 .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
  opacity: 1;
  position: absolute;
  width: 100%;
  bottom: 40%;
  padding: 35px;
  font-weight: 500;
  text-align: center;
  z-index: 5;
  transition: bottom 0.3s ease-in-out;
}
.cid-tJIncfywM9 .mbr-gallery-item > div:hover .mbr-gallery-title:before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: transparent;
  transition: 0.3s background ease-in-out;
}
.cid-tJIncfywM9 .mbr-gallery-title {
  opacity: 0;
  left: 0;
  bottom: 0;
  position: absolute;
}
.cid-tJIncfywM9 .modal-body .close {
  top: 0;
  right: 0;
  border-radius: 0;
  font-size: 16px;
  line-height: 40px;
  width: 40px;
  height: 40px;
}
.cid-tJJW0hehYm {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tJJW0hehYm .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-tJJW0hehYm .iconfont-wrapper {
  overflow: hidden;
  color: #000000 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-tJJW0hehYm .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-tJJW0hehYm .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-tJJW0hehYm .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #8e0606;
  z-index: -1;
}
.cid-tJJW0hehYm nav.navbar {
  position: fixed;
}
.cid-tJJW0hehYm .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-tJJW0hehYm .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-tJJW0hehYm .nav-item {
    border: 0;
  }
}
.cid-tJJW0hehYm .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tJJW0hehYm .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-tJJW0hehYm .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-tJJW0hehYm .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-tJJW0hehYm .title-wrap:hover span {
  color: white;
}
.cid-tJJW0hehYm .title-wrap:hover:before {
  height: 100%;
}
.cid-tJJW0hehYm .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-tJJW0hehYm .dropdown-menu {
  padding: 0;
  border-top: 4px solid #8e0606;
}
.cid-tJJW0hehYm .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tJJW0hehYm .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tJJW0hehYm .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-tJJW0hehYm .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-tJJW0hehYm .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tJJW0hehYm .nav-link {
  position: relative;
}
.cid-tJJW0hehYm .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tJJW0hehYm .container {
    flex-wrap: nowrap;
  }
}
.cid-tJJW0hehYm .dropdown-menu,
.cid-tJJW0hehYm .navbar.opened {
  background: #ffffff !important;
}
.cid-tJJW0hehYm .nav-item:focus,
.cid-tJJW0hehYm .nav-link:focus {
  outline: none;
}
.cid-tJJW0hehYm .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tJJW0hehYm .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tJJW0hehYm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tJJW0hehYm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tJJW0hehYm .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tJJW0hehYm .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tJJW0hehYm .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-tJJW0hehYm .navbar.opened {
  transition: all 0.3s;
}
.cid-tJJW0hehYm .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tJJW0hehYm .navbar .navbar-logo img {
  width: auto;
}
.cid-tJJW0hehYm .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tJJW0hehYm .navbar.collapsed {
  justify-content: center;
}
.cid-tJJW0hehYm .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tJJW0hehYm .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tJJW0hehYm .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tJJW0hehYm .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tJJW0hehYm .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tJJW0hehYm .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-tJJW0hehYm .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tJJW0hehYm .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tJJW0hehYm .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tJJW0hehYm .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tJJW0hehYm .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tJJW0hehYm .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tJJW0hehYm .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tJJW0hehYm .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-tJJW0hehYm .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tJJW0hehYm .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tJJW0hehYm .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tJJW0hehYm .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tJJW0hehYm .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tJJW0hehYm .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tJJW0hehYm .navbar.navbar-short {
  min-height: 60px;
}
.cid-tJJW0hehYm .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tJJW0hehYm .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tJJW0hehYm .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tJJW0hehYm .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tJJW0hehYm .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tJJW0hehYm .dropdown-item.active,
.cid-tJJW0hehYm .dropdown-item:active {
  background-color: transparent;
}
.cid-tJJW0hehYm .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tJJW0hehYm .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tJJW0hehYm .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tJJW0hehYm .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tJJW0hehYm .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tJJW0hehYm .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tJJW0hehYm ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tJJW0hehYm .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tJJW0hehYm button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tJJW0hehYm button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tJJW0hehYm button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tJJW0hehYm button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tJJW0hehYm button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tJJW0hehYm button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tJJW0hehYm nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tJJW0hehYm nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tJJW0hehYm nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tJJW0hehYm nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tJJW0hehYm .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tJJW0hehYm a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tJJW0hehYm .navbar {
    height: 70px;
  }
  .cid-tJJW0hehYm .navbar.opened {
    height: auto;
  }
  .cid-tJJW0hehYm .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tJJW0hehYm .navbar-caption-wrap,
.cid-tJJW0hehYm .title-wrap {
  color: #272727;
}
.cid-tJK1t0bYPq {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #101112;
}
.cid-tJK1t0bYPq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJK1t0bYPq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJK1t0bYPq .navbar-brand-box {
  width: 100%;
}
.cid-tJK1t0bYPq .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tJK1t0bYPq .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tJK1t0bYPq .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tJK1t0bYPq .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tJK1t0bYPq .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
  color: #8e0606 !important;
}
.cid-tJK1t0bYPq .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tJK1t0bYPq .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tJK1t0bYPq .col-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 60px 0 100px;
}
@media (max-width: 991px) {
  .cid-tJK1t0bYPq .col-links {
    margin: 90px 0 30px;
    flex-wrap: wrap;
  }
}
@media (max-width: 575px) {
  .cid-tJK1t0bYPq .col-links {
    margin: 50px 0 16px;
  }
}
.cid-tJK1t0bYPq .list-box {
  width: 100%;
  max-width: 65%;
}
@media (max-width: 991px) {
  .cid-tJK1t0bYPq .list-box {
    max-width: 100%;
  }
}
.cid-tJK1t0bYPq .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-tJK1t0bYPq .list li {
  color: inherit !important;
  margin-right: 30px;
  transition: 0.4s all;
  opacity: 0.4;
}
@media (max-width: 991px) {
  .cid-tJK1t0bYPq .list li {
    width: 50%;
    margin: 10px 0;
  }
}
@media (max-width: 575px) {
  .cid-tJK1t0bYPq .list li {
    width: 100%;
    margin-right: 0;
  }
}
.cid-tJK1t0bYPq .list li:hover {
  opacity: 1;
}
.cid-tJK1t0bYPq .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tJK1t0bYPq .list a:hover {
  color: #8e0606 !important;
  line-height: inherit !important;
}
.cid-tJK1t0bYPq .social-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  max-width: 30%;
}
@media (max-width: 991px) {
  .cid-tJK1t0bYPq .social-list {
    max-width: 100%;
    width: 100%;
    justify-content: flex-start;
    margin-top: 70px;
  }
}
@media (max-width: 575px) {
  .cid-tJK1t0bYPq .social-list {
    margin-top: 40px;
  }
}
.cid-tJK1t0bYPq .soc-item-title {
  margin-right: 20px;
}
@media (max-width: 575px) {
  .cid-tJK1t0bYPq .soc-item-title {
    margin-right: 10px;
  }
}
.cid-tJK1t0bYPq .soc-title {
  color: #FFFFFF;
  opacity: 0.5;
  margin-bottom: 0;
}
.cid-tJK1t0bYPq .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0;
  padding: 20px;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tJK1t0bYPq .soc-item {
    padding: 10px;
  }
}
.cid-tJK1t0bYPq .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 24px;
  color: #ffffff;
}
.cid-tJK1t0bYPq .soc-item:hover .mbr-iconfont {
  color: #8e0606 !important;
}
.cid-tJK1t0bYPq .border-item {
  width: 100%;
  height: 1px;
  background-color: #e43f3f;
  opacity: 0.2;
}
.cid-tJK1t0bYPq .copyright {
  color: #FFFFFF;
  opacity: 0.5;
  padding: 50px 0;
}
@media (max-width: 991px) {
  .cid-tJK1t0bYPq .copyright {
    padding: 2rem 0;
  }
}
.cid-tJJHu6taS4 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #fafafa;
}
@media (min-width: 1400px) {
  .cid-tJJHu6taS4 .container {
    max-width: 1200px;
  }
}
.cid-tJJHu6taS4 .row {
  justify-content: space-between;
}
.cid-tJJHu6taS4 .text-wrapper {
  border-left: 4px solid #8e0606;
  padding-left: 2rem;
}
.cid-tJJHu6taS4 .mbr-main-subtitle {
  background: #8e0606;
  width: fit-content;
  padding: 0.6rem 1rem;
  position: relative;
  color: #000000;
}
.cid-tJJHu6taS4 .mbr-main-subtitle:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -18px;
  border-left: 24px solid #8e0606;
  border-bottom: 18px solid transparent;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-tJJHu6taS4 .mbr-main-subtitle {
    margin: auto;
    margin-bottom: 2rem;
  }
}
.cid-tJJHu6taS4 .image-wrap {
  overflow: hidden;
}
.cid-tJJHu6taS4 .card-wrap .mbr-main-subtitle:before {
  content: none;
}
.cid-tJJHu6taS4 .card-wrap:hover img {
  transform: scale(1.05);
}
@media (max-width: 991px) {
  .cid-tJJHu6taS4 .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-tJJHu6taS4 .card-wrap .image-wrap img {
  width: 100%;
  transition: all 0.3s;
  object-fit: cover;
}
.cid-tJJHu6taS4 .card-text,
.cid-tJJHu6taS4 .mbr-section-btn,
.cid-tJJHu6taS4 .social-row {
  color: #353535;
}
.cid-tJJHu6taS4 .card1-text {
  color: #353535;
}
.cid-tJJHu6taS4 .card-title,
.cid-tJJHu6taS4 .social-row {
  color: #000000;
}
.cid-tJJHu6taS4 .mbr-section-title {
  color: #000000;
}
.cid-tJJW0hehYm {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tJJW0hehYm .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-tJJW0hehYm .iconfont-wrapper {
  overflow: hidden;
  color: #000000 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-tJJW0hehYm .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-tJJW0hehYm .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-tJJW0hehYm .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #8e0606;
  z-index: -1;
}
.cid-tJJW0hehYm nav.navbar {
  position: fixed;
}
.cid-tJJW0hehYm .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-tJJW0hehYm .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-tJJW0hehYm .nav-item {
    border: 0;
  }
}
.cid-tJJW0hehYm .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tJJW0hehYm .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-tJJW0hehYm .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-tJJW0hehYm .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-tJJW0hehYm .title-wrap:hover span {
  color: white;
}
.cid-tJJW0hehYm .title-wrap:hover:before {
  height: 100%;
}
.cid-tJJW0hehYm .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-tJJW0hehYm .dropdown-menu {
  padding: 0;
  border-top: 4px solid #8e0606;
}
.cid-tJJW0hehYm .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tJJW0hehYm .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tJJW0hehYm .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-tJJW0hehYm .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-tJJW0hehYm .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tJJW0hehYm .nav-link {
  position: relative;
}
.cid-tJJW0hehYm .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tJJW0hehYm .container {
    flex-wrap: nowrap;
  }
}
.cid-tJJW0hehYm .dropdown-menu,
.cid-tJJW0hehYm .navbar.opened {
  background: #ffffff !important;
}
.cid-tJJW0hehYm .nav-item:focus,
.cid-tJJW0hehYm .nav-link:focus {
  outline: none;
}
.cid-tJJW0hehYm .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tJJW0hehYm .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tJJW0hehYm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tJJW0hehYm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tJJW0hehYm .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tJJW0hehYm .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tJJW0hehYm .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-tJJW0hehYm .navbar.opened {
  transition: all 0.3s;
}
.cid-tJJW0hehYm .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tJJW0hehYm .navbar .navbar-logo img {
  width: auto;
}
.cid-tJJW0hehYm .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tJJW0hehYm .navbar.collapsed {
  justify-content: center;
}
.cid-tJJW0hehYm .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tJJW0hehYm .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tJJW0hehYm .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tJJW0hehYm .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tJJW0hehYm .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tJJW0hehYm .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-tJJW0hehYm .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tJJW0hehYm .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tJJW0hehYm .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tJJW0hehYm .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tJJW0hehYm .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tJJW0hehYm .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tJJW0hehYm .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tJJW0hehYm .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-tJJW0hehYm .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tJJW0hehYm .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tJJW0hehYm .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tJJW0hehYm .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tJJW0hehYm .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tJJW0hehYm .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tJJW0hehYm .navbar.navbar-short {
  min-height: 60px;
}
.cid-tJJW0hehYm .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tJJW0hehYm .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tJJW0hehYm .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tJJW0hehYm .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tJJW0hehYm .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tJJW0hehYm .dropdown-item.active,
.cid-tJJW0hehYm .dropdown-item:active {
  background-color: transparent;
}
.cid-tJJW0hehYm .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tJJW0hehYm .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tJJW0hehYm .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tJJW0hehYm .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tJJW0hehYm .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tJJW0hehYm .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tJJW0hehYm ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tJJW0hehYm .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tJJW0hehYm button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tJJW0hehYm button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tJJW0hehYm button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tJJW0hehYm button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tJJW0hehYm button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tJJW0hehYm button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tJJW0hehYm nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tJJW0hehYm nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tJJW0hehYm nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tJJW0hehYm nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tJJW0hehYm .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tJJW0hehYm a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tJJW0hehYm .navbar {
    height: 70px;
  }
  .cid-tJJW0hehYm .navbar.opened {
    height: auto;
  }
  .cid-tJJW0hehYm .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tJJW0hehYm .navbar-caption-wrap,
.cid-tJJW0hehYm .title-wrap {
  color: #272727;
}
.cid-tJK1t0bYPq {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #101112;
}
.cid-tJK1t0bYPq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJK1t0bYPq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJK1t0bYPq .navbar-brand-box {
  width: 100%;
}
.cid-tJK1t0bYPq .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tJK1t0bYPq .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tJK1t0bYPq .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tJK1t0bYPq .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tJK1t0bYPq .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
  color: #8e0606 !important;
}
.cid-tJK1t0bYPq .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tJK1t0bYPq .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tJK1t0bYPq .col-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 60px 0 100px;
}
@media (max-width: 991px) {
  .cid-tJK1t0bYPq .col-links {
    margin: 90px 0 30px;
    flex-wrap: wrap;
  }
}
@media (max-width: 575px) {
  .cid-tJK1t0bYPq .col-links {
    margin: 50px 0 16px;
  }
}
.cid-tJK1t0bYPq .list-box {
  width: 100%;
  max-width: 65%;
}
@media (max-width: 991px) {
  .cid-tJK1t0bYPq .list-box {
    max-width: 100%;
  }
}
.cid-tJK1t0bYPq .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-tJK1t0bYPq .list li {
  color: inherit !important;
  margin-right: 30px;
  transition: 0.4s all;
  opacity: 0.4;
}
@media (max-width: 991px) {
  .cid-tJK1t0bYPq .list li {
    width: 50%;
    margin: 10px 0;
  }
}
@media (max-width: 575px) {
  .cid-tJK1t0bYPq .list li {
    width: 100%;
    margin-right: 0;
  }
}
.cid-tJK1t0bYPq .list li:hover {
  opacity: 1;
}
.cid-tJK1t0bYPq .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tJK1t0bYPq .list a:hover {
  color: #8e0606 !important;
  line-height: inherit !important;
}
.cid-tJK1t0bYPq .social-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  max-width: 30%;
}
@media (max-width: 991px) {
  .cid-tJK1t0bYPq .social-list {
    max-width: 100%;
    width: 100%;
    justify-content: flex-start;
    margin-top: 70px;
  }
}
@media (max-width: 575px) {
  .cid-tJK1t0bYPq .social-list {
    margin-top: 40px;
  }
}
.cid-tJK1t0bYPq .soc-item-title {
  margin-right: 20px;
}
@media (max-width: 575px) {
  .cid-tJK1t0bYPq .soc-item-title {
    margin-right: 10px;
  }
}
.cid-tJK1t0bYPq .soc-title {
  color: #FFFFFF;
  opacity: 0.5;
  margin-bottom: 0;
}
.cid-tJK1t0bYPq .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0;
  padding: 20px;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tJK1t0bYPq .soc-item {
    padding: 10px;
  }
}
.cid-tJK1t0bYPq .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 24px;
  color: #ffffff;
}
.cid-tJK1t0bYPq .soc-item:hover .mbr-iconfont {
  color: #8e0606 !important;
}
.cid-tJK1t0bYPq .border-item {
  width: 100%;
  height: 1px;
  background-color: #e43f3f;
  opacity: 0.2;
}
.cid-tJK1t0bYPq .copyright {
  color: #FFFFFF;
  opacity: 0.5;
  padding: 50px 0;
}
@media (max-width: 991px) {
  .cid-tJK1t0bYPq .copyright {
    padding: 2rem 0;
  }
}
.cid-tJJIPVRnVT .main-card {
  background-image: url("../../../assets/images/features5.jpg");
  background-size: auto 110%;
  position: relative;
  background-position: center;
  align-items: center;
  display: flex;
}
.cid-tJJIPVRnVT .mbr-main-subtitle {
  background: #8e0606;
  width: fit-content;
  padding: 0.4rem 0.8rem;
  position: relative;
  margin-bottom: 2rem;
  color: #ffffff;
}
.cid-tJJIPVRnVT .mbr-main-subtitle:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -18px;
  border-left: 24px solid #8e0606;
  border-bottom: 18px solid transparent;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-tJJIPVRnVT .mbr-main-subtitle {
    margin: auto;
    margin-bottom: 2rem;
  }
}
.cid-tJJIPVRnVT .card {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  height: 400px;
}
.cid-tJJIPVRnVT .card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s;
  pointer-events: none;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  z-index: 1;
}
.cid-tJJIPVRnVT .card:hover:before {
  opacity: 0.5;
}
.cid-tJJIPVRnVT .card:hover img {
  transform: scale(1.1);
}
.cid-tJJIPVRnVT .card:hover .card-box {
  opacity: 1;
  transform: translateY(0px);
}
@media (max-width: 767px) {
  .cid-tJJIPVRnVT .card:before {
    opacity: 0.5;
  }
  .cid-tJJIPVRnVT .card .card-box {
    opacity: 1;
    transform: translateY(0px);
  }
}
.cid-tJJIPVRnVT .card img {
  transition: all 0.3s;
  height: 100%;
  object-fit: cover;
}
.cid-tJJIPVRnVT .content {
  max-width: 450px;
  margin: auto;
  padding: 4rem 2rem;
}
@media (max-width: 992px) {
  .cid-tJJIPVRnVT .content {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-tJJIPVRnVT .content {
    padding: 4rem 1rem;
  }
}
.cid-tJJIPVRnVT .social {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.5rem;
}
.cid-tJJIPVRnVT .social .mbr-iconfont {
  padding-right: 0.6rem;
  color: #8e0606;
  font-size: 1.2rem;
}
.cid-tJJIPVRnVT .card-box {
  opacity: 0;
  transition: all 0.3s;
  padding: 1rem;
  transform: translateY(15px);
}
.cid-tJJIPVRnVT .card-wrapper {
  position: absolute;
  cursor: pointer;
  left: 50%;
  top: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  margin: auto;
  overflow: hidden;
  z-index: 2;
}
.cid-tJJIPVRnVT .card-title {
  color: #ffffff;
  text-align: center;
}
.cid-tJJIPVRnVT .card1-text {
  color: #ffffff;
  text-align: center;
}
.cid-tJJIPVRnVT .mbr-section-subtitle,
.cid-tJJIPVRnVT .main-btn {
  color: #ffffff;
}
.cid-tJJIPVRnVT .soc-link,
.cid-tJJIPVRnVT .soc-wrapper {
  color: #ffffff;
}
.cid-tJJIPVRnVT .mbr-section-title {
  color: #ffffff;
}
.cid-tJJIK295gS {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
@media (min-width: 1400px) {
  .cid-tJJIK295gS .container {
    max-width: 1000px;
  }
}
.cid-tJJIK295gS .item-img,
.cid-tJJIK295gS img {
  height: 100%;
  object-fit: cover;
}
.cid-tJJIK295gS .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #000000;
  margin-bottom: 1rem;
  background: #8e0606;
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
.cid-tJJIK295gS .card-wrapper {
  margin-bottom: 2rem;
}
.cid-tJJIK295gS .row {
  justify-content: center;
}
.cid-tJJIK295gS .card-text {
  color: #353535;
}
.cid-tJJIK295gS .card-title,
.cid-tJJIK295gS .iconfont-wrapper {
  color: #272727;
}
.cid-tJJW0hehYm {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tJJW0hehYm .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-tJJW0hehYm .iconfont-wrapper {
  overflow: hidden;
  color: #000000 !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-tJJW0hehYm .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-tJJW0hehYm .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-tJJW0hehYm .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #8e0606;
  z-index: -1;
}
.cid-tJJW0hehYm nav.navbar {
  position: fixed;
}
.cid-tJJW0hehYm .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-tJJW0hehYm .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-tJJW0hehYm .nav-item {
    border: 0;
  }
}
.cid-tJJW0hehYm .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tJJW0hehYm .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-tJJW0hehYm .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-tJJW0hehYm .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-tJJW0hehYm .title-wrap:hover span {
  color: white;
}
.cid-tJJW0hehYm .title-wrap:hover:before {
  height: 100%;
}
.cid-tJJW0hehYm .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-tJJW0hehYm .dropdown-menu {
  padding: 0;
  border-top: 4px solid #8e0606;
}
.cid-tJJW0hehYm .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tJJW0hehYm .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tJJW0hehYm .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-tJJW0hehYm .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-tJJW0hehYm .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tJJW0hehYm .nav-link {
  position: relative;
}
.cid-tJJW0hehYm .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tJJW0hehYm .container {
    flex-wrap: nowrap;
  }
}
.cid-tJJW0hehYm .dropdown-menu,
.cid-tJJW0hehYm .navbar.opened {
  background: #ffffff !important;
}
.cid-tJJW0hehYm .nav-item:focus,
.cid-tJJW0hehYm .nav-link:focus {
  outline: none;
}
.cid-tJJW0hehYm .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tJJW0hehYm .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tJJW0hehYm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tJJW0hehYm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tJJW0hehYm .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tJJW0hehYm .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tJJW0hehYm .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-tJJW0hehYm .navbar.opened {
  transition: all 0.3s;
}
.cid-tJJW0hehYm .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tJJW0hehYm .navbar .navbar-logo img {
  width: auto;
}
.cid-tJJW0hehYm .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tJJW0hehYm .navbar.collapsed {
  justify-content: center;
}
.cid-tJJW0hehYm .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tJJW0hehYm .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tJJW0hehYm .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tJJW0hehYm .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tJJW0hehYm .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tJJW0hehYm .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-tJJW0hehYm .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tJJW0hehYm .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tJJW0hehYm .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tJJW0hehYm .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tJJW0hehYm .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tJJW0hehYm .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tJJW0hehYm .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tJJW0hehYm .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-tJJW0hehYm .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tJJW0hehYm .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tJJW0hehYm .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tJJW0hehYm .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tJJW0hehYm .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tJJW0hehYm .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tJJW0hehYm .navbar.navbar-short {
  min-height: 60px;
}
.cid-tJJW0hehYm .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tJJW0hehYm .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tJJW0hehYm .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tJJW0hehYm .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tJJW0hehYm .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tJJW0hehYm .dropdown-item.active,
.cid-tJJW0hehYm .dropdown-item:active {
  background-color: transparent;
}
.cid-tJJW0hehYm .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tJJW0hehYm .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tJJW0hehYm .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tJJW0hehYm .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tJJW0hehYm .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tJJW0hehYm .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tJJW0hehYm ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tJJW0hehYm .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tJJW0hehYm button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tJJW0hehYm button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tJJW0hehYm button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tJJW0hehYm button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tJJW0hehYm button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tJJW0hehYm button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tJJW0hehYm nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tJJW0hehYm nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tJJW0hehYm nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tJJW0hehYm nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tJJW0hehYm .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tJJW0hehYm a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tJJW0hehYm .navbar {
    height: 70px;
  }
  .cid-tJJW0hehYm .navbar.opened {
    height: auto;
  }
  .cid-tJJW0hehYm .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tJJW0hehYm .navbar-caption-wrap,
.cid-tJJW0hehYm .title-wrap {
  color: #272727;
}
.cid-tJK1t0bYPq {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #101112;
}
.cid-tJK1t0bYPq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJK1t0bYPq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJK1t0bYPq .navbar-brand-box {
  width: 100%;
}
.cid-tJK1t0bYPq .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tJK1t0bYPq .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tJK1t0bYPq .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tJK1t0bYPq .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tJK1t0bYPq .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
  color: #8e0606 !important;
}
.cid-tJK1t0bYPq .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tJK1t0bYPq .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tJK1t0bYPq .col-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 60px 0 100px;
}
@media (max-width: 991px) {
  .cid-tJK1t0bYPq .col-links {
    margin: 90px 0 30px;
    flex-wrap: wrap;
  }
}
@media (max-width: 575px) {
  .cid-tJK1t0bYPq .col-links {
    margin: 50px 0 16px;
  }
}
.cid-tJK1t0bYPq .list-box {
  width: 100%;
  max-width: 65%;
}
@media (max-width: 991px) {
  .cid-tJK1t0bYPq .list-box {
    max-width: 100%;
  }
}
.cid-tJK1t0bYPq .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  transition: 0.4s all;
}
.cid-tJK1t0bYPq .list li {
  color: inherit !important;
  margin-right: 30px;
  transition: 0.4s all;
  opacity: 0.4;
}
@media (max-width: 991px) {
  .cid-tJK1t0bYPq .list li {
    width: 50%;
    margin: 10px 0;
  }
}
@media (max-width: 575px) {
  .cid-tJK1t0bYPq .list li {
    width: 100%;
    margin-right: 0;
  }
}
.cid-tJK1t0bYPq .list li:hover {
  opacity: 1;
}
.cid-tJK1t0bYPq .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tJK1t0bYPq .list a:hover {
  color: #8e0606 !important;
  line-height: inherit !important;
}
.cid-tJK1t0bYPq .social-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  max-width: 30%;
}
@media (max-width: 991px) {
  .cid-tJK1t0bYPq .social-list {
    max-width: 100%;
    width: 100%;
    justify-content: flex-start;
    margin-top: 70px;
  }
}
@media (max-width: 575px) {
  .cid-tJK1t0bYPq .social-list {
    margin-top: 40px;
  }
}
.cid-tJK1t0bYPq .soc-item-title {
  margin-right: 20px;
}
@media (max-width: 575px) {
  .cid-tJK1t0bYPq .soc-item-title {
    margin-right: 10px;
  }
}
.cid-tJK1t0bYPq .soc-title {
  color: #FFFFFF;
  opacity: 0.5;
  margin-bottom: 0;
}
.cid-tJK1t0bYPq .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0;
  padding: 20px;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tJK1t0bYPq .soc-item {
    padding: 10px;
  }
}
.cid-tJK1t0bYPq .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 24px;
  color: #ffffff;
}
.cid-tJK1t0bYPq .soc-item:hover .mbr-iconfont {
  color: #8e0606 !important;
}
.cid-tJK1t0bYPq .border-item {
  width: 100%;
  height: 1px;
  background-color: #e43f3f;
  opacity: 0.2;
}
.cid-tJK1t0bYPq .copyright {
  color: #FFFFFF;
  opacity: 0.5;
  padding: 50px 0;
}
@media (max-width: 991px) {
  .cid-tJK1t0bYPq .copyright {
    padding: 2rem 0;
  }
}
