body {
  font-family: Roboto;
}
.display-1 {
  font-family: 'Barlow', sans-serif;
  font-size: 6rem;
  line-height: 1;
}
.display-1 > .mbr-iconfont {
  font-size: 9.6rem;
}
.display-2 {
  font-family: 'Barlow', sans-serif;
  font-size: 3.8rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 5.32rem;
}
.display-4 {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
}
.display-4 > .mbr-iconfont {
  font-size: 1.2rem;
}
.display-5 {
  font-family: 'Permanent Marker', handwriting;
  font-size: 1.6rem;
  line-height: 1.4;
}
.display-5 > .mbr-iconfont {
  font-size: 1.92rem;
}
.display-7 {
  font-family: 'Barlow', sans-serif;
  font-size: 1.6rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.92rem;
}
/* ---- 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: 768px) {
  .display-1 {
    font-size: 4.8rem;
    font-size: calc( 2.75rem + (6 - 2.75) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1 * (2.75rem + (6 - 2.75) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 3.04rem;
    font-size: calc( 1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.8 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn-success:hover {
  background: #29361a !important;
  border-color: #29361a !important;
}
.btn-secondary {
  color: black!important;
}
.btn-secondary:hover,
.btn-secondary:active {
  color: black!important;
  background: #f9ad05 !important;
  border-color: #f9ad05 !important;
}
.btn-primary {
  color: white!important;
}
.btn-primary:hover {
  background: #fbbe36 !important;
  border-color: #fbbe36 !important;
}
.btn-info {
  color: white!important;
}
.btn-success:hover {
  background: #29361a !important;
  border-color: #29361a !important;
}
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 2.6rem;
  border-radius: 6px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 6px;
}
.bg-primary {
  background-color: #e7272d !important;
}
.bg-success {
  background-color: #89b758 !important;
}
.bg-info {
  background-color: #29361a !important;
}
.bg-warning {
  background-color: #808080 !important;
}
.bg-danger {
  background-color: #b1a374 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #e7272d !important;
  border-color: #e7272d !important;
  color: #ffffff;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff;
  background-color: #e7272d;
  border-color: #e7272d;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff;
  background-color: #e7272d !important;
  border-color: #e7272d !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #fbbe36 !important;
  border-color: #fbbe36 !important;
  color: #ffffff;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff;
  background-color: #fbbe36;
  border-color: #fbbe36;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff;
  background-color: #fbbe36 !important;
  border-color: #fbbe36 !important;
}
.btn-info,
.btn-info:active {
  background-color: #29361a !important;
  border-color: #29361a !important;
  color: #ffffff;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff;
  background-color: #29361a;
  border-color: #29361a;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff;
  background-color: #29361a !important;
  border-color: #29361a !important;
}
.btn-success,
.btn-success:active {
  background-color: #89b758 !important;
  border-color: #89b758 !important;
  color: #ffffff;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff;
  background-color: #89b758;
  border-color: #89b758;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff;
  background-color: #89b758 !important;
  border-color: #89b758 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #808080 !important;
  border-color: #808080 !important;
  color: #ffffff;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff;
  background-color: #808080;
  border-color: #808080;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff;
  background-color: #808080 !important;
  border-color: #808080 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
  color: #ffffff;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff;
  background-color: #b1a374;
  border-color: #b1a374;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff;
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #971115;
  color: #971115;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #e7272d;
  border-color: #e7272d;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #e7272d !important;
  border-color: #e7272d !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #c78b04;
  color: #c78b04;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #fbbe36;
  border-color: #fbbe36;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #fbbe36 !important;
  border-color: #fbbe36 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #29361a;
  border-color: #29361a;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #29361a !important;
  border-color: #29361a !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #567633;
  color: #567633;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff;
  background-color: #89b758;
  border-color: #89b758;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #89b758 !important;
  border-color: #89b758 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #4d4d4d;
  color: #4d4d4d;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #808080;
  border-color: #808080;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #808080 !important;
  border-color: #808080 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #7a6e45;
  color: #7a6e45;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #b1a374;
  border-color: #b1a374;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #e7272d !important;
}
.text-secondary {
  color: #fbbe36 !important;
}
.text-success {
  color: #89b758 !important;
}
.text-info {
  color: #29361a !important;
}
.text-warning {
  color: #808080 !important;
}
.text-danger {
  color: #b1a374 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #f18386 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #fdde9a !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #bbd69f !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #5d7b3b !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #b3b3b3 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #d6ceb5 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #ffffff !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #29361a;
}
.alert-warning {
  background-color: #808080;
}
.alert-danger {
  background-color: #b1a374;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #e7272d;
  border-color: #e7272d;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #e7272d;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fbdfe0;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #c8ddb1;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #9dbe78;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #c0c0c0;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #dfd9c6;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Barlow', sans-serif;
  font-size: 1.6rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.92rem;
}
blockquote {
  border-color: #e7272d;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.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: #e7272d;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: gray !important;
  border-bottom-color: gray !important;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #e7272d;
  border-bottom-color: #e7272d;
}
.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: #e7272d !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #fbbe36 !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='%23e7272d' %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-tKwALI4Y5f {
  padding-top: 15px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/mbr-1920x638.jpg");
}
.cid-tKwALI4Y5f .mbr-overlay {
  background-color: #ffffff;
  opacity: 0;
}
.cid-tKwALI4Y5f .form-group {
  margin-bottom: 30px;
}
.cid-tKwALI4Y5f input,
.cid-tKwALI4Y5f textarea {
  border-radius: 0;
  padding: 1.5rem !important;
}
.cid-tKwALI4Y5f input.form-control {
  min-height: 4.125rem;
}
.cid-tKwALI4Y5f .form-group {
  position: relative;
  z-index: 1;
}
.cid-tKwALI4Y5f .form-group:after {
  display: block;
  content: '';
  position: absolute;
  bottom: -5px;
  left: 5px;
  height: 5px;
  width: 0px;
  background-color: #fbbe36;
  transition: width 0.5s ease-in;
  z-index: 2;
}
.cid-tKwALI4Y5f .form-group:focus-within:after {
  width: calc(100% - 10px);
}
.cid-tKwALI4Y5f .form-control,
.cid-tKwALI4Y5f .field-input {
  padding: 0.5rem;
  background-color: #f8f8f8;
  border-color: #4479d9;
  color: #000000;
  font-size: 1.6rem;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tKwALI4Y5f .form-control:focus,
.cid-tKwALI4Y5f .field-input:focus {
  background-color: #ffffff;
  border-color: #4479d9;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tKwALI4Y5f input::-webkit-input-placeholder,
.cid-tKwALI4Y5f textarea::-webkit-input-placeholder {
  color: #999999;
}
.cid-tKwALI4Y5f input:-moz-placeholder,
.cid-tKwALI4Y5f textarea:-moz-placeholder {
  color: #999999;
}
.cid-tKwALI4Y5f .jq-selectbox li,
.cid-tKwALI4Y5f .jq-selectbox li {
  background-color: #f8f8f8;
  color: #000000;
}
.cid-tKwALI4Y5f .jq-selectbox li:hover,
.cid-tKwALI4Y5f .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-tKwALI4Y5f .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #f8f8f8;
}
.cid-tKwALI4Y5f .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-tKwALI4Y5f img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tKwALI4Y5f .mbr-form {
  max-width: 990px;
}
.cid-tKwALI4Y5f textarea {
  min-height: 150px;
  resize: none;
}
.cid-tKwALI4Y5f .mbr-form .btn {
  width: auto;
  justify-content: space-between;
}
.cid-tKwALI4Y5f .mbr-form .btn .mbr-iconfont {
  order: 2;
  font-size: 1.5rem;
}
.cid-st2GxbNqTI {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-st2GxbNqTI H2 {
  color: #e7272d;
}
.cid-st2GxbNqTI .mbr-text,
.cid-st2GxbNqTI .mbr-section-btn {
  color: #808080;
}
.cid-st2GxbNqTI img {
  max-width: 500px;
  margin: auto;
}
.cid-sIWxPPrylW {
  padding-top: 45px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-1920x1276.jpg");
}
.cid-sIWxPPrylW .mbr-section-subtitle {
  color: #767676;
}
.cid-sIWxPPrylW .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sIWxPPrylW .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sIWxPPrylW .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sIWxPPrylW .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sIWxPPrylW .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fbbe36;
  background: linear-gradient(180deg, #fbbe36, #ca4336);
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sIWxPPrylW .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-sIWxPPrylW .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sIWxPPrylW .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-sIWxPPrylW .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sIWxPPrylW .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-sIWxPPrylW ul {
  font-size: 0;
}
.cid-sIWxPPrylW .mbr-gallery-filter ul {
  text-align: left;
}
.cid-sIWxPPrylW .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #e7272d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-sIWxPPrylW .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-sIWxPPrylW .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-sIWxPPrylW .mbr-gallery-filter ul li:first-child,
.cid-sIWxPPrylW .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-sIWxPPrylW .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-sIWxPPrylW .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-sIWxPPrylW .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-sIWxPPrylW .btn.active:after {
  animation: none;
}
.cid-sIWxPPrylW .btn:active {
  box-shadow: none !important;
}
.cid-sIWxPPrylW .btn:hover {
  background: transparent !important;
}
.cid-sIWxPPrylW .btn:hover:before {
  background: transparent !important;
}
.cid-sIWxPPrylW .btn:before {
  background-color: transparent !important;
}
.cid-sIWxPPrylW .btn:focus {
  box-shadow: none !important;
}
.cid-sIWxPPrylW .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-sIWxPPrylW .mbr-section-title,
.cid-sIWxPPrylW .mbr-gallery-filter ul DIV {
  text-align: left;
}
.cid-sIWxPPrylW .mbr-section-title,
.cid-sIWxPPrylW .mbr-gallery-filter ul {
  color: #efefef;
}
.cid-sIWGhbFS8V {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sIWGhbFS8V h3 {
  width: fit-content;
  display: inline-block;
  position: relative;
}
@keyframes shadow {
  from {
    box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.6);
  }
  to {
    box-shadow: 0px 0px 0px 25px rgba(255, 255, 255, 0);
  }
}
.cid-sIWGhbFS8V .box {
  background-image: url("../../../assets/images/mbr-1920x1080.jpg");
  background-size: cover;
  background-position: center;
  height: 600px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sIWGhbFS8V .icon-wrap {
  border-radius: 50%;
  margin: auto;
  background: #89b758;
  height: 90px;
  width: 90px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  animation: shadow 1s infinite ease-in-out;
}
.cid-sIWGhbFS8V .mbr-media span {
  font-size: 2rem;
  cursor: pointer;
  position: relative;
  height: auto;
  display: inline-block;
  padding-left: 6px;
  opacity: 1;
  transition: all 0.25s;
  color: #ffffff !important;
}
.cid-sIWGhbFS8V .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-sIWGhbFS8V .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sIWGhbFS8V .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sIWGhbFS8V .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sIWGhbFS8V a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-sIWGhbFS8V a.close:hover {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-sIWGhbFS8V .box {
    height: 250px;
  }
}
.cid-sIWGhbFS8V .mbr-section-subtitle,
.cid-sIWGhbFS8V .title-align {
  color: #89b758;
}
.cid-sIWGhbFS8V H1 {
  color: #0e0e0e;
}
.cid-tKwAq5yBED {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-1920x1920.png");
}
.cid-tKwAq5yBED .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
}
.cid-tKwAq5yBED .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-tKwAq5yBED .rev,
.cid-tKwAq5yBED .mbr-iconfont {
  display: inline-block;
}
.cid-tKwAq5yBED .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #0034e0;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-tKwAq5yBED .card-img {
  position: relative;
}
.cid-tKwAq5yBED .card:hover .image-btn {
  opacity: 1;
  bottom: 10px;
}
.cid-tKwAq5yBED .image-btn {
  transition: all 0.3s;
  opacity: 0;
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
}
.cid-tKwAq5yBED .card-title {
  color: #0087ab;
  margin: 0;
  text-align: center;
}
.cid-tKwAq5yBED .card-box {
  padding: 1.5rem;
}
.cid-tKwAq5yBED .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-tKwAq5yBED .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-tKwAq5yBED .mbr-section-title,
.cid-tKwAq5yBED .line-wrap {
  text-align: center;
  color: #ffffff;
}
.cid-tKwAq5yBED .card-text,
.cid-tKwAq5yBED .mbr-section-btn,
.cid-tKwAq5yBED .ico-line {
  text-align: left;
  color: #9e9e9e;
}
.cid-tKwAq5yBED .mbr-text,
.cid-tKwAq5yBED .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-tKwAq5yBED .image-btn {
    opacity: 1;
    bottom: 10px;
  }
}
.cid-sIWIFdFWO4 {
  padding-top: 75px;
  padding-bottom: 75px;
  position: relative;
  background-color: #ffffff;
}
.cid-sIWIFdFWO4 .accordion .card {
  overflow: hidden;
}
.cid-sIWIFdFWO4 .card {
  border-bottom: 1px solid #efefef !important;
  margin-bottom: 0.5rem;
  transition: all 0.3s;
  padding: 0.6rem 0.2rem;
}
.cid-sIWIFdFWO4 .card .card-header {
  padding: 0;
  background: transparent;
  margin-bottom: 0px;
  border: none;
}
.cid-sIWIFdFWO4 .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: 0px;
  line-height: normal;
}
.cid-sIWIFdFWO4 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-sIWIFdFWO4 .card .card-header a.panel-title h4 {
  padding: 0.6rem 1.2rem;
  margin-bottom: -1px;
  font-weight: 600;
  transition: all 0.3s;
}
.cid-sIWIFdFWO4 .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-sIWIFdFWO4 .card .card-header a.panel-title h4:hover {
  color: #89b758;
}
.cid-sIWIFdFWO4 .card .panel-body {
  color: #767676;
}
.cid-sIWIFdFWO4 .sign {
  font-family: 'Moririse2' !important;
  font-size: 1rem !important;
  margin-right: 1rem;
  padding: 11px;
  height: 39px;
  width: 39px;
  border-radius: 100%;
}
.cid-sIWIFdFWO4 .mbri-arrow-up {
  background: #89b758;
  color: white !important;
}
.cid-sIWIFdFWO4 .panel-title {
  display: flex !important;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}
.cid-sIWIFdFWO4 .mbri-arrow-down:before {
  content: '\e960';
}
.cid-sIWIFdFWO4 .panel-text {
  padding: 0rem;
  color: #383838;
}
.cid-sIWIFdFWO4 .panel-collapse {
  margin-top: -1px;
}
.cid-sIWIFdFWO4 H4 {
  color: #181818;
}
@media (max-width: 767px) {
  .cid-sIWIFdFWO4 .panel-text {
    padding: 0 0.5rem;
  }
  .cid-sIWIFdFWO4 .icon-left {
    margin-left: 0.5rem;
  }
  .cid-sIWIFdFWO4 .sign {
    margin-right: 0.5rem;
  }
  .cid-sIWIFdFWO4 .card .card-header a.panel-title h4 {
    padding: 0.4rem 0.4rem;
  }
}
.cid-sIWIFdFWO4 H3 {
  color: #89b758;
}
.cid-sIWWuxQyKq {
  padding-top: 45px;
  padding-bottom: 75px;
  background-color: #fafafa;
}
.cid-sIWWuxQyKq H2 {
  color: #89b758;
}
.cid-sIWWuxQyKq .mbr-text,
.cid-sIWWuxQyKq .mbr-section-btn {
  color: #808080;
}
.cid-sIWWuxQyKq .mbr-section-btn {
  margin-bottom: -5.2rem;
}
.cid-sIWWuxQyKq .center-card {
  background: white;
  padding: 3rem;
  box-shadow: 0 25px 50px 0 rgba(0, 0, 0, 0.08);
}
.cid-sIWWuxQyKq .mbr-figure {
  height: 100%;
}
.cid-sIWWuxQyKq .card-img {
  padding: 0 2rem;
}
.cid-sIWWuxQyKq img {
  height: 100%;
  object-fit: cover;
  width: 100%;
  box-shadow: 0 25px 50px 0 rgba(0, 0, 0, 0.08);
  border-radius: 6px;
}
.cid-sIWWuxQyKq H1 {
  color: #29361a;
}
@media (max-width: 992px) {
  .cid-sIWWuxQyKq .mbr-section-btn {
    margin-bottom: 0rem;
  }
  .cid-sIWWuxQyKq .card-img {
    padding: 0rem;
    padding-bottom: 2rem;
    max-height: 300px;
  }
  .cid-sIWWuxQyKq .container {
    padding: 0 3rem;
  }
  .cid-sIWWuxQyKq .center-card {
    margin-bottom: 2rem;
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sIWWuxQyKq .container {
    padding: 0 2rem;
  }
  .cid-sIWWuxQyKq .card-img {
    width: 100%;
  }
  .cid-sIWWuxQyKq .center-card {
    padding: 1rem;
  }
}
.cid-sIWVLc00av {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #149dcc;
}
.cid-t5Z74TYTPL {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-t5Z74TYTPL .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-t5Z74TYTPL .mbr-text {
  color: #767676;
}
.cid-t5Z74TYTPL .links {
  color: #000000;
}
@media (max-width: 767px) {
  .cid-t5Z74TYTPL .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-t5Z74TYTPL .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-t5Z74TYTPL .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-t5Z74TYTPL .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-t5Z74TYTPL .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-t5Z74TYTPL .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-t5Z74TYTPL .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-t5Z74TYTPL .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t5Z74TYTPL .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
