body {
  font-family: Inter;
}
.display-1 {
  font-family: 'Inter', sans-serif;
  font-size: 5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 6.25rem;
}
.display-2 {
  font-family: 'Inter', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5625rem;
}
/* ---- 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.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1rem;
    font-size: calc( 1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #b22b35 !important;
}
.bg-success {
  background-color: #522c67 !important;
}
.bg-info {
  background-color: #ffbf4f !important;
}
.bg-warning {
  background-color: #5ec049 !important;
}
.bg-danger {
  background-color: #338ba0 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #b22b35 !important;
  border-color: #b22b35 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #6c1a20 !important;
  border-color: #6c1a20 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #6c1a20 !important;
  border-color: #6c1a20 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #b22b35 !important;
  border-color: #b22b35 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #6c1a20 !important;
  border-color: #6c1a20 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #6c1a20 !important;
  border-color: #6c1a20 !important;
}
.btn-info,
.btn-info:active {
  background-color: #ffbf4f !important;
  border-color: #ffbf4f !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #f79d00 !important;
  border-color: #f79d00 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #f79d00 !important;
  border-color: #f79d00 !important;
}
.btn-success,
.btn-success:active {
  background-color: #522c67 !important;
  border-color: #522c67 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #22122a !important;
  border-color: #22122a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #22122a !important;
  border-color: #22122a !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #5ec049 !important;
  border-color: #5ec049 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #3d842e !important;
  border-color: #3d842e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #3d842e !important;
  border-color: #3d842e !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #338ba0 !important;
  border-color: #338ba0 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #1e525e !important;
  border-color: #1e525e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #1e525e !important;
  border-color: #1e525e !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #b22b35;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #6c1a20 !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: #b22b35 !important;
  border-color: #b22b35 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #b22b35;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #6c1a20 !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: #b22b35 !important;
  border-color: #b22b35 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffbf4f;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #f79d00 !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: #ffbf4f !important;
  border-color: #ffbf4f !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #522c67;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #22122a !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: #522c67 !important;
  border-color: #522c67 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #5ec049;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #3d842e !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: #5ec049 !important;
  border-color: #5ec049 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #338ba0;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #1e525e !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: #338ba0 !important;
  border-color: #338ba0 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: 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: #b22b35 !important;
}
.text-secondary {
  color: #b22b35 !important;
}
.text-success {
  color: #522c67 !important;
}
.text-info {
  color: #ffbf4f !important;
}
.text-warning {
  color: #5ec049 !important;
}
.text-danger {
  color: #338ba0 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #60171d !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #60171d !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #190d20 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #e89400 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #38792a !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #1a4853 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  /*  background-position: 0px 1.2em; */
}
.nav-tabs .nav-link.active {
  color: #b22b35;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ffbf4f;
}
.alert-warning {
  background-color: #5ec049;
}
.alert-danger {
  background-color: #338ba0;
}
.mbr-gallery-filter li.active .btn {
  background-color: #b22b35;
  border-color: #b22b35;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #b22b35;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #e07d84;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #975ab9;
}
.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: #b2e1a8;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #7dc4d6;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #b22b35 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #b22b35;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #b22b35;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #b22b35;
}
.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: #b22b35;
  border-bottom-color: #b22b35;
}
.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: #b22b35 !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: #b22b35 !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='%23b22b35' %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-tq7QI9557A {
  display: flex;
  align-items: center;
}
.cid-tq7QI9557A .mbr-fallback-image.disabled {
  display: none;
}
.cid-tq7QI9557A .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/mbr-1920x1275.jpg");
}
.cid-tq7QI9557A .row {
  justify-content: flex-start;
}
.cid-tq7QI9557A .mbr-section-title {
  color: #FEF9EE;
}
.cid-tq7QI9557A .mbr-section-subtitle {
  color: #FEF9EE;
}
.cid-tq7QI9557A .mbr-text {
  color: #FEF9EE;
}
.cid-tq7T6GYh9e {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f9f7f7;
}
.cid-tq7T6GYh9e .content {
  display: flex;
  align-items: center;
}
.cid-tq7T6GYh9e .mbr-section-subtitle {
  margin-bottom: 27px;
  letter-spacing: .13em;
  color: #9a0712;
}
.cid-tq7T6GYh9e .mbr-section-title {
  margin-bottom: 13px;
  color: #080808;
}
.cid-tq7T6GYh9e .mbr-text {
  margin-bottom: 38px;
  color: #65676c;
}
.cid-tq7T6GYh9e .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  margin-top: 0;
}
.cid-tq7T6GYh9e .btn:hover {
  box-shadow: none;
}
.cid-tq7T6GYh9e .image-wrapper {
  display: flex;
  justify-content: flex-end;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tq7T6GYh9e .image-wrapper {
    margin-top: 25px;
  }
}
.cid-tq7T6GYh9e .image-wrapper img {
  width: 480px;
  height: 457px;
  margin: 0 auto;
  object-fit: cover;
}
@media (max-width: 1040px) {
  .cid-tq7T6GYh9e .image-wrapper img {
    width: 310px;
    height: 290px;
  }
}
@media (max-width: 992px) {
  .cid-tq7T6GYh9e .image-wrapper img {
    max-width: 480px;
    min-height: 230px;
  }
}
.cid-tq7T6GYh9e .image-wrapper .image-absolute-1 {
  position: absolute;
  top: 56%;
  left: 1%;
  width: 112px;
  height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #0086c2;
}
.cid-tq7T6GYh9e .image-wrapper .image-absolute-1 .mbr-iconfont {
  font-size: 32px;
  margin-bottom: 10px;
}
.cid-tq7T6GYh9e .image-wrapper .image-absolute-1 .mbr-image-text {
  margin: 0;
}
.cid-tq7T6GYh9e .image-wrapper .image-absolute-2 {
  position: absolute;
  top: 10%;
  right: 1%;
  width: 112px;
  height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #0086c2;
}
.cid-tq7T6GYh9e .image-wrapper .image-absolute-2 .mbr-iconfont {
  font-size: 32px;
  margin-bottom: 10px;
}
.cid-tq7T6GYh9e .image-wrapper .image-absolute-2 .mbr-image-text {
  margin: 0;
}
.cid-tq7T6GYh9e .mbr-iconfont {
  color: #ffffff;
}
.cid-tq7T6GYh9e .mbr-image-text {
  color: #ffffff;
}
.cid-tqd0Bp36MW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tqd0Bp36MW .video-wrapper iframe {
  width: 100%;
}
.cid-tqd0Bp36MW h2,
.cid-tqd0Bp36MW h4,
.cid-tqd0Bp36MW p {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-tqd0Bp36MW .col-md-6 {
    width: 100%;
  }
}
.cid-tqd0Bp36MW .mbr-section-head {
  margin-bottom: 2rem;
}
@media (min-width: 993px) {
  .cid-tqd0Bp36MW .mbr-section-head {
    margin-bottom: 0;
  }
}
@media (max-width: 992px) {
  .cid-tqd0Bp36MW .mbr-section-head {
    text-align: center;
  }
}
.cid-tqd0Bp36MW .mbr-section-title {
  color: #000000;
  margin-bottom: 1rem;
}
.cid-tqd0Bp36MW .mbr-section-subtitle {
  color: #6b6b6b;
  margin-bottom: 6px;
}
.cid-tqd0Bp36MW .mbr-text {
  color: #6b6b6b;
}
.cid-tq2D3AOwg5 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #f9f7f7;
}
.cid-tq2D3AOwg5 .mbr-section-title {
  letter-spacing: 0.1em;
  color: #000000;
  margin-bottom: 2rem;
}
.cid-tq2D3AOwg5 .mbr-section-subtitle {
  color: #444444;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-tq2D3AOwg5 .btn {
  margin: 0px !important;
}
.cid-tq2D3AOwg5 .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tq2D3AOwg5 .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tq2D3AOwg5 .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-tq2D3AOwg5 .carousel-item .wrap-img {
  text-align: center;
}
.cid-tq2D3AOwg5 .carousel-item .wrap-img img {
  max-height: 250px;
  width: auto;
  max-width: 100%;
}
.cid-tq2D3AOwg5 .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-tq2D3AOwg5 .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 2rem;
  text-align: center;
}
.cid-tq2D3AOwg5 .carousel-indicators li {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #9a0712;
  display: inline-block;
  border: 4px solid #9a0712;
}
.cid-tq2D3AOwg5 .carousel-indicators li.active {
  border-color: #5d0001;
}
@media (max-width: 768px) {
  .cid-tq2D3AOwg5 .second-col {
    padding-top: 2rem;
  }
}
.cid-tqd6fVhYqC {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tqd6fVhYqC .button-padding {
  padding: 0;
}
.cid-tqd6fVhYqC .btn {
  margin: 0;
}
.cid-tqd6fVhYqC .button-top {
  margin-top: 20px;
  padding: 0;
}
.cid-tqd6fVhYqC .mbr-text {
  padding-bottom: 30px;
  margin: 0;
}
.cid-tqd6fVhYqC .card-title {
  padding-bottom: 50px;
  margin: 0;
}
.cid-tq7TPCKary {
  padding-top: 0rem;
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-tq7TPCKary {
    padding-top: 0rem;
  }
}
.cid-tq7TPCKary .mbr-section-title {
  color: #000000;
}
.cid-tq7TPCKary .d-flex {
  align-items: flex-end;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .cid-tq7TPCKary .d-flex {
    justify-content: center;
  }
}
.cid-tq7TPCKary .link-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-tq7TPCKary .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 767px) {
  .cid-tq7TPCKary .link-wrapper {
    justify-content: center;
  }
}
.cid-tq7TPCKary .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-tq7TPCKary .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-tq7TPCKary .mbr-section-subtitle:hover {
  background: #b22b35;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tq7TPCKary .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-tq7TPCKary .link,
.cid-tq7TPCKary .link-icon {
  color: #fafafa;
}
.cid-tq3kzk16oA {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1280.jpeg");
}
.cid-tq3kzk16oA .container {
  max-width: 1040px;
}
.cid-tq3kzk16oA .items-container {
  display: grid;
  grid-gap: 1.6rem;
  grid-template-columns: repeat(6, 1fr);
  padding: 0 20px;
}
@media (max-width: 991px) {
  .cid-tq3kzk16oA .items-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .cid-tq3kzk16oA .items-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .cid-tq3kzk16oA .items-container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.cid-tq3kzk16oA .social-row {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-tq3kzk16oA .social-row {
    justify-content: center;
  }
}
.cid-tq3kzk16oA .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.4);
  margin-right: 1rem;
  margin-bottom: 12px;
  padding: 6px;
  min-height: 30px;
  min-width: 30px;
}
@media (max-width: 767px) {
  .cid-tq3kzk16oA .row {
    text-align: center;
  }
  .cid-tq3kzk16oA .social-row {
    justify-content: center;
  }
}
.cid-tq3kzk16oA .mbr-section-subtitle {
  color: #000000;
  margin-bottom: 1rem;
  text-align: left;
}
.cid-tq3kzk16oA .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
  text-align: left;
}
.cid-tq3kzk16oA .list li {
  transition: 0.5s all;
}
.cid-tq3kzk16oA .list li:hover {
  opacity: 0.5;
}
.cid-tq3kzk16oA .item-wrap {
  margin-bottom: 8px;
}
.cid-tq3kzk16oA .mbr-text {
  color: #000000;
}
.cid-tq3kzk16oA .footer-separator {
  height: 1px;
  border: none;
  background: #999999;
  margin: 1.6rem 0;
  outline: none;
}
.cid-tq3kzk16oA .mbr-iconfont {
  color: #ffffff;
  font-size: 16px;
}
@media (max-width: 767px) {
  .cid-tq3kzk16oA .copyright-col {
    text-align: center;
  }
}
.cid-tq3aEJbK0Z.popup-builder {
  background-color: #ffffff;
}
.cid-tq3aEJbK0Z.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tq3aEJbK0Z.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tq3aEJbK0Z .modal-content,
.cid-tq3aEJbK0Z .modal-dialog {
  height: auto;
}
.cid-tq3aEJbK0Z .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tq3aEJbK0Z .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tq3aEJbK0Z .form-wrapper .mbr-form .form-group,
  .cid-tq3aEJbK0Z .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tq3aEJbK0Z .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tq3aEJbK0Z .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tq3aEJbK0Z .mbr-text {
  text-align: center;
}
.cid-tq3aEJbK0Z .pt-0 {
  padding-top: 0 !important;
}
.cid-tq3aEJbK0Z .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tq3aEJbK0Z .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tq3aEJbK0Z .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tq3aEJbK0Z .modal-open {
  overflow: hidden;
}
.cid-tq3aEJbK0Z .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tq3aEJbK0Z .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tq3aEJbK0Z .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tq3aEJbK0Z .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tq3aEJbK0Z .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tq3aEJbK0Z .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tq3aEJbK0Z .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tq3aEJbK0Z .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tq3aEJbK0Z .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tq3aEJbK0Z .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tq3aEJbK0Z .modal-backdrop.fade {
  opacity: 0;
}
.cid-tq3aEJbK0Z .modal-backdrop.show {
  opacity: .5;
}
.cid-tq3aEJbK0Z .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tq3aEJbK0Z .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tq3aEJbK0Z .modal-header {
    padding: 1rem;
  }
}
.cid-tq3aEJbK0Z .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tq3aEJbK0Z .modal-header .close svg {
  fill: #353535;
}
.cid-tq3aEJbK0Z .modal-header .close:hover {
  opacity: 1;
}
.cid-tq3aEJbK0Z .modal-header .close:focus {
  outline: none;
}
.cid-tq3aEJbK0Z .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tq3aEJbK0Z .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tq3aEJbK0Z .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tq3aEJbK0Z .modal-body {
    padding: 1rem;
  }
}
.cid-tq3aEJbK0Z .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tq3aEJbK0Z .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tq3aEJbK0Z .modal-footer {
    padding: 1rem;
  }
}
.cid-tq3aEJbK0Z .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tq3aEJbK0Z .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tq3aEJbK0Z .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tq3aEJbK0Z .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tq3aEJbK0Z .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tq3aEJbK0Z .modal-lg,
  .cid-tq3aEJbK0Z .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tq3aEJbK0Z .modal-xl {
    max-width: 1140px;
  }
}
.cid-tq3aEJbK0Z .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tq3aEJbK0Z .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tq3aEJbK0Z .form-group {
  margin-bottom: 1rem;
}
.cid-tq3aEJbK0Z .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tq3aEJbK0Z .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tq3aEJbK0Z .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tq3aEJbK0Z .mbr-section-btn {
  margin: 0;
}
.cid-tq3aEJbK0Z .mbr-section-btn .btn {
  margin: 0;
}
.cid-tpWUkWMIF8 .b-shadow {
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.05);
}
.cid-tpWUkWMIF8 .nav-item {
  list-style: none;
}
.cid-tpWUkWMIF8 .nav-item:focus,
.cid-tpWUkWMIF8 .nav-link:focus {
  outline: none;
}
.cid-tpWUkWMIF8 .nav-dropdown .dropdown-menu {
  padding-top: 0;
}
.cid-tpWUkWMIF8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tpWUkWMIF8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tpWUkWMIF8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tpWUkWMIF8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tpWUkWMIF8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0em 0em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tpWUkWMIF8 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  flex-direction: row !important;
  background: #ffffff;
}
.cid-tpWUkWMIF8 .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-tpWUkWMIF8 .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-tpWUkWMIF8 .navbar .navbar-collapse {
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  height: 100%;
  padding-top: 3rem;
  padding-bottom: 3rem;
  z-index: 1;
}
.cid-tpWUkWMIF8 .navbar .navbar-collapse > .container {
  height: 100%;
}
.cid-tpWUkWMIF8 .navbar .navbar-collapse.show,
.cid-tpWUkWMIF8 .navbar .navbar-collapse.collapsing {
  display: -webkit-flex;
}
.cid-tpWUkWMIF8 .navbar .navbar-collapse .img-column img {
  width: 100%;
}
.cid-tpWUkWMIF8 .navbar .navbar-collapse .text-column {
  overflow: auto;
  max-height: calc(100vh - 7rem);
}
.cid-tpWUkWMIF8 .navbar .navbar-collapse .contact-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.cid-tpWUkWMIF8 .navbar:not(.navbar-short) .text-column {
  max-height: calc(100vh - 4rem - 3rem);
}
.cid-tpWUkWMIF8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tpWUkWMIF8 .navbar.collapsed .dropdown-menu {
  text-align: inherit;
  background: transparent !important;
}
.cid-tpWUkWMIF8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tpWUkWMIF8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tpWUkWMIF8 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tpWUkWMIF8 .navbar.collapsed ul.navbar-nav {
  word-break: break-word;
}
.cid-tpWUkWMIF8 .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: inherit;
}
.cid-tpWUkWMIF8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.cid-tpWUkWMIF8 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tpWUkWMIF8 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-tpWUkWMIF8 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tpWUkWMIF8 .navbar-brand {
  min-height: 61px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tpWUkWMIF8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tpWUkWMIF8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tpWUkWMIF8 .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-tpWUkWMIF8 .dropdown-item.active,
.cid-tpWUkWMIF8 .dropdown-item:active {
  background-color: transparent;
}
.cid-tpWUkWMIF8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tpWUkWMIF8 .nav-dropdown .link {
  margin: 0.2em 0em;
}
.cid-tpWUkWMIF8 .nav-dropdown .link.dropdown-toggle {
  margin: 0;
}
.cid-tpWUkWMIF8 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin: 0em 0em;
  padding: 0.2em 0em;
}
.cid-tpWUkWMIF8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tpWUkWMIF8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tpWUkWMIF8 .socicon {
  transition: color 0.3s;
}
.cid-tpWUkWMIF8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tpWUkWMIF8 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tpWUkWMIF8 .navbar-buttons {
  text-align: inherit;
}
.cid-tpWUkWMIF8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tpWUkWMIF8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tpWUkWMIF8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tpWUkWMIF8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tpWUkWMIF8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tpWUkWMIF8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tpWUkWMIF8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tpWUkWMIF8 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tpWUkWMIF8 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tpWUkWMIF8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tpWUkWMIF8 .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-tpWUkWMIF8 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tpWUkWMIF8 .icons-menu {
  text-align: inherit;
  margin-right: 20px;
}
.cid-tpWUkWMIF8 .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-tpWUkWMIF8 .nav-link:hover,
.cid-tpWUkWMIF8 .dropdown-item:hover,
.cid-tpWUkWMIF8 .icons-menu .mbr-iconfont:hover {
  color: #e0e0e0 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tpWUkWMIF8 .navbar {
    height: 77px;
  }
  .cid-tpWUkWMIF8 .navbar.opened {
    height: auto;
  }
}
@media (max-width: 767px) {
  .cid-tpWUkWMIF8 .navbar-collapse .img-column {
    display: none;
  }
  .cid-tpWUkWMIF8 .icons-menu,
  .cid-tpWUkWMIF8 .navbar-buttons,
  .cid-tpWUkWMIF8 .contact-block,
  .cid-tpWUkWMIF8 .text-column {
    text-align: center !important;
  }
}
.cid-tpWUkWMIF8 h6.mbr-fonts-style {
  padding: 0;
}
.cid-tpWUkWMIF8 .collapsing {
  transition: 0s;
}
.cid-tpWUkWMIF8 .flex-container {
  height: 100%;
  width: 100%;
}
@media (min-width: 769px) {
  .cid-tpWUkWMIF8 .flex-container {
    display: flex;
    flex-direction: column;
  }
  .cid-tpWUkWMIF8 .flex-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
  .cid-tpWUkWMIF8 .flex-row.low-row {
    align-items: flex-end;
    flex: 1 1 auto;
  }
  .cid-tpWUkWMIF8 .flex-card {
    display: flex;
    flex-direction: column;
  }
  .cid-tpWUkWMIF8 .flex-card h6 {
    padding: .5rem 1rem;
  }
  .cid-tpWUkWMIF8 .contact-block {
    margin-left: 20px;
  }
  .cid-tpWUkWMIF8 .contact-block ul li {
    text-align: left;
  }
  .cid-tpWUkWMIF8 ul.col {
    padding: 0;
  }
  .cid-tpWUkWMIF8 .flex-row.low-row {
    justify-content: space-between;
  }
}
.cid-tpWUkWMIF8 .icons-menu,
.cid-tpWUkWMIF8 .navbar-buttons,
.cid-tpWUkWMIF8 .contact-block,
.cid-tpWUkWMIF8 .text-column {
  color: #000000;
}
.cid-tpWUkWMIF8 .icons-menu a span {
  color: #9a0712;
}
.cid-tpWUkWMIF8 H6 {
  color: #232323;
  text-align: left;
}
.cid-tqdyEIDyOW.popup-builder {
  background-color: #ffffff;
}
.cid-tqdyEIDyOW.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tqdyEIDyOW.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tqdyEIDyOW .modal-content,
.cid-tqdyEIDyOW .modal-dialog {
  height: auto;
}
.cid-tqdyEIDyOW .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tqdyEIDyOW .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tqdyEIDyOW .form-wrapper .mbr-form .form-group,
  .cid-tqdyEIDyOW .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tqdyEIDyOW .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tqdyEIDyOW .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tqdyEIDyOW .mbr-text {
  text-align: center;
}
.cid-tqdyEIDyOW .pt-0 {
  padding-top: 0 !important;
}
.cid-tqdyEIDyOW .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tqdyEIDyOW .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tqdyEIDyOW .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tqdyEIDyOW .modal-open {
  overflow: hidden;
}
.cid-tqdyEIDyOW .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tqdyEIDyOW .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tqdyEIDyOW .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tqdyEIDyOW .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tqdyEIDyOW .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tqdyEIDyOW .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tqdyEIDyOW .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tqdyEIDyOW .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tqdyEIDyOW .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tqdyEIDyOW .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tqdyEIDyOW .modal-backdrop.fade {
  opacity: 0;
}
.cid-tqdyEIDyOW .modal-backdrop.show {
  opacity: .5;
}
.cid-tqdyEIDyOW .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tqdyEIDyOW .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tqdyEIDyOW .modal-header {
    padding: 1rem;
  }
}
.cid-tqdyEIDyOW .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tqdyEIDyOW .modal-header .close svg {
  fill: #353535;
}
.cid-tqdyEIDyOW .modal-header .close:hover {
  opacity: 1;
}
.cid-tqdyEIDyOW .modal-header .close:focus {
  outline: none;
}
.cid-tqdyEIDyOW .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tqdyEIDyOW .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tqdyEIDyOW .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tqdyEIDyOW .modal-body {
    padding: 1rem;
  }
}
.cid-tqdyEIDyOW .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tqdyEIDyOW .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tqdyEIDyOW .modal-footer {
    padding: 1rem;
  }
}
.cid-tqdyEIDyOW .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tqdyEIDyOW .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tqdyEIDyOW .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tqdyEIDyOW .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tqdyEIDyOW .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tqdyEIDyOW .modal-lg,
  .cid-tqdyEIDyOW .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tqdyEIDyOW .modal-xl {
    max-width: 1140px;
  }
}
.cid-tqdyEIDyOW .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tqdyEIDyOW .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tqdyEIDyOW .form-group {
  margin-bottom: 1rem;
}
.cid-tqdyEIDyOW .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tqdyEIDyOW .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tqdyEIDyOW .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tqdyEIDyOW .mbr-section-btn {
  margin: 0;
}
.cid-tqdyEIDyOW .mbr-section-btn .btn {
  margin: 0;
}
.cid-tq31CRvqGo {
  padding-top: 10rem;
  padding-bottom: 4rem;
}
.cid-tq31CRvqGo .link-wrapper {
  width: 100%;
}
.cid-tq31CRvqGo .link {
  display: inline-block;
  position: relative;
  padding-right: 2rem;
  overflow: hidden;
  cursor: pointer;
}
.cid-tq31CRvqGo .link:before {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(0px);
}
.cid-tq31CRvqGo .link:after {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0rem;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(-33px);
}
.cid-tq31CRvqGo .link:hover:before {
  transform: rotate(-45deg) translateX(33px);
}
.cid-tq31CRvqGo .link:hover:after {
  transform: rotate(-45deg) translateX(0px);
}
.cid-tq31CRvqGo .mbr-section-title DIV {
  text-align: center;
}
.cid-tq31CRvqGo .mbr-text,
.cid-tq31CRvqGo .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-tq31CRvqGo .link,
.cid-tq31CRvqGo .link-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-tq31CRvqGo .mbr-section-title {
  color: #ffffff;
}
.cid-tq33d5rAdY {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tq33d5rAdY .button-padding {
  padding: 0;
}
.cid-tq33d5rAdY .btn {
  margin: 0;
}
.cid-tq33d5rAdY .button-top {
  margin-top: 20px;
  padding: 0;
}
.cid-tq33d5rAdY .mbr-text {
  padding-bottom: 30px;
  margin: 0;
}
.cid-tq33d5rAdY .card-title {
  padding-bottom: 50px;
  margin: 0;
}
.cid-tq2JtbBxyT {
  padding-top: 2rem;
  padding-bottom: 2rem;
  position: relative;
  background-color: #ffffff;
}
.cid-tq2JtbBxyT .content_box {
  padding: 2rem 15%;
  background-color: #0086c2;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
}
@media (max-width: 991px) {
  .cid-tq2JtbBxyT .content_box {
    margin-top: 30px;
    padding: 65px 30px;
  }
  .cid-tq2JtbBxyT .content_box .shape {
    width: auto;
    padding: 0 1rem;
  }
}
.cid-tq2JtbBxyT .shape {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  opacity: 0.5;
  padding: 0 100px;
}
.cid-tq2JtbBxyT .shape img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-tq2JtbBxyT .mbr-text {
  line-height: 1;
  color: #ffffff;
  position: relative;
  z-index: 2;
  text-align: left;
}
.cid-tq2JtbBxyT .video-wrapper img,
.cid-tq2JtbBxyT .video-wrapper iframe {
  max-height: 400px;
  object-fit: cover;
}
.cid-tq32PGF920 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-tq32PGF920 .link-align {
  width: 100%;
}
.cid-tq32PGF920 .link-wrap {
  display: inline-block;
}
@keyframes hover {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
.cid-tq32PGF920 .mbr-text,
.cid-tq32PGF920 .link-align {
  color: #ffffff;
}
.cid-tq32PGF920 .icon-wrap {
  border-radius: 50%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  width: 100px;
  background-color: #ffffff;
  height: 100px;
  cursor: pointer;
}
.cid-tq32PGF920 .icon-wrap:hover {
  animation: 0.6s hover;
}
.cid-tq32PGF920 .icon-wrap span {
  padding-left: 4px;
}
.cid-tq32PGF920 .mbr-media span {
  font-size: 1.6rem;
  border-radius: 50%;
  cursor: pointer;
  width: 100px;
  height: 100px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: all 0.25s;
  color: #000000 !important;
}
.cid-tq32PGF920 .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-tq32PGF920 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tq32PGF920 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tq32PGF920 .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tq32PGF920 a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-tq32PGF920 a.close:hover {
  color: #ffffff;
}
.cid-tq2JtcFCfR {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #f9f7f7;
}
.cid-tq2JtcFCfR .mbr-section-title {
  letter-spacing: 0.1em;
  color: #444444;
  margin-bottom: 2rem;
}
.cid-tq2JtcFCfR .mbr-section-subtitle {
  color: #444444;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-tq2JtcFCfR .btn {
  margin: 0px !important;
}
.cid-tq2JtcFCfR .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tq2JtcFCfR .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tq2JtcFCfR .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-tq2JtcFCfR .carousel-item .wrap-img {
  text-align: center;
}
.cid-tq2JtcFCfR .carousel-item .wrap-img img {
  max-height: 250px;
  width: auto;
  max-width: 100%;
}
.cid-tq2JtcFCfR .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-tq2JtcFCfR .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 2rem;
  text-align: center;
}
.cid-tq2JtcFCfR .carousel-indicators li {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #9a0712;
  display: inline-block;
  border: 4px solid #9a0712;
}
.cid-tq2JtcFCfR .carousel-indicators li.active {
  border-color: #5d0001;
}
@media (max-width: 768px) {
  .cid-tq2JtcFCfR .second-col {
    padding-top: 2rem;
  }
}
.cid-tq2Jtg4ySb {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-tq2Jtg4ySb .contacts-name {
  padding-bottom: 5px;
  margin: 0;
  color: #a3a6b2;
}
.cid-tq2Jtg4ySb .contacts-info {
  padding-bottom: 30px;
  color: #ffffff;
  margin: 0;
}
.cid-tq2Jtg4ySb .margin {
  margin-bottom: 10px;
}
.cid-tq2Jtg4ySb .mbr-section-title {
  color: white;
  margin-bottom: 20px;
  padding: 0;
}
.cid-tq2Jtg4ySb .description {
  color: #a3a6b2;
  margin-bottom: 50px;
  padding: 0;
}
.cid-tq2Jtg4ySb .title {
  font-size: 24px;
}
.cid-tq2Jtg4ySb .form-heading {
  margin-bottom: 40px;
}
.cid-tq2Jtg4ySb label {
  color: #ffffff;
  margin-bottom: 5px;
}
.cid-tq2Jtg4ySb input,
.cid-tq2Jtg4ySb textarea {
  background-color: #3F424E;
  margin-bottom: 30px;
}
.cid-tq2Jtg4ySb .gray-button {
  margin: 0;
  background-color: #3F424E;
  color: #ffffff;
}
.cid-tq2Jtg4ySb .mbr-section-btn {
  margin: 0;
  padding: 0;
}
.cid-tq2Jtg4ySb .form-group {
  padding: 0 5px;
  margin: 0;
}
.cid-tq2Jtg4ySb .left-side {
  padding: 0;
}
@media (max-width: 1000px) {
  .cid-tq2Jtg4ySb .gray-button {
    margin-bottom: 50px;
    margin-top: 0px;
  }
}
.cid-tq2Jtg4ySb .gray-button:hover {
  background-color: #5e6068;
}
.cid-tq2Jtg4ySb ::placeholder {
  color: #a3a6b2;
}
.cid-tq2JtgKMId .b-shadow {
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.05);
}
.cid-tq2JtgKMId .nav-item {
  list-style: none;
}
.cid-tq2JtgKMId .nav-item:focus,
.cid-tq2JtgKMId .nav-link:focus {
  outline: none;
}
.cid-tq2JtgKMId .nav-dropdown .dropdown-menu {
  padding-top: 0;
}
.cid-tq2JtgKMId .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tq2JtgKMId .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tq2JtgKMId .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tq2JtgKMId .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tq2JtgKMId .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0em 0em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tq2JtgKMId .navbar {
  min-height: 77px;
  transition: all 0.3s;
  flex-direction: row !important;
  background: #ffffff;
}
.cid-tq2JtgKMId .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-tq2JtgKMId .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-tq2JtgKMId .navbar .navbar-collapse {
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  height: 100%;
  padding-top: 3rem;
  padding-bottom: 3rem;
  z-index: 1;
}
.cid-tq2JtgKMId .navbar .navbar-collapse > .container {
  height: 100%;
}
.cid-tq2JtgKMId .navbar .navbar-collapse.show,
.cid-tq2JtgKMId .navbar .navbar-collapse.collapsing {
  display: -webkit-flex;
}
.cid-tq2JtgKMId .navbar .navbar-collapse .img-column img {
  width: 100%;
}
.cid-tq2JtgKMId .navbar .navbar-collapse .text-column {
  overflow: auto;
  max-height: calc(100vh - 7rem);
}
.cid-tq2JtgKMId .navbar .navbar-collapse .contact-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.cid-tq2JtgKMId .navbar:not(.navbar-short) .text-column {
  max-height: calc(100vh - 4rem - 3rem);
}
.cid-tq2JtgKMId .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tq2JtgKMId .navbar.collapsed .dropdown-menu {
  text-align: inherit;
  background: transparent !important;
}
.cid-tq2JtgKMId .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tq2JtgKMId .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tq2JtgKMId .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tq2JtgKMId .navbar.collapsed ul.navbar-nav {
  word-break: break-word;
}
.cid-tq2JtgKMId .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: inherit;
}
.cid-tq2JtgKMId .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.cid-tq2JtgKMId .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tq2JtgKMId .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-tq2JtgKMId .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tq2JtgKMId .navbar-brand {
  min-height: 61px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tq2JtgKMId .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tq2JtgKMId .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tq2JtgKMId .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-tq2JtgKMId .dropdown-item.active,
.cid-tq2JtgKMId .dropdown-item:active {
  background-color: transparent;
}
.cid-tq2JtgKMId .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tq2JtgKMId .nav-dropdown .link {
  margin: 0.2em 0em;
}
.cid-tq2JtgKMId .nav-dropdown .link.dropdown-toggle {
  margin: 0;
}
.cid-tq2JtgKMId .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin: 0em 0em;
  padding: 0.2em 0em;
}
.cid-tq2JtgKMId .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tq2JtgKMId .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tq2JtgKMId .socicon {
  transition: color 0.3s;
}
.cid-tq2JtgKMId .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tq2JtgKMId ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tq2JtgKMId .navbar-buttons {
  text-align: inherit;
}
.cid-tq2JtgKMId button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tq2JtgKMId button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tq2JtgKMId button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tq2JtgKMId button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tq2JtgKMId button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tq2JtgKMId button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tq2JtgKMId nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tq2JtgKMId nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tq2JtgKMId nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tq2JtgKMId nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tq2JtgKMId .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-tq2JtgKMId .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tq2JtgKMId .icons-menu {
  text-align: inherit;
  margin-right: 20px;
}
.cid-tq2JtgKMId .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-tq2JtgKMId .nav-link:hover,
.cid-tq2JtgKMId .dropdown-item:hover,
.cid-tq2JtgKMId .icons-menu .mbr-iconfont:hover {
  color: #e0e0e0 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tq2JtgKMId .navbar {
    height: 77px;
  }
  .cid-tq2JtgKMId .navbar.opened {
    height: auto;
  }
}
@media (max-width: 767px) {
  .cid-tq2JtgKMId .navbar-collapse .img-column {
    display: none;
  }
  .cid-tq2JtgKMId .icons-menu,
  .cid-tq2JtgKMId .navbar-buttons,
  .cid-tq2JtgKMId .contact-block,
  .cid-tq2JtgKMId .text-column {
    text-align: center !important;
  }
}
.cid-tq2JtgKMId h6.mbr-fonts-style {
  padding: 0;
}
.cid-tq2JtgKMId .collapsing {
  transition: 0s;
}
.cid-tq2JtgKMId .flex-container {
  height: 100%;
  width: 100%;
}
@media (min-width: 769px) {
  .cid-tq2JtgKMId .flex-container {
    display: flex;
    flex-direction: column;
  }
  .cid-tq2JtgKMId .flex-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
  .cid-tq2JtgKMId .flex-row.low-row {
    align-items: flex-end;
    flex: 1 1 auto;
  }
  .cid-tq2JtgKMId .flex-card {
    display: flex;
    flex-direction: column;
  }
  .cid-tq2JtgKMId .flex-card h6 {
    padding: .5rem 1rem;
  }
  .cid-tq2JtgKMId .contact-block {
    margin-left: 20px;
  }
  .cid-tq2JtgKMId .contact-block ul li {
    text-align: left;
  }
  .cid-tq2JtgKMId ul.col {
    padding: 0;
  }
  .cid-tq2JtgKMId .flex-row.low-row {
    justify-content: space-between;
  }
}
.cid-tq2JtgKMId .icons-menu,
.cid-tq2JtgKMId .navbar-buttons,
.cid-tq2JtgKMId .contact-block,
.cid-tq2JtgKMId .text-column {
  color: #000000;
}
.cid-tq2JtgKMId .icons-menu a span {
  color: #9a0712;
}
.cid-tq2JtgKMId H6 {
  color: #232323;
  text-align: left;
}
.cid-tq3kzk16oA {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1280.jpeg");
}
.cid-tq3kzk16oA .container {
  max-width: 1040px;
}
.cid-tq3kzk16oA .items-container {
  display: grid;
  grid-gap: 1.6rem;
  grid-template-columns: repeat(6, 1fr);
  padding: 0 20px;
}
@media (max-width: 991px) {
  .cid-tq3kzk16oA .items-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .cid-tq3kzk16oA .items-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .cid-tq3kzk16oA .items-container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.cid-tq3kzk16oA .social-row {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-tq3kzk16oA .social-row {
    justify-content: center;
  }
}
.cid-tq3kzk16oA .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.4);
  margin-right: 1rem;
  margin-bottom: 12px;
  padding: 6px;
  min-height: 30px;
  min-width: 30px;
}
@media (max-width: 767px) {
  .cid-tq3kzk16oA .row {
    text-align: center;
  }
  .cid-tq3kzk16oA .social-row {
    justify-content: center;
  }
}
.cid-tq3kzk16oA .mbr-section-subtitle {
  color: #000000;
  margin-bottom: 1rem;
  text-align: left;
}
.cid-tq3kzk16oA .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
  text-align: left;
}
.cid-tq3kzk16oA .list li {
  transition: 0.5s all;
}
.cid-tq3kzk16oA .list li:hover {
  opacity: 0.5;
}
.cid-tq3kzk16oA .item-wrap {
  margin-bottom: 8px;
}
.cid-tq3kzk16oA .mbr-text {
  color: #000000;
}
.cid-tq3kzk16oA .footer-separator {
  height: 1px;
  border: none;
  background: #999999;
  margin: 1.6rem 0;
  outline: none;
}
.cid-tq3kzk16oA .mbr-iconfont {
  color: #ffffff;
  font-size: 16px;
}
@media (max-width: 767px) {
  .cid-tq3kzk16oA .copyright-col {
    text-align: center;
  }
}
.cid-tqdyEIE2ap.popup-builder {
  background-color: #ffffff;
}
.cid-tqdyEIE2ap.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tqdyEIE2ap.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tqdyEIE2ap .modal-content,
.cid-tqdyEIE2ap .modal-dialog {
  height: auto;
}
.cid-tqdyEIE2ap .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tqdyEIE2ap .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tqdyEIE2ap .form-wrapper .mbr-form .form-group,
  .cid-tqdyEIE2ap .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tqdyEIE2ap .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tqdyEIE2ap .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tqdyEIE2ap .mbr-text {
  text-align: center;
}
.cid-tqdyEIE2ap .pt-0 {
  padding-top: 0 !important;
}
.cid-tqdyEIE2ap .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tqdyEIE2ap .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tqdyEIE2ap .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tqdyEIE2ap .modal-open {
  overflow: hidden;
}
.cid-tqdyEIE2ap .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tqdyEIE2ap .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tqdyEIE2ap .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tqdyEIE2ap .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tqdyEIE2ap .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tqdyEIE2ap .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tqdyEIE2ap .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tqdyEIE2ap .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tqdyEIE2ap .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tqdyEIE2ap .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tqdyEIE2ap .modal-backdrop.fade {
  opacity: 0;
}
.cid-tqdyEIE2ap .modal-backdrop.show {
  opacity: .5;
}
.cid-tqdyEIE2ap .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tqdyEIE2ap .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tqdyEIE2ap .modal-header {
    padding: 1rem;
  }
}
.cid-tqdyEIE2ap .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tqdyEIE2ap .modal-header .close svg {
  fill: #353535;
}
.cid-tqdyEIE2ap .modal-header .close:hover {
  opacity: 1;
}
.cid-tqdyEIE2ap .modal-header .close:focus {
  outline: none;
}
.cid-tqdyEIE2ap .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tqdyEIE2ap .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tqdyEIE2ap .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tqdyEIE2ap .modal-body {
    padding: 1rem;
  }
}
.cid-tqdyEIE2ap .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tqdyEIE2ap .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tqdyEIE2ap .modal-footer {
    padding: 1rem;
  }
}
.cid-tqdyEIE2ap .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tqdyEIE2ap .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tqdyEIE2ap .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tqdyEIE2ap .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tqdyEIE2ap .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tqdyEIE2ap .modal-lg,
  .cid-tqdyEIE2ap .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tqdyEIE2ap .modal-xl {
    max-width: 1140px;
  }
}
.cid-tqdyEIE2ap .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tqdyEIE2ap .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tqdyEIE2ap .form-group {
  margin-bottom: 1rem;
}
.cid-tqdyEIE2ap .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tqdyEIE2ap .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tqdyEIE2ap .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tqdyEIE2ap .mbr-section-btn {
  margin: 0;
}
.cid-tqdyEIE2ap .mbr-section-btn .btn {
  margin: 0;
}
.cid-tq33YzS04g {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-tq33YzS04g .video-wrapper iframe {
  width: 100%;
}
.cid-tq33YzS04g .mbr-section-title,
.cid-tq33YzS04g .mbr-section-subtitle,
.cid-tq33YzS04g .mbr-text {
  text-align: center;
}
.cid-tq33YzS04g .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: center;
}
.cid-tq33YzS04g .mbr-section-title {
  margin-bottom: 14px;
  color: #20232a;
  text-align: center;
}
.cid-tq33YzS04g .mbr-text {
  margin-bottom: 0;
  color: #65676c;
}
.cid-tq33YzS04g .mbr-section-head {
  margin-bottom: 45px;
}
.cid-tq33mz3fYj {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tq33mz3fYj .button-padding {
  padding: 0;
}
.cid-tq33mz3fYj .btn {
  margin: 0;
}
.cid-tq33mz3fYj .button-top {
  margin-top: 20px;
  padding: 0;
}
.cid-tq33mz3fYj .mbr-text {
  padding-bottom: 30px;
  margin: 0;
}
.cid-tq33mz3fYj .card-title {
  padding-bottom: 50px;
  margin: 0;
}
.cid-tq33mzqAoq {
  padding-top: 2rem;
  padding-bottom: 2rem;
  position: relative;
  background-color: #ffffff;
}
.cid-tq33mzqAoq .content_box {
  padding: 2rem 15%;
  background-color: #000000;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
}
@media (max-width: 991px) {
  .cid-tq33mzqAoq .content_box {
    margin-top: 30px;
    padding: 65px 30px;
  }
  .cid-tq33mzqAoq .content_box .shape {
    width: auto;
    padding: 0 1rem;
  }
}
.cid-tq33mzqAoq .shape {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  opacity: 0.5;
  padding: 0 100px;
}
.cid-tq33mzqAoq .shape img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-tq33mzqAoq .mbr-text {
  line-height: 1;
  color: #ffffff;
  position: relative;
  z-index: 2;
  text-align: left;
}
.cid-tq33mzqAoq .video-wrapper img,
.cid-tq33mzqAoq .video-wrapper iframe {
  max-height: 400px;
  object-fit: cover;
}
.cid-tq33mAvygz {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-tq33mAvygz .contacts-name {
  padding-bottom: 5px;
  margin: 0;
  color: #a3a6b2;
}
.cid-tq33mAvygz .contacts-info {
  padding-bottom: 30px;
  color: #ffffff;
  margin: 0;
}
.cid-tq33mAvygz .margin {
  margin-bottom: 10px;
}
.cid-tq33mAvygz .mbr-section-title {
  color: white;
  margin-bottom: 20px;
  padding: 0;
}
.cid-tq33mAvygz .description {
  color: #a3a6b2;
  margin-bottom: 50px;
  padding: 0;
}
.cid-tq33mAvygz .title {
  font-size: 24px;
}
.cid-tq33mAvygz .form-heading {
  margin-bottom: 40px;
}
.cid-tq33mAvygz label {
  color: #ffffff;
  margin-bottom: 5px;
}
.cid-tq33mAvygz input,
.cid-tq33mAvygz textarea {
  background-color: #3F424E;
  margin-bottom: 30px;
}
.cid-tq33mAvygz .gray-button {
  margin: 0;
  background-color: #3F424E;
  color: #ffffff;
}
.cid-tq33mAvygz .mbr-section-btn {
  margin: 0;
  padding: 0;
}
.cid-tq33mAvygz .form-group {
  padding: 0 5px;
  margin: 0;
}
.cid-tq33mAvygz .left-side {
  padding: 0;
}
@media (max-width: 1000px) {
  .cid-tq33mAvygz .gray-button {
    margin-bottom: 50px;
    margin-top: 0px;
  }
}
.cid-tq33mAvygz .gray-button:hover {
  background-color: #5e6068;
}
.cid-tq33mAvygz ::placeholder {
  color: #a3a6b2;
}
.cid-tq33mBaeq1 .b-shadow {
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.05);
}
.cid-tq33mBaeq1 .nav-item {
  list-style: none;
}
.cid-tq33mBaeq1 .nav-item:focus,
.cid-tq33mBaeq1 .nav-link:focus {
  outline: none;
}
.cid-tq33mBaeq1 .nav-dropdown .dropdown-menu {
  padding-top: 0;
}
.cid-tq33mBaeq1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tq33mBaeq1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tq33mBaeq1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tq33mBaeq1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tq33mBaeq1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0em 0em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tq33mBaeq1 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  flex-direction: row !important;
  background: #ffffff;
}
.cid-tq33mBaeq1 .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-tq33mBaeq1 .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-tq33mBaeq1 .navbar .navbar-collapse {
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  height: 100%;
  padding-top: 3rem;
  padding-bottom: 3rem;
  z-index: 1;
}
.cid-tq33mBaeq1 .navbar .navbar-collapse > .container {
  height: 100%;
}
.cid-tq33mBaeq1 .navbar .navbar-collapse.show,
.cid-tq33mBaeq1 .navbar .navbar-collapse.collapsing {
  display: -webkit-flex;
}
.cid-tq33mBaeq1 .navbar .navbar-collapse .img-column img {
  width: 100%;
}
.cid-tq33mBaeq1 .navbar .navbar-collapse .text-column {
  overflow: auto;
  max-height: calc(100vh - 7rem);
}
.cid-tq33mBaeq1 .navbar .navbar-collapse .contact-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.cid-tq33mBaeq1 .navbar:not(.navbar-short) .text-column {
  max-height: calc(100vh - 4rem - 3rem);
}
.cid-tq33mBaeq1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tq33mBaeq1 .navbar.collapsed .dropdown-menu {
  text-align: inherit;
  background: transparent !important;
}
.cid-tq33mBaeq1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tq33mBaeq1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tq33mBaeq1 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tq33mBaeq1 .navbar.collapsed ul.navbar-nav {
  word-break: break-word;
}
.cid-tq33mBaeq1 .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: inherit;
}
.cid-tq33mBaeq1 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.cid-tq33mBaeq1 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tq33mBaeq1 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-tq33mBaeq1 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tq33mBaeq1 .navbar-brand {
  min-height: 61px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tq33mBaeq1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tq33mBaeq1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tq33mBaeq1 .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-tq33mBaeq1 .dropdown-item.active,
.cid-tq33mBaeq1 .dropdown-item:active {
  background-color: transparent;
}
.cid-tq33mBaeq1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tq33mBaeq1 .nav-dropdown .link {
  margin: 0.2em 0em;
}
.cid-tq33mBaeq1 .nav-dropdown .link.dropdown-toggle {
  margin: 0;
}
.cid-tq33mBaeq1 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin: 0em 0em;
  padding: 0.2em 0em;
}
.cid-tq33mBaeq1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tq33mBaeq1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tq33mBaeq1 .socicon {
  transition: color 0.3s;
}
.cid-tq33mBaeq1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tq33mBaeq1 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tq33mBaeq1 .navbar-buttons {
  text-align: inherit;
}
.cid-tq33mBaeq1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tq33mBaeq1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tq33mBaeq1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tq33mBaeq1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tq33mBaeq1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tq33mBaeq1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tq33mBaeq1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tq33mBaeq1 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tq33mBaeq1 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tq33mBaeq1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tq33mBaeq1 .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-tq33mBaeq1 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tq33mBaeq1 .icons-menu {
  text-align: inherit;
  margin-right: 20px;
}
.cid-tq33mBaeq1 .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-tq33mBaeq1 .nav-link:hover,
.cid-tq33mBaeq1 .dropdown-item:hover,
.cid-tq33mBaeq1 .icons-menu .mbr-iconfont:hover {
  color: #e0e0e0 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tq33mBaeq1 .navbar {
    height: 77px;
  }
  .cid-tq33mBaeq1 .navbar.opened {
    height: auto;
  }
}
@media (max-width: 767px) {
  .cid-tq33mBaeq1 .navbar-collapse .img-column {
    display: none;
  }
  .cid-tq33mBaeq1 .icons-menu,
  .cid-tq33mBaeq1 .navbar-buttons,
  .cid-tq33mBaeq1 .contact-block,
  .cid-tq33mBaeq1 .text-column {
    text-align: center !important;
  }
}
.cid-tq33mBaeq1 h6.mbr-fonts-style {
  padding: 0;
}
.cid-tq33mBaeq1 .collapsing {
  transition: 0s;
}
.cid-tq33mBaeq1 .flex-container {
  height: 100%;
  width: 100%;
}
@media (min-width: 769px) {
  .cid-tq33mBaeq1 .flex-container {
    display: flex;
    flex-direction: column;
  }
  .cid-tq33mBaeq1 .flex-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
  .cid-tq33mBaeq1 .flex-row.low-row {
    align-items: flex-end;
    flex: 1 1 auto;
  }
  .cid-tq33mBaeq1 .flex-card {
    display: flex;
    flex-direction: column;
  }
  .cid-tq33mBaeq1 .flex-card h6 {
    padding: .5rem 1rem;
  }
  .cid-tq33mBaeq1 .contact-block {
    margin-left: 20px;
  }
  .cid-tq33mBaeq1 .contact-block ul li {
    text-align: left;
  }
  .cid-tq33mBaeq1 ul.col {
    padding: 0;
  }
  .cid-tq33mBaeq1 .flex-row.low-row {
    justify-content: space-between;
  }
}
.cid-tq33mBaeq1 .icons-menu,
.cid-tq33mBaeq1 .navbar-buttons,
.cid-tq33mBaeq1 .contact-block,
.cid-tq33mBaeq1 .text-column {
  color: #000000;
}
.cid-tq33mBaeq1 .icons-menu a span {
  color: #9a0712;
}
.cid-tq33mBaeq1 H6 {
  color: #232323;
  text-align: left;
}
.cid-tq3kzk16oA {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1280.jpeg");
}
.cid-tq3kzk16oA .container {
  max-width: 1040px;
}
.cid-tq3kzk16oA .items-container {
  display: grid;
  grid-gap: 1.6rem;
  grid-template-columns: repeat(6, 1fr);
  padding: 0 20px;
}
@media (max-width: 991px) {
  .cid-tq3kzk16oA .items-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .cid-tq3kzk16oA .items-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .cid-tq3kzk16oA .items-container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.cid-tq3kzk16oA .social-row {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-tq3kzk16oA .social-row {
    justify-content: center;
  }
}
.cid-tq3kzk16oA .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.4);
  margin-right: 1rem;
  margin-bottom: 12px;
  padding: 6px;
  min-height: 30px;
  min-width: 30px;
}
@media (max-width: 767px) {
  .cid-tq3kzk16oA .row {
    text-align: center;
  }
  .cid-tq3kzk16oA .social-row {
    justify-content: center;
  }
}
.cid-tq3kzk16oA .mbr-section-subtitle {
  color: #000000;
  margin-bottom: 1rem;
  text-align: left;
}
.cid-tq3kzk16oA .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
  text-align: left;
}
.cid-tq3kzk16oA .list li {
  transition: 0.5s all;
}
.cid-tq3kzk16oA .list li:hover {
  opacity: 0.5;
}
.cid-tq3kzk16oA .item-wrap {
  margin-bottom: 8px;
}
.cid-tq3kzk16oA .mbr-text {
  color: #000000;
}
.cid-tq3kzk16oA .footer-separator {
  height: 1px;
  border: none;
  background: #999999;
  margin: 1.6rem 0;
  outline: none;
}
.cid-tq3kzk16oA .mbr-iconfont {
  color: #ffffff;
  font-size: 16px;
}
@media (max-width: 767px) {
  .cid-tq3kzk16oA .copyright-col {
    text-align: center;
  }
}
.cid-tqdyEIEyOK.popup-builder {
  background-color: #ffffff;
}
.cid-tqdyEIEyOK.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tqdyEIEyOK.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tqdyEIEyOK .modal-content,
.cid-tqdyEIEyOK .modal-dialog {
  height: auto;
}
.cid-tqdyEIEyOK .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tqdyEIEyOK .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tqdyEIEyOK .form-wrapper .mbr-form .form-group,
  .cid-tqdyEIEyOK .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tqdyEIEyOK .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tqdyEIEyOK .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tqdyEIEyOK .mbr-text {
  text-align: center;
}
.cid-tqdyEIEyOK .pt-0 {
  padding-top: 0 !important;
}
.cid-tqdyEIEyOK .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tqdyEIEyOK .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tqdyEIEyOK .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tqdyEIEyOK .modal-open {
  overflow: hidden;
}
.cid-tqdyEIEyOK .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tqdyEIEyOK .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tqdyEIEyOK .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tqdyEIEyOK .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tqdyEIEyOK .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tqdyEIEyOK .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tqdyEIEyOK .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tqdyEIEyOK .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tqdyEIEyOK .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tqdyEIEyOK .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tqdyEIEyOK .modal-backdrop.fade {
  opacity: 0;
}
.cid-tqdyEIEyOK .modal-backdrop.show {
  opacity: .5;
}
.cid-tqdyEIEyOK .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tqdyEIEyOK .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tqdyEIEyOK .modal-header {
    padding: 1rem;
  }
}
.cid-tqdyEIEyOK .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tqdyEIEyOK .modal-header .close svg {
  fill: #353535;
}
.cid-tqdyEIEyOK .modal-header .close:hover {
  opacity: 1;
}
.cid-tqdyEIEyOK .modal-header .close:focus {
  outline: none;
}
.cid-tqdyEIEyOK .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tqdyEIEyOK .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tqdyEIEyOK .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tqdyEIEyOK .modal-body {
    padding: 1rem;
  }
}
.cid-tqdyEIEyOK .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tqdyEIEyOK .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tqdyEIEyOK .modal-footer {
    padding: 1rem;
  }
}
.cid-tqdyEIEyOK .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tqdyEIEyOK .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tqdyEIEyOK .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tqdyEIEyOK .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tqdyEIEyOK .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tqdyEIEyOK .modal-lg,
  .cid-tqdyEIEyOK .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tqdyEIEyOK .modal-xl {
    max-width: 1140px;
  }
}
.cid-tqdyEIEyOK .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tqdyEIEyOK .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tqdyEIEyOK .form-group {
  margin-bottom: 1rem;
}
.cid-tqdyEIEyOK .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tqdyEIEyOK .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tqdyEIEyOK .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tqdyEIEyOK .mbr-section-btn {
  margin: 0;
}
.cid-tqdyEIEyOK .mbr-section-btn .btn {
  margin: 0;
}
.cid-tq35mMztT9 {
  padding-top: 8rem;
  padding-bottom: 4rem;
}
.cid-tq35mMztT9 .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-tq35mMztT9 .col-text {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.cid-tq35mMztT9 .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tq35mMztT9 .label-text {
    text-align: center !important;
  }
}
.cid-tq35mMztT9 .mbr-section-title {
  width: 100%;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tq35mMztT9 .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tq34GOeTvD {
  padding-top: 7rem;
  padding-bottom: 3rem;
  background-color: #f4f4f4;
}
.cid-tq34GOeTvD .mbr-media {
  position: relative;
}
.cid-tq34GOeTvD .mbr-media img {
  width: 100%;
  object-fit: cover;
  border-radius: 2rem;
}
.cid-tq34GOeTvD .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tq34GOeTvD .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tq34GOeTvD .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tq34GOeTvD .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tq34GOeTvD .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tq34GOeTvD .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-tq34GOeTvD .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tq35aqGD5n {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
@media (min-width: 1400px) {
  .cid-tq35aqGD5n .col-lg-4 {
    padding: 0 2.5rem;
  }
}
.cid-tq35aqGD5n .mbr-text {
  color: #353535;
}
.cid-tq35aqGD5n .mbr-section-title {
  color: #000000;
}
.cid-tq34zXSmdq {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-tq34zXSmdq .contacts-name {
  padding-bottom: 5px;
  margin: 0;
  color: #a3a6b2;
}
.cid-tq34zXSmdq .contacts-info {
  padding-bottom: 30px;
  color: #ffffff;
  margin: 0;
}
.cid-tq34zXSmdq .margin {
  margin-bottom: 10px;
}
.cid-tq34zXSmdq .mbr-section-title {
  color: white;
  margin-bottom: 20px;
  padding: 0;
}
.cid-tq34zXSmdq .description {
  color: #a3a6b2;
  margin-bottom: 50px;
  padding: 0;
}
.cid-tq34zXSmdq .title {
  font-size: 24px;
}
.cid-tq34zXSmdq .form-heading {
  margin-bottom: 40px;
}
.cid-tq34zXSmdq label {
  color: #ffffff;
  margin-bottom: 5px;
}
.cid-tq34zXSmdq input,
.cid-tq34zXSmdq textarea {
  background-color: #3F424E;
  margin-bottom: 30px;
}
.cid-tq34zXSmdq .gray-button {
  margin: 0;
  background-color: #3F424E;
  color: #ffffff;
}
.cid-tq34zXSmdq .mbr-section-btn {
  margin: 0;
  padding: 0;
}
.cid-tq34zXSmdq .form-group {
  padding: 0 5px;
  margin: 0;
}
.cid-tq34zXSmdq .left-side {
  padding: 0;
}
@media (max-width: 1000px) {
  .cid-tq34zXSmdq .gray-button {
    margin-bottom: 50px;
    margin-top: 0px;
  }
}
.cid-tq34zXSmdq .gray-button:hover {
  background-color: #5e6068;
}
.cid-tq34zXSmdq ::placeholder {
  color: #a3a6b2;
}
.cid-tq34zYoBo2 .b-shadow {
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.05);
}
.cid-tq34zYoBo2 .nav-item {
  list-style: none;
}
.cid-tq34zYoBo2 .nav-item:focus,
.cid-tq34zYoBo2 .nav-link:focus {
  outline: none;
}
.cid-tq34zYoBo2 .nav-dropdown .dropdown-menu {
  padding-top: 0;
}
.cid-tq34zYoBo2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tq34zYoBo2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tq34zYoBo2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tq34zYoBo2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tq34zYoBo2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0em 0em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tq34zYoBo2 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  flex-direction: row !important;
  background: #ffffff;
}
.cid-tq34zYoBo2 .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-tq34zYoBo2 .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-tq34zYoBo2 .navbar .navbar-collapse {
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  height: 100%;
  padding-top: 3rem;
  padding-bottom: 3rem;
  z-index: 1;
}
.cid-tq34zYoBo2 .navbar .navbar-collapse > .container {
  height: 100%;
}
.cid-tq34zYoBo2 .navbar .navbar-collapse.show,
.cid-tq34zYoBo2 .navbar .navbar-collapse.collapsing {
  display: -webkit-flex;
}
.cid-tq34zYoBo2 .navbar .navbar-collapse .img-column img {
  width: 100%;
}
.cid-tq34zYoBo2 .navbar .navbar-collapse .text-column {
  overflow: auto;
  max-height: calc(100vh - 7rem);
}
.cid-tq34zYoBo2 .navbar .navbar-collapse .contact-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.cid-tq34zYoBo2 .navbar:not(.navbar-short) .text-column {
  max-height: calc(100vh - 4rem - 3rem);
}
.cid-tq34zYoBo2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tq34zYoBo2 .navbar.collapsed .dropdown-menu {
  text-align: inherit;
  background: transparent !important;
}
.cid-tq34zYoBo2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tq34zYoBo2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tq34zYoBo2 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tq34zYoBo2 .navbar.collapsed ul.navbar-nav {
  word-break: break-word;
}
.cid-tq34zYoBo2 .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: inherit;
}
.cid-tq34zYoBo2 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.cid-tq34zYoBo2 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tq34zYoBo2 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-tq34zYoBo2 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tq34zYoBo2 .navbar-brand {
  min-height: 61px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tq34zYoBo2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tq34zYoBo2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tq34zYoBo2 .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-tq34zYoBo2 .dropdown-item.active,
.cid-tq34zYoBo2 .dropdown-item:active {
  background-color: transparent;
}
.cid-tq34zYoBo2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tq34zYoBo2 .nav-dropdown .link {
  margin: 0.2em 0em;
}
.cid-tq34zYoBo2 .nav-dropdown .link.dropdown-toggle {
  margin: 0;
}
.cid-tq34zYoBo2 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin: 0em 0em;
  padding: 0.2em 0em;
}
.cid-tq34zYoBo2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tq34zYoBo2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tq34zYoBo2 .socicon {
  transition: color 0.3s;
}
.cid-tq34zYoBo2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tq34zYoBo2 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tq34zYoBo2 .navbar-buttons {
  text-align: inherit;
}
.cid-tq34zYoBo2 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tq34zYoBo2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tq34zYoBo2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tq34zYoBo2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tq34zYoBo2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tq34zYoBo2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tq34zYoBo2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tq34zYoBo2 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tq34zYoBo2 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tq34zYoBo2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tq34zYoBo2 .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-tq34zYoBo2 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tq34zYoBo2 .icons-menu {
  text-align: inherit;
  margin-right: 20px;
}
.cid-tq34zYoBo2 .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-tq34zYoBo2 .nav-link:hover,
.cid-tq34zYoBo2 .dropdown-item:hover,
.cid-tq34zYoBo2 .icons-menu .mbr-iconfont:hover {
  color: #e0e0e0 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tq34zYoBo2 .navbar {
    height: 77px;
  }
  .cid-tq34zYoBo2 .navbar.opened {
    height: auto;
  }
}
@media (max-width: 767px) {
  .cid-tq34zYoBo2 .navbar-collapse .img-column {
    display: none;
  }
  .cid-tq34zYoBo2 .icons-menu,
  .cid-tq34zYoBo2 .navbar-buttons,
  .cid-tq34zYoBo2 .contact-block,
  .cid-tq34zYoBo2 .text-column {
    text-align: center !important;
  }
}
.cid-tq34zYoBo2 h6.mbr-fonts-style {
  padding: 0;
}
.cid-tq34zYoBo2 .collapsing {
  transition: 0s;
}
.cid-tq34zYoBo2 .flex-container {
  height: 100%;
  width: 100%;
}
@media (min-width: 769px) {
  .cid-tq34zYoBo2 .flex-container {
    display: flex;
    flex-direction: column;
  }
  .cid-tq34zYoBo2 .flex-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
  .cid-tq34zYoBo2 .flex-row.low-row {
    align-items: flex-end;
    flex: 1 1 auto;
  }
  .cid-tq34zYoBo2 .flex-card {
    display: flex;
    flex-direction: column;
  }
  .cid-tq34zYoBo2 .flex-card h6 {
    padding: .5rem 1rem;
  }
  .cid-tq34zYoBo2 .contact-block {
    margin-left: 20px;
  }
  .cid-tq34zYoBo2 .contact-block ul li {
    text-align: left;
  }
  .cid-tq34zYoBo2 ul.col {
    padding: 0;
  }
  .cid-tq34zYoBo2 .flex-row.low-row {
    justify-content: space-between;
  }
}
.cid-tq34zYoBo2 .icons-menu,
.cid-tq34zYoBo2 .navbar-buttons,
.cid-tq34zYoBo2 .contact-block,
.cid-tq34zYoBo2 .text-column {
  color: #000000;
}
.cid-tq34zYoBo2 .icons-menu a span {
  color: #9a0712;
}
.cid-tq34zYoBo2 H6 {
  color: #232323;
  text-align: left;
}
.cid-tq3kzk16oA {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1280.jpeg");
}
.cid-tq3kzk16oA .container {
  max-width: 1040px;
}
.cid-tq3kzk16oA .items-container {
  display: grid;
  grid-gap: 1.6rem;
  grid-template-columns: repeat(6, 1fr);
  padding: 0 20px;
}
@media (max-width: 991px) {
  .cid-tq3kzk16oA .items-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .cid-tq3kzk16oA .items-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .cid-tq3kzk16oA .items-container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.cid-tq3kzk16oA .social-row {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-tq3kzk16oA .social-row {
    justify-content: center;
  }
}
.cid-tq3kzk16oA .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.4);
  margin-right: 1rem;
  margin-bottom: 12px;
  padding: 6px;
  min-height: 30px;
  min-width: 30px;
}
@media (max-width: 767px) {
  .cid-tq3kzk16oA .row {
    text-align: center;
  }
  .cid-tq3kzk16oA .social-row {
    justify-content: center;
  }
}
.cid-tq3kzk16oA .mbr-section-subtitle {
  color: #000000;
  margin-bottom: 1rem;
  text-align: left;
}
.cid-tq3kzk16oA .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
  text-align: left;
}
.cid-tq3kzk16oA .list li {
  transition: 0.5s all;
}
.cid-tq3kzk16oA .list li:hover {
  opacity: 0.5;
}
.cid-tq3kzk16oA .item-wrap {
  margin-bottom: 8px;
}
.cid-tq3kzk16oA .mbr-text {
  color: #000000;
}
.cid-tq3kzk16oA .footer-separator {
  height: 1px;
  border: none;
  background: #999999;
  margin: 1.6rem 0;
  outline: none;
}
.cid-tq3kzk16oA .mbr-iconfont {
  color: #ffffff;
  font-size: 16px;
}
@media (max-width: 767px) {
  .cid-tq3kzk16oA .copyright-col {
    text-align: center;
  }
}
.cid-tqdyEIE8JU.popup-builder {
  background-color: #ffffff;
}
.cid-tqdyEIE8JU.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tqdyEIE8JU.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tqdyEIE8JU .modal-content,
.cid-tqdyEIE8JU .modal-dialog {
  height: auto;
}
.cid-tqdyEIE8JU .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tqdyEIE8JU .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tqdyEIE8JU .form-wrapper .mbr-form .form-group,
  .cid-tqdyEIE8JU .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tqdyEIE8JU .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tqdyEIE8JU .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tqdyEIE8JU .mbr-text {
  text-align: center;
}
.cid-tqdyEIE8JU .pt-0 {
  padding-top: 0 !important;
}
.cid-tqdyEIE8JU .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tqdyEIE8JU .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tqdyEIE8JU .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tqdyEIE8JU .modal-open {
  overflow: hidden;
}
.cid-tqdyEIE8JU .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tqdyEIE8JU .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tqdyEIE8JU .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tqdyEIE8JU .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tqdyEIE8JU .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tqdyEIE8JU .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tqdyEIE8JU .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tqdyEIE8JU .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tqdyEIE8JU .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tqdyEIE8JU .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tqdyEIE8JU .modal-backdrop.fade {
  opacity: 0;
}
.cid-tqdyEIE8JU .modal-backdrop.show {
  opacity: .5;
}
.cid-tqdyEIE8JU .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tqdyEIE8JU .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tqdyEIE8JU .modal-header {
    padding: 1rem;
  }
}
.cid-tqdyEIE8JU .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tqdyEIE8JU .modal-header .close svg {
  fill: #353535;
}
.cid-tqdyEIE8JU .modal-header .close:hover {
  opacity: 1;
}
.cid-tqdyEIE8JU .modal-header .close:focus {
  outline: none;
}
.cid-tqdyEIE8JU .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tqdyEIE8JU .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tqdyEIE8JU .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tqdyEIE8JU .modal-body {
    padding: 1rem;
  }
}
.cid-tqdyEIE8JU .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tqdyEIE8JU .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tqdyEIE8JU .modal-footer {
    padding: 1rem;
  }
}
.cid-tqdyEIE8JU .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tqdyEIE8JU .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tqdyEIE8JU .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tqdyEIE8JU .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tqdyEIE8JU .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tqdyEIE8JU .modal-lg,
  .cid-tqdyEIE8JU .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tqdyEIE8JU .modal-xl {
    max-width: 1140px;
  }
}
.cid-tqdyEIE8JU .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tqdyEIE8JU .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tqdyEIE8JU .form-group {
  margin-bottom: 1rem;
}
.cid-tqdyEIE8JU .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tqdyEIE8JU .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tqdyEIE8JU .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tqdyEIE8JU .mbr-section-btn {
  margin: 0;
}
.cid-tqdyEIE8JU .mbr-section-btn .btn {
  margin: 0;
}
.cid-tq38OQOJam {
  padding-top: 7rem;
  padding-bottom: 3rem;
  background-color: #f4f4f4;
}
.cid-tq38OQOJam .mbr-media {
  position: relative;
}
.cid-tq38OQOJam .mbr-media img {
  width: 100%;
  object-fit: cover;
  border-radius: 2rem;
}
.cid-tq38OQOJam .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tq38OQOJam .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tq38OQOJam .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tq38OQOJam .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tq38OQOJam .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tq38OQOJam .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-tq38OQOJam .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tq38OS9iyg {
  padding-top: 8rem;
  padding-bottom: 3rem;
}
.cid-tq38OS9iyg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tq38OS9iyg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-tq38OS9iyg .text-container {
  width: 100%;
}
.cid-tq38OS9iyg .mbr-section-title {
  color: #ffffff;
  margin-bottom: 0;
  width: 100%;
}
.cid-tq38OS9iyg .mbr-text {
  color: #FFFFFF;
  margin-bottom: 0;
  margin-top: 20px;
  width: 100%;
}
.cid-tq38OS9iyg .mbr-section-btn {
  margin-top: 10px;
}
.cid-tq38OS9iyg .mbr-text,
.cid-tq38OS9iyg .mbr-section-btn {
  color: #ffffff;
}
.cid-tq38ORHLov {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
@media (min-width: 1400px) {
  .cid-tq38ORHLov .col-lg-4 {
    padding: 0 2.5rem;
  }
}
.cid-tq38ORHLov .mbr-text {
  color: #353535;
}
.cid-tq38ORHLov .mbr-section-title {
  color: #000000;
}
.cid-tq38OSAg2E {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-tq38OSAg2E .contacts-name {
  padding-bottom: 5px;
  margin: 0;
  color: #a3a6b2;
}
.cid-tq38OSAg2E .contacts-info {
  padding-bottom: 30px;
  color: #ffffff;
  margin: 0;
}
.cid-tq38OSAg2E .margin {
  margin-bottom: 10px;
}
.cid-tq38OSAg2E .mbr-section-title {
  color: white;
  margin-bottom: 20px;
  padding: 0;
}
.cid-tq38OSAg2E .description {
  color: #a3a6b2;
  margin-bottom: 50px;
  padding: 0;
}
.cid-tq38OSAg2E .title {
  font-size: 24px;
}
.cid-tq38OSAg2E .form-heading {
  margin-bottom: 40px;
}
.cid-tq38OSAg2E label {
  color: #ffffff;
  margin-bottom: 5px;
}
.cid-tq38OSAg2E input,
.cid-tq38OSAg2E textarea {
  background-color: #3F424E;
  margin-bottom: 30px;
}
.cid-tq38OSAg2E .gray-button {
  margin: 0;
  background-color: #3F424E;
  color: #ffffff;
}
.cid-tq38OSAg2E .mbr-section-btn {
  margin: 0;
  padding: 0;
}
.cid-tq38OSAg2E .form-group {
  padding: 0 5px;
  margin: 0;
}
.cid-tq38OSAg2E .left-side {
  padding: 0;
}
@media (max-width: 1000px) {
  .cid-tq38OSAg2E .gray-button {
    margin-bottom: 50px;
    margin-top: 0px;
  }
}
.cid-tq38OSAg2E .gray-button:hover {
  background-color: #5e6068;
}
.cid-tq38OSAg2E ::placeholder {
  color: #a3a6b2;
}
.cid-tq38OU3BM0 .b-shadow {
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.05);
}
.cid-tq38OU3BM0 .nav-item {
  list-style: none;
}
.cid-tq38OU3BM0 .nav-item:focus,
.cid-tq38OU3BM0 .nav-link:focus {
  outline: none;
}
.cid-tq38OU3BM0 .nav-dropdown .dropdown-menu {
  padding-top: 0;
}
.cid-tq38OU3BM0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tq38OU3BM0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tq38OU3BM0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tq38OU3BM0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tq38OU3BM0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0em 0em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tq38OU3BM0 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  flex-direction: row !important;
  background: #ffffff;
}
.cid-tq38OU3BM0 .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-tq38OU3BM0 .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-tq38OU3BM0 .navbar .navbar-collapse {
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  height: 100%;
  padding-top: 3rem;
  padding-bottom: 3rem;
  z-index: 1;
}
.cid-tq38OU3BM0 .navbar .navbar-collapse > .container {
  height: 100%;
}
.cid-tq38OU3BM0 .navbar .navbar-collapse.show,
.cid-tq38OU3BM0 .navbar .navbar-collapse.collapsing {
  display: -webkit-flex;
}
.cid-tq38OU3BM0 .navbar .navbar-collapse .img-column img {
  width: 100%;
}
.cid-tq38OU3BM0 .navbar .navbar-collapse .text-column {
  overflow: auto;
  max-height: calc(100vh - 7rem);
}
.cid-tq38OU3BM0 .navbar .navbar-collapse .contact-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.cid-tq38OU3BM0 .navbar:not(.navbar-short) .text-column {
  max-height: calc(100vh - 4rem - 3rem);
}
.cid-tq38OU3BM0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tq38OU3BM0 .navbar.collapsed .dropdown-menu {
  text-align: inherit;
  background: transparent !important;
}
.cid-tq38OU3BM0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tq38OU3BM0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tq38OU3BM0 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tq38OU3BM0 .navbar.collapsed ul.navbar-nav {
  word-break: break-word;
}
.cid-tq38OU3BM0 .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: inherit;
}
.cid-tq38OU3BM0 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.cid-tq38OU3BM0 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tq38OU3BM0 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-tq38OU3BM0 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tq38OU3BM0 .navbar-brand {
  min-height: 61px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tq38OU3BM0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tq38OU3BM0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tq38OU3BM0 .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-tq38OU3BM0 .dropdown-item.active,
.cid-tq38OU3BM0 .dropdown-item:active {
  background-color: transparent;
}
.cid-tq38OU3BM0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tq38OU3BM0 .nav-dropdown .link {
  margin: 0.2em 0em;
}
.cid-tq38OU3BM0 .nav-dropdown .link.dropdown-toggle {
  margin: 0;
}
.cid-tq38OU3BM0 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin: 0em 0em;
  padding: 0.2em 0em;
}
.cid-tq38OU3BM0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tq38OU3BM0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tq38OU3BM0 .socicon {
  transition: color 0.3s;
}
.cid-tq38OU3BM0 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tq38OU3BM0 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tq38OU3BM0 .navbar-buttons {
  text-align: inherit;
}
.cid-tq38OU3BM0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tq38OU3BM0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tq38OU3BM0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tq38OU3BM0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tq38OU3BM0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tq38OU3BM0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tq38OU3BM0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tq38OU3BM0 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tq38OU3BM0 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tq38OU3BM0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tq38OU3BM0 .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-tq38OU3BM0 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tq38OU3BM0 .icons-menu {
  text-align: inherit;
  margin-right: 20px;
}
.cid-tq38OU3BM0 .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-tq38OU3BM0 .nav-link:hover,
.cid-tq38OU3BM0 .dropdown-item:hover,
.cid-tq38OU3BM0 .icons-menu .mbr-iconfont:hover {
  color: #e0e0e0 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tq38OU3BM0 .navbar {
    height: 77px;
  }
  .cid-tq38OU3BM0 .navbar.opened {
    height: auto;
  }
}
@media (max-width: 767px) {
  .cid-tq38OU3BM0 .navbar-collapse .img-column {
    display: none;
  }
  .cid-tq38OU3BM0 .icons-menu,
  .cid-tq38OU3BM0 .navbar-buttons,
  .cid-tq38OU3BM0 .contact-block,
  .cid-tq38OU3BM0 .text-column {
    text-align: center !important;
  }
}
.cid-tq38OU3BM0 h6.mbr-fonts-style {
  padding: 0;
}
.cid-tq38OU3BM0 .collapsing {
  transition: 0s;
}
.cid-tq38OU3BM0 .flex-container {
  height: 100%;
  width: 100%;
}
@media (min-width: 769px) {
  .cid-tq38OU3BM0 .flex-container {
    display: flex;
    flex-direction: column;
  }
  .cid-tq38OU3BM0 .flex-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
  .cid-tq38OU3BM0 .flex-row.low-row {
    align-items: flex-end;
    flex: 1 1 auto;
  }
  .cid-tq38OU3BM0 .flex-card {
    display: flex;
    flex-direction: column;
  }
  .cid-tq38OU3BM0 .flex-card h6 {
    padding: .5rem 1rem;
  }
  .cid-tq38OU3BM0 .contact-block {
    margin-left: 20px;
  }
  .cid-tq38OU3BM0 .contact-block ul li {
    text-align: left;
  }
  .cid-tq38OU3BM0 ul.col {
    padding: 0;
  }
  .cid-tq38OU3BM0 .flex-row.low-row {
    justify-content: space-between;
  }
}
.cid-tq38OU3BM0 .icons-menu,
.cid-tq38OU3BM0 .navbar-buttons,
.cid-tq38OU3BM0 .contact-block,
.cid-tq38OU3BM0 .text-column {
  color: #000000;
}
.cid-tq38OU3BM0 .icons-menu a span {
  color: #9a0712;
}
.cid-tq38OU3BM0 H6 {
  color: #232323;
  text-align: left;
}
.cid-tq3kzk16oA {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1280.jpeg");
}
.cid-tq3kzk16oA .container {
  max-width: 1040px;
}
.cid-tq3kzk16oA .items-container {
  display: grid;
  grid-gap: 1.6rem;
  grid-template-columns: repeat(6, 1fr);
  padding: 0 20px;
}
@media (max-width: 991px) {
  .cid-tq3kzk16oA .items-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .cid-tq3kzk16oA .items-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .cid-tq3kzk16oA .items-container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.cid-tq3kzk16oA .social-row {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-tq3kzk16oA .social-row {
    justify-content: center;
  }
}
.cid-tq3kzk16oA .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.4);
  margin-right: 1rem;
  margin-bottom: 12px;
  padding: 6px;
  min-height: 30px;
  min-width: 30px;
}
@media (max-width: 767px) {
  .cid-tq3kzk16oA .row {
    text-align: center;
  }
  .cid-tq3kzk16oA .social-row {
    justify-content: center;
  }
}
.cid-tq3kzk16oA .mbr-section-subtitle {
  color: #000000;
  margin-bottom: 1rem;
  text-align: left;
}
.cid-tq3kzk16oA .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
  text-align: left;
}
.cid-tq3kzk16oA .list li {
  transition: 0.5s all;
}
.cid-tq3kzk16oA .list li:hover {
  opacity: 0.5;
}
.cid-tq3kzk16oA .item-wrap {
  margin-bottom: 8px;
}
.cid-tq3kzk16oA .mbr-text {
  color: #000000;
}
.cid-tq3kzk16oA .footer-separator {
  height: 1px;
  border: none;
  background: #999999;
  margin: 1.6rem 0;
  outline: none;
}
.cid-tq3kzk16oA .mbr-iconfont {
  color: #ffffff;
  font-size: 16px;
}
@media (max-width: 767px) {
  .cid-tq3kzk16oA .copyright-col {
    text-align: center;
  }
}
.cid-tqdyEIEN7m.popup-builder {
  background-color: #ffffff;
}
.cid-tqdyEIEN7m.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tqdyEIEN7m.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tqdyEIEN7m .modal-content,
.cid-tqdyEIEN7m .modal-dialog {
  height: auto;
}
.cid-tqdyEIEN7m .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tqdyEIEN7m .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tqdyEIEN7m .form-wrapper .mbr-form .form-group,
  .cid-tqdyEIEN7m .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tqdyEIEN7m .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tqdyEIEN7m .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tqdyEIEN7m .mbr-text {
  text-align: center;
}
.cid-tqdyEIEN7m .pt-0 {
  padding-top: 0 !important;
}
.cid-tqdyEIEN7m .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tqdyEIEN7m .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tqdyEIEN7m .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tqdyEIEN7m .modal-open {
  overflow: hidden;
}
.cid-tqdyEIEN7m .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tqdyEIEN7m .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tqdyEIEN7m .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tqdyEIEN7m .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tqdyEIEN7m .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tqdyEIEN7m .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tqdyEIEN7m .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tqdyEIEN7m .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tqdyEIEN7m .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tqdyEIEN7m .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tqdyEIEN7m .modal-backdrop.fade {
  opacity: 0;
}
.cid-tqdyEIEN7m .modal-backdrop.show {
  opacity: .5;
}
.cid-tqdyEIEN7m .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tqdyEIEN7m .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tqdyEIEN7m .modal-header {
    padding: 1rem;
  }
}
.cid-tqdyEIEN7m .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tqdyEIEN7m .modal-header .close svg {
  fill: #353535;
}
.cid-tqdyEIEN7m .modal-header .close:hover {
  opacity: 1;
}
.cid-tqdyEIEN7m .modal-header .close:focus {
  outline: none;
}
.cid-tqdyEIEN7m .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tqdyEIEN7m .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tqdyEIEN7m .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tqdyEIEN7m .modal-body {
    padding: 1rem;
  }
}
.cid-tqdyEIEN7m .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tqdyEIEN7m .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tqdyEIEN7m .modal-footer {
    padding: 1rem;
  }
}
.cid-tqdyEIEN7m .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tqdyEIEN7m .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tqdyEIEN7m .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tqdyEIEN7m .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tqdyEIEN7m .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tqdyEIEN7m .modal-lg,
  .cid-tqdyEIEN7m .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tqdyEIEN7m .modal-xl {
    max-width: 1140px;
  }
}
.cid-tqdyEIEN7m .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tqdyEIEN7m .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tqdyEIEN7m .form-group {
  margin-bottom: 1rem;
}
.cid-tqdyEIEN7m .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tqdyEIEN7m .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tqdyEIEN7m .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tqdyEIEN7m .mbr-section-btn {
  margin: 0;
}
.cid-tqdyEIEN7m .mbr-section-btn .btn {
  margin: 0;
}
.cid-tq39AcDDpm {
  padding-top: 8rem;
  padding-bottom: 3rem;
}
.cid-tq39AcDDpm .mbr-fallback-image.disabled {
  display: none;
}
.cid-tq39AcDDpm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-tq39AcDDpm .text-container {
  width: 100%;
}
.cid-tq39AcDDpm .mbr-section-title {
  color: #ffffff;
  margin-bottom: 0;
  width: 100%;
}
.cid-tq39AcDDpm .mbr-text {
  color: #FFFFFF;
  margin-bottom: 0;
  margin-top: 20px;
  width: 100%;
}
.cid-tq39AcDDpm .mbr-section-btn {
  margin-top: 10px;
}
.cid-tq39AcDDpm .mbr-text,
.cid-tq39AcDDpm .mbr-section-btn {
  color: #ffffff;
}
.cid-tq39UPsqV3 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tq39UPsqV3 img,
.cid-tq39UPsqV3 .item-img {
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tq39UPsqV3 .item:focus,
.cid-tq39UPsqV3 span:focus {
  outline: none;
}
.cid-tq39UPsqV3 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tq39UPsqV3 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tq39UPsqV3 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tq39UPsqV3 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tq39UPsqV3 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tq39UPsqV3 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tq39UPsqV3 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tq39UPsqV3 .mbr-section-title {
  color: #232323;
}
.cid-tq39UPsqV3 .mbr-text,
.cid-tq39UPsqV3 .mbr-section-btn {
  text-align: left;
}
.cid-tq39UPsqV3 .item-title {
  text-align: left;
}
.cid-tq39UPsqV3 .item-subtitle {
  text-align: left;
  color: #232323;
}
.cid-tq3aiz3PC4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-tq3aiz3PC4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tq3aiz3PC4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tq3aiz3PC4 .google-map {
  height: 35rem;
  position: relative;
}
.cid-tq3aiz3PC4 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tq3aiz3PC4 .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tq3aiz3PC4 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tq3aiz3PC4 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tq39AdzYKJ {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-tq39AdzYKJ .contacts-name {
  padding-bottom: 5px;
  margin: 0;
  color: #a3a6b2;
}
.cid-tq39AdzYKJ .contacts-info {
  padding-bottom: 30px;
  color: #ffffff;
  margin: 0;
}
.cid-tq39AdzYKJ .margin {
  margin-bottom: 10px;
}
.cid-tq39AdzYKJ .mbr-section-title {
  color: white;
  margin-bottom: 20px;
  padding: 0;
}
.cid-tq39AdzYKJ .description {
  color: #a3a6b2;
  margin-bottom: 50px;
  padding: 0;
}
.cid-tq39AdzYKJ .title {
  font-size: 24px;
}
.cid-tq39AdzYKJ .form-heading {
  margin-bottom: 40px;
}
.cid-tq39AdzYKJ label {
  color: #ffffff;
  margin-bottom: 5px;
}
.cid-tq39AdzYKJ input,
.cid-tq39AdzYKJ textarea {
  background-color: #3F424E;
  margin-bottom: 30px;
}
.cid-tq39AdzYKJ .gray-button {
  margin: 0;
  background-color: #3F424E;
  color: #ffffff;
}
.cid-tq39AdzYKJ .mbr-section-btn {
  margin: 0;
  padding: 0;
}
.cid-tq39AdzYKJ .form-group {
  padding: 0 5px;
  margin: 0;
}
.cid-tq39AdzYKJ .left-side {
  padding: 0;
}
@media (max-width: 1000px) {
  .cid-tq39AdzYKJ .gray-button {
    margin-bottom: 50px;
    margin-top: 0px;
  }
}
.cid-tq39AdzYKJ .gray-button:hover {
  background-color: #5e6068;
}
.cid-tq39AdzYKJ ::placeholder {
  color: #a3a6b2;
}
.cid-tq39AedQWa .b-shadow {
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.05);
}
.cid-tq39AedQWa .nav-item {
  list-style: none;
}
.cid-tq39AedQWa .nav-item:focus,
.cid-tq39AedQWa .nav-link:focus {
  outline: none;
}
.cid-tq39AedQWa .nav-dropdown .dropdown-menu {
  padding-top: 0;
}
.cid-tq39AedQWa .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tq39AedQWa .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tq39AedQWa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tq39AedQWa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tq39AedQWa .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0em 0em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tq39AedQWa .navbar {
  min-height: 77px;
  transition: all 0.3s;
  flex-direction: row !important;
  background: #ffffff;
}
.cid-tq39AedQWa .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-tq39AedQWa .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-tq39AedQWa .navbar .navbar-collapse {
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  height: 100%;
  padding-top: 3rem;
  padding-bottom: 3rem;
  z-index: 1;
}
.cid-tq39AedQWa .navbar .navbar-collapse > .container {
  height: 100%;
}
.cid-tq39AedQWa .navbar .navbar-collapse.show,
.cid-tq39AedQWa .navbar .navbar-collapse.collapsing {
  display: -webkit-flex;
}
.cid-tq39AedQWa .navbar .navbar-collapse .img-column img {
  width: 100%;
}
.cid-tq39AedQWa .navbar .navbar-collapse .text-column {
  overflow: auto;
  max-height: calc(100vh - 7rem);
}
.cid-tq39AedQWa .navbar .navbar-collapse .contact-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.cid-tq39AedQWa .navbar:not(.navbar-short) .text-column {
  max-height: calc(100vh - 4rem - 3rem);
}
.cid-tq39AedQWa .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tq39AedQWa .navbar.collapsed .dropdown-menu {
  text-align: inherit;
  background: transparent !important;
}
.cid-tq39AedQWa .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tq39AedQWa .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tq39AedQWa .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tq39AedQWa .navbar.collapsed ul.navbar-nav {
  word-break: break-word;
}
.cid-tq39AedQWa .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: inherit;
}
.cid-tq39AedQWa .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.cid-tq39AedQWa .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tq39AedQWa .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-tq39AedQWa .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tq39AedQWa .navbar-brand {
  min-height: 61px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tq39AedQWa .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tq39AedQWa .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tq39AedQWa .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-tq39AedQWa .dropdown-item.active,
.cid-tq39AedQWa .dropdown-item:active {
  background-color: transparent;
}
.cid-tq39AedQWa .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tq39AedQWa .nav-dropdown .link {
  margin: 0.2em 0em;
}
.cid-tq39AedQWa .nav-dropdown .link.dropdown-toggle {
  margin: 0;
}
.cid-tq39AedQWa .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin: 0em 0em;
  padding: 0.2em 0em;
}
.cid-tq39AedQWa .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tq39AedQWa .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tq39AedQWa .socicon {
  transition: color 0.3s;
}
.cid-tq39AedQWa .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tq39AedQWa ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tq39AedQWa .navbar-buttons {
  text-align: inherit;
}
.cid-tq39AedQWa button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tq39AedQWa button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tq39AedQWa button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tq39AedQWa button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tq39AedQWa button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tq39AedQWa button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tq39AedQWa nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tq39AedQWa nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tq39AedQWa nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tq39AedQWa nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tq39AedQWa .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-tq39AedQWa .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tq39AedQWa .icons-menu {
  text-align: inherit;
  margin-right: 20px;
}
.cid-tq39AedQWa .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-tq39AedQWa .nav-link:hover,
.cid-tq39AedQWa .dropdown-item:hover,
.cid-tq39AedQWa .icons-menu .mbr-iconfont:hover {
  color: #e0e0e0 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tq39AedQWa .navbar {
    height: 77px;
  }
  .cid-tq39AedQWa .navbar.opened {
    height: auto;
  }
}
@media (max-width: 767px) {
  .cid-tq39AedQWa .navbar-collapse .img-column {
    display: none;
  }
  .cid-tq39AedQWa .icons-menu,
  .cid-tq39AedQWa .navbar-buttons,
  .cid-tq39AedQWa .contact-block,
  .cid-tq39AedQWa .text-column {
    text-align: center !important;
  }
}
.cid-tq39AedQWa h6.mbr-fonts-style {
  padding: 0;
}
.cid-tq39AedQWa .collapsing {
  transition: 0s;
}
.cid-tq39AedQWa .flex-container {
  height: 100%;
  width: 100%;
}
@media (min-width: 769px) {
  .cid-tq39AedQWa .flex-container {
    display: flex;
    flex-direction: column;
  }
  .cid-tq39AedQWa .flex-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
  .cid-tq39AedQWa .flex-row.low-row {
    align-items: flex-end;
    flex: 1 1 auto;
  }
  .cid-tq39AedQWa .flex-card {
    display: flex;
    flex-direction: column;
  }
  .cid-tq39AedQWa .flex-card h6 {
    padding: .5rem 1rem;
  }
  .cid-tq39AedQWa .contact-block {
    margin-left: 20px;
  }
  .cid-tq39AedQWa .contact-block ul li {
    text-align: left;
  }
  .cid-tq39AedQWa ul.col {
    padding: 0;
  }
  .cid-tq39AedQWa .flex-row.low-row {
    justify-content: space-between;
  }
}
.cid-tq39AedQWa .icons-menu,
.cid-tq39AedQWa .navbar-buttons,
.cid-tq39AedQWa .contact-block,
.cid-tq39AedQWa .text-column {
  color: #000000;
}
.cid-tq39AedQWa .icons-menu a span {
  color: #9a0712;
}
.cid-tq39AedQWa H6 {
  color: #232323;
  text-align: left;
}
.cid-tq3kzk16oA {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1280.jpeg");
}
.cid-tq3kzk16oA .container {
  max-width: 1040px;
}
.cid-tq3kzk16oA .items-container {
  display: grid;
  grid-gap: 1.6rem;
  grid-template-columns: repeat(6, 1fr);
  padding: 0 20px;
}
@media (max-width: 991px) {
  .cid-tq3kzk16oA .items-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .cid-tq3kzk16oA .items-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .cid-tq3kzk16oA .items-container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.cid-tq3kzk16oA .social-row {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-tq3kzk16oA .social-row {
    justify-content: center;
  }
}
.cid-tq3kzk16oA .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.4);
  margin-right: 1rem;
  margin-bottom: 12px;
  padding: 6px;
  min-height: 30px;
  min-width: 30px;
}
@media (max-width: 767px) {
  .cid-tq3kzk16oA .row {
    text-align: center;
  }
  .cid-tq3kzk16oA .social-row {
    justify-content: center;
  }
}
.cid-tq3kzk16oA .mbr-section-subtitle {
  color: #000000;
  margin-bottom: 1rem;
  text-align: left;
}
.cid-tq3kzk16oA .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
  text-align: left;
}
.cid-tq3kzk16oA .list li {
  transition: 0.5s all;
}
.cid-tq3kzk16oA .list li:hover {
  opacity: 0.5;
}
.cid-tq3kzk16oA .item-wrap {
  margin-bottom: 8px;
}
.cid-tq3kzk16oA .mbr-text {
  color: #000000;
}
.cid-tq3kzk16oA .footer-separator {
  height: 1px;
  border: none;
  background: #999999;
  margin: 1.6rem 0;
  outline: none;
}
.cid-tq3kzk16oA .mbr-iconfont {
  color: #ffffff;
  font-size: 16px;
}
@media (max-width: 767px) {
  .cid-tq3kzk16oA .copyright-col {
    text-align: center;
  }
}
.cid-tqdyEIEHho.popup-builder {
  background-color: #ffffff;
}
.cid-tqdyEIEHho.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tqdyEIEHho.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tqdyEIEHho .modal-content,
.cid-tqdyEIEHho .modal-dialog {
  height: auto;
}
.cid-tqdyEIEHho .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tqdyEIEHho .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tqdyEIEHho .form-wrapper .mbr-form .form-group,
  .cid-tqdyEIEHho .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tqdyEIEHho .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tqdyEIEHho .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tqdyEIEHho .mbr-text {
  text-align: center;
}
.cid-tqdyEIEHho .pt-0 {
  padding-top: 0 !important;
}
.cid-tqdyEIEHho .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tqdyEIEHho .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tqdyEIEHho .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tqdyEIEHho .modal-open {
  overflow: hidden;
}
.cid-tqdyEIEHho .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tqdyEIEHho .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tqdyEIEHho .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tqdyEIEHho .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tqdyEIEHho .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tqdyEIEHho .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tqdyEIEHho .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tqdyEIEHho .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tqdyEIEHho .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tqdyEIEHho .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tqdyEIEHho .modal-backdrop.fade {
  opacity: 0;
}
.cid-tqdyEIEHho .modal-backdrop.show {
  opacity: .5;
}
.cid-tqdyEIEHho .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tqdyEIEHho .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tqdyEIEHho .modal-header {
    padding: 1rem;
  }
}
.cid-tqdyEIEHho .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tqdyEIEHho .modal-header .close svg {
  fill: #353535;
}
.cid-tqdyEIEHho .modal-header .close:hover {
  opacity: 1;
}
.cid-tqdyEIEHho .modal-header .close:focus {
  outline: none;
}
.cid-tqdyEIEHho .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tqdyEIEHho .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tqdyEIEHho .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tqdyEIEHho .modal-body {
    padding: 1rem;
  }
}
.cid-tqdyEIEHho .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tqdyEIEHho .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tqdyEIEHho .modal-footer {
    padding: 1rem;
  }
}
.cid-tqdyEIEHho .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tqdyEIEHho .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tqdyEIEHho .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tqdyEIEHho .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tqdyEIEHho .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tqdyEIEHho .modal-lg,
  .cid-tqdyEIEHho .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tqdyEIEHho .modal-xl {
    max-width: 1140px;
  }
}
.cid-tqdyEIEHho .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tqdyEIEHho .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tqdyEIEHho .form-group {
  margin-bottom: 1rem;
}
.cid-tqdyEIEHho .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tqdyEIEHho .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tqdyEIEHho .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tqdyEIEHho .mbr-section-btn {
  margin: 0;
}
.cid-tqdyEIEHho .mbr-section-btn .btn {
  margin: 0;
}
.cid-tq3aAxOgsa {
  padding-top: 8rem;
  padding-bottom: 3rem;
}
.cid-tq3aAxOgsa .mbr-fallback-image.disabled {
  display: none;
}
.cid-tq3aAxOgsa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-tq3aAxOgsa .text-container {
  width: 100%;
}
.cid-tq3aAxOgsa .mbr-section-title {
  color: #ffffff;
  margin-bottom: 0;
  width: 100%;
}
.cid-tq3aAxOgsa .mbr-text {
  color: #FFFFFF;
  margin-bottom: 0;
  margin-top: 20px;
  width: 100%;
}
.cid-tq3aAxOgsa .mbr-section-btn {
  margin-top: 10px;
}
.cid-tq3aAxOgsa .mbr-text,
.cid-tq3aAxOgsa .mbr-section-btn {
  color: #ffffff;
}
.cid-tq3bhJSofj {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tq3bhJSofj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tq3bhJSofj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tq3bhJSofj .container {
  max-width: 1140px;
}
.cid-tq3bhJSofj .row {
  align-items: stretch;
}
.cid-tq3bhJSofj .col-title {
  position: relative;
  padding: 10px;
  flex-grow: 1;
}
.cid-tq3bhJSofj .col-text {
  padding: 10px;
  flex-grow: 1;
}
.cid-tq3bhJSofj .title-container {
  position: sticky;
  top: 57px;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tq3bhJSofj .title-container {
    position: static;
  }
}
.cid-tq3bhJSofj .mbr-section-title {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  width: 100%;
}
.cid-tq3bhJSofj .item-text {
  width: 100%;
  margin-bottom: 20px;
}
.cid-tq3bhJSofj .item-text:not(:first-child) {
  padding-top: 40px;
}
@media (max-width: 767px) {
  .cid-tq3bhJSofj .item-text:not(:first-child) {
    margin-bottom: 0;
  }
}
.cid-tq3bhJSofj .mbr-section-subtitle {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 15px !important;
  width: 100%;
}
.cid-tq3bhJSofj .mbr-text {
  color: #1d191f;
  margin-bottom: 0;
  width: 100%;
}
.cid-tq3c2DsE2J {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tq3c2DsE2J .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tq3buxPQzU {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tq3buxPQzU .card-wrapper {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tq3buxPQzU .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tq3buxPQzU .line {
  width: calc(100% - 2rem);
  background: currentColor;
  height: 2px;
  margin: auto;
  margin-top: 2rem;
}
.cid-tq3buxPQzU .card-title {
  padding-right: 1rem;
  margin: 0;
}
.cid-tq3buxPQzU .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
  padding: 1rem;
  border-radius: 50%;
  background: #fa4529;
  margin-right: 1rem;
}
.cid-tq3buxPQzU .mbr-flex {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-tq3buxPQzU .card-wrapper,
  .cid-tq3buxPQzU .mbr-flex {
    flex-direction: column;
  }
  .cid-tq3buxPQzU .mbr-iconfont {
    margin-bottom: 1rem;
    margin-right: 0;
  }
  .cid-tq3buxPQzU h4 {
    padding: 0;
  }
}
.cid-tq3buxPQzU .card-text {
  color: #000000;
}
.cid-tq3aAA5OAw {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-tq3aAA5OAw .contacts-name {
  padding-bottom: 5px;
  margin: 0;
  color: #a3a6b2;
}
.cid-tq3aAA5OAw .contacts-info {
  padding-bottom: 30px;
  color: #ffffff;
  margin: 0;
}
.cid-tq3aAA5OAw .margin {
  margin-bottom: 10px;
}
.cid-tq3aAA5OAw .mbr-section-title {
  color: white;
  margin-bottom: 20px;
  padding: 0;
}
.cid-tq3aAA5OAw .description {
  color: #a3a6b2;
  margin-bottom: 50px;
  padding: 0;
}
.cid-tq3aAA5OAw .title {
  font-size: 24px;
}
.cid-tq3aAA5OAw .form-heading {
  margin-bottom: 40px;
}
.cid-tq3aAA5OAw label {
  color: #ffffff;
  margin-bottom: 5px;
}
.cid-tq3aAA5OAw input,
.cid-tq3aAA5OAw textarea {
  background-color: #3F424E;
  margin-bottom: 30px;
}
.cid-tq3aAA5OAw .gray-button {
  margin: 0;
  background-color: #3F424E;
  color: #ffffff;
}
.cid-tq3aAA5OAw .mbr-section-btn {
  margin: 0;
  padding: 0;
}
.cid-tq3aAA5OAw .form-group {
  padding: 0 5px;
  margin: 0;
}
.cid-tq3aAA5OAw .left-side {
  padding: 0;
}
@media (max-width: 1000px) {
  .cid-tq3aAA5OAw .gray-button {
    margin-bottom: 50px;
    margin-top: 0px;
  }
}
.cid-tq3aAA5OAw .gray-button:hover {
  background-color: #5e6068;
}
.cid-tq3aAA5OAw ::placeholder {
  color: #a3a6b2;
}
.cid-tq3aAB0whv .b-shadow {
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.05);
}
.cid-tq3aAB0whv .nav-item {
  list-style: none;
}
.cid-tq3aAB0whv .nav-item:focus,
.cid-tq3aAB0whv .nav-link:focus {
  outline: none;
}
.cid-tq3aAB0whv .nav-dropdown .dropdown-menu {
  padding-top: 0;
}
.cid-tq3aAB0whv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tq3aAB0whv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tq3aAB0whv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tq3aAB0whv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tq3aAB0whv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0em 0em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tq3aAB0whv .navbar {
  min-height: 77px;
  transition: all 0.3s;
  flex-direction: row !important;
  background: #ffffff;
}
.cid-tq3aAB0whv .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-tq3aAB0whv .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-tq3aAB0whv .navbar .navbar-collapse {
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  height: 100%;
  padding-top: 3rem;
  padding-bottom: 3rem;
  z-index: 1;
}
.cid-tq3aAB0whv .navbar .navbar-collapse > .container {
  height: 100%;
}
.cid-tq3aAB0whv .navbar .navbar-collapse.show,
.cid-tq3aAB0whv .navbar .navbar-collapse.collapsing {
  display: -webkit-flex;
}
.cid-tq3aAB0whv .navbar .navbar-collapse .img-column img {
  width: 100%;
}
.cid-tq3aAB0whv .navbar .navbar-collapse .text-column {
  overflow: auto;
  max-height: calc(100vh - 7rem);
}
.cid-tq3aAB0whv .navbar .navbar-collapse .contact-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.cid-tq3aAB0whv .navbar:not(.navbar-short) .text-column {
  max-height: calc(100vh - 4rem - 3rem);
}
.cid-tq3aAB0whv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tq3aAB0whv .navbar.collapsed .dropdown-menu {
  text-align: inherit;
  background: transparent !important;
}
.cid-tq3aAB0whv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tq3aAB0whv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tq3aAB0whv .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tq3aAB0whv .navbar.collapsed ul.navbar-nav {
  word-break: break-word;
}
.cid-tq3aAB0whv .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: inherit;
}
.cid-tq3aAB0whv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.cid-tq3aAB0whv .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tq3aAB0whv .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-tq3aAB0whv .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tq3aAB0whv .navbar-brand {
  min-height: 61px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tq3aAB0whv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tq3aAB0whv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tq3aAB0whv .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-tq3aAB0whv .dropdown-item.active,
.cid-tq3aAB0whv .dropdown-item:active {
  background-color: transparent;
}
.cid-tq3aAB0whv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tq3aAB0whv .nav-dropdown .link {
  margin: 0.2em 0em;
}
.cid-tq3aAB0whv .nav-dropdown .link.dropdown-toggle {
  margin: 0;
}
.cid-tq3aAB0whv .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin: 0em 0em;
  padding: 0.2em 0em;
}
.cid-tq3aAB0whv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tq3aAB0whv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tq3aAB0whv .socicon {
  transition: color 0.3s;
}
.cid-tq3aAB0whv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tq3aAB0whv ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tq3aAB0whv .navbar-buttons {
  text-align: inherit;
}
.cid-tq3aAB0whv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tq3aAB0whv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tq3aAB0whv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tq3aAB0whv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tq3aAB0whv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tq3aAB0whv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tq3aAB0whv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tq3aAB0whv nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tq3aAB0whv nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tq3aAB0whv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tq3aAB0whv .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-tq3aAB0whv .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tq3aAB0whv .icons-menu {
  text-align: inherit;
  margin-right: 20px;
}
.cid-tq3aAB0whv .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-tq3aAB0whv .nav-link:hover,
.cid-tq3aAB0whv .dropdown-item:hover,
.cid-tq3aAB0whv .icons-menu .mbr-iconfont:hover {
  color: #e0e0e0 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tq3aAB0whv .navbar {
    height: 77px;
  }
  .cid-tq3aAB0whv .navbar.opened {
    height: auto;
  }
}
@media (max-width: 767px) {
  .cid-tq3aAB0whv .navbar-collapse .img-column {
    display: none;
  }
  .cid-tq3aAB0whv .icons-menu,
  .cid-tq3aAB0whv .navbar-buttons,
  .cid-tq3aAB0whv .contact-block,
  .cid-tq3aAB0whv .text-column {
    text-align: center !important;
  }
}
.cid-tq3aAB0whv h6.mbr-fonts-style {
  padding: 0;
}
.cid-tq3aAB0whv .collapsing {
  transition: 0s;
}
.cid-tq3aAB0whv .flex-container {
  height: 100%;
  width: 100%;
}
@media (min-width: 769px) {
  .cid-tq3aAB0whv .flex-container {
    display: flex;
    flex-direction: column;
  }
  .cid-tq3aAB0whv .flex-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
  .cid-tq3aAB0whv .flex-row.low-row {
    align-items: flex-end;
    flex: 1 1 auto;
  }
  .cid-tq3aAB0whv .flex-card {
    display: flex;
    flex-direction: column;
  }
  .cid-tq3aAB0whv .flex-card h6 {
    padding: .5rem 1rem;
  }
  .cid-tq3aAB0whv .contact-block {
    margin-left: 20px;
  }
  .cid-tq3aAB0whv .contact-block ul li {
    text-align: left;
  }
  .cid-tq3aAB0whv ul.col {
    padding: 0;
  }
  .cid-tq3aAB0whv .flex-row.low-row {
    justify-content: space-between;
  }
}
.cid-tq3aAB0whv .icons-menu,
.cid-tq3aAB0whv .navbar-buttons,
.cid-tq3aAB0whv .contact-block,
.cid-tq3aAB0whv .text-column {
  color: #000000;
}
.cid-tq3aAB0whv .icons-menu a span {
  color: #9a0712;
}
.cid-tq3aAB0whv H6 {
  color: #232323;
  text-align: left;
}
.cid-tq3kzk16oA {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1280.jpeg");
}
.cid-tq3kzk16oA .container {
  max-width: 1040px;
}
.cid-tq3kzk16oA .items-container {
  display: grid;
  grid-gap: 1.6rem;
  grid-template-columns: repeat(6, 1fr);
  padding: 0 20px;
}
@media (max-width: 991px) {
  .cid-tq3kzk16oA .items-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .cid-tq3kzk16oA .items-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .cid-tq3kzk16oA .items-container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.cid-tq3kzk16oA .social-row {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-tq3kzk16oA .social-row {
    justify-content: center;
  }
}
.cid-tq3kzk16oA .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.4);
  margin-right: 1rem;
  margin-bottom: 12px;
  padding: 6px;
  min-height: 30px;
  min-width: 30px;
}
@media (max-width: 767px) {
  .cid-tq3kzk16oA .row {
    text-align: center;
  }
  .cid-tq3kzk16oA .social-row {
    justify-content: center;
  }
}
.cid-tq3kzk16oA .mbr-section-subtitle {
  color: #000000;
  margin-bottom: 1rem;
  text-align: left;
}
.cid-tq3kzk16oA .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
  text-align: left;
}
.cid-tq3kzk16oA .list li {
  transition: 0.5s all;
}
.cid-tq3kzk16oA .list li:hover {
  opacity: 0.5;
}
.cid-tq3kzk16oA .item-wrap {
  margin-bottom: 8px;
}
.cid-tq3kzk16oA .mbr-text {
  color: #000000;
}
.cid-tq3kzk16oA .footer-separator {
  height: 1px;
  border: none;
  background: #999999;
  margin: 1.6rem 0;
  outline: none;
}
.cid-tq3kzk16oA .mbr-iconfont {
  color: #ffffff;
  font-size: 16px;
}
@media (max-width: 767px) {
  .cid-tq3kzk16oA .copyright-col {
    text-align: center;
  }
}
.cid-tqdyEIEJT8.popup-builder {
  background-color: #ffffff;
}
.cid-tqdyEIEJT8.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tqdyEIEJT8.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tqdyEIEJT8 .modal-content,
.cid-tqdyEIEJT8 .modal-dialog {
  height: auto;
}
.cid-tqdyEIEJT8 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tqdyEIEJT8 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tqdyEIEJT8 .form-wrapper .mbr-form .form-group,
  .cid-tqdyEIEJT8 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tqdyEIEJT8 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tqdyEIEJT8 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tqdyEIEJT8 .mbr-text {
  text-align: center;
}
.cid-tqdyEIEJT8 .pt-0 {
  padding-top: 0 !important;
}
.cid-tqdyEIEJT8 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tqdyEIEJT8 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tqdyEIEJT8 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tqdyEIEJT8 .modal-open {
  overflow: hidden;
}
.cid-tqdyEIEJT8 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tqdyEIEJT8 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tqdyEIEJT8 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tqdyEIEJT8 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tqdyEIEJT8 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tqdyEIEJT8 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tqdyEIEJT8 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tqdyEIEJT8 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tqdyEIEJT8 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tqdyEIEJT8 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tqdyEIEJT8 .modal-backdrop.fade {
  opacity: 0;
}
.cid-tqdyEIEJT8 .modal-backdrop.show {
  opacity: .5;
}
.cid-tqdyEIEJT8 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tqdyEIEJT8 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tqdyEIEJT8 .modal-header {
    padding: 1rem;
  }
}
.cid-tqdyEIEJT8 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tqdyEIEJT8 .modal-header .close svg {
  fill: #353535;
}
.cid-tqdyEIEJT8 .modal-header .close:hover {
  opacity: 1;
}
.cid-tqdyEIEJT8 .modal-header .close:focus {
  outline: none;
}
.cid-tqdyEIEJT8 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tqdyEIEJT8 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tqdyEIEJT8 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tqdyEIEJT8 .modal-body {
    padding: 1rem;
  }
}
.cid-tqdyEIEJT8 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tqdyEIEJT8 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tqdyEIEJT8 .modal-footer {
    padding: 1rem;
  }
}
.cid-tqdyEIEJT8 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tqdyEIEJT8 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tqdyEIEJT8 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tqdyEIEJT8 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tqdyEIEJT8 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tqdyEIEJT8 .modal-lg,
  .cid-tqdyEIEJT8 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tqdyEIEJT8 .modal-xl {
    max-width: 1140px;
  }
}
.cid-tqdyEIEJT8 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tqdyEIEJT8 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tqdyEIEJT8 .form-group {
  margin-bottom: 1rem;
}
.cid-tqdyEIEJT8 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tqdyEIEJT8 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tqdyEIEJT8 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tqdyEIEJT8 .mbr-section-btn {
  margin: 0;
}
.cid-tqdyEIEJT8 .mbr-section-btn .btn {
  margin: 0;
}
.cid-tq3ehXU03e {
  background-color: #ffffff;
  padding-top: 6rem;
  padding-bottom: 2rem;
}
@media (min-width: 768px) {
  .cid-tq3ehXU03e .carousel {
    height: 650px;
  }
}
@media (max-width: 767px) {
  .cid-tq3ehXU03e .carousel {
    height: 80vh;
  }
}
.cid-tq3ehXU03e .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tq3ehXU03e .carousel-item,
.cid-tq3ehXU03e .carousel-inner {
  height: 100%;
}
.cid-tq3ehXU03e .carousel-caption {
  top: 50%;
  transform: translateY(-50%);
}
.cid-tq3ehXU03e .mbr-section-btn {
  margin-top: 25px;
  margin-bottom: 34px;
}
@media (max-width: 767px) {
  .cid-tq3ehXU03e .mbr-section-btn .btn {
    padding: 1rem 2rem;
  }
}
.cid-tq3ehXU03e .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tq3ehXU03e .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tq3ehXU03e .carousel-control:hover.carousel-control-prev .mobi-mbri {
  transform: translateX(3px);
}
.cid-tq3ehXU03e .carousel-control:hover.carousel-control-next .mobi-mbri {
  transform: translateX(-3px);
}
.cid-tq3ehXU03e .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tq3ehXU03e .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tq3ehXU03e .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tq3ehXU03e .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tq3ehXU03e .carousel-control {
  top: 50%;
  width: 92px;
  height: 92px;
  margin-top: -1.5rem;
  font-size: 21px;
  border-radius: 50%;
  color: #202020;
  background-color: #e3e3e3;
  border: 1px solid #e3e3e3;
  transition: all 0.2s ease-out;
  opacity: 1;
}
.cid-tq3ehXU03e .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: -2.5rem;
}
.cid-tq3ehXU03e .carousel-control.carousel-control-next {
  right: 0;
  margin-right: -2.5rem;
}
.cid-tq3ehXU03e .carousel-control .mobi-mbri {
  transition: all 0.2s ease-out;
}
@media (max-width: 768px) {
  .cid-tq3ehXU03e .carousel-control {
    display: none !important;
  }
}
.cid-tq3ehXU03e .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 2rem !important;
  align-items: center;
}
.cid-tq3ehXU03e .carousel-indicators li {
  max-width: 10px;
  max-height: 10px;
  height: 6px;
  width: 6px;
  margin: 10px;
  background-color: #e3e3e3;
  border: none;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.2s ease-in-out;
}
.cid-tq3ehXU03e .carousel-indicators li.active,
.cid-tq3ehXU03e .carousel-indicators li:hover {
  transform: scale(1.6);
}
.cid-tq3ehXU03e .carousel-indicators li::after,
.cid-tq3ehXU03e .carousel-indicators li::before {
  content: none;
}
.cid-tq3ehXU03e .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tq3ehXU03e .carousel-indicators {
    display: none !important;
  }
}
.cid-tq3d4tqkZT {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tq3d4tqkZT .main-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.cid-tq3d4tqkZT .history-item {
  position: relative;
  width: 100%;
  display: flex;
  align-items: stretch;
  margin-top: 180px;
}
@media (max-width: 991px) {
  .cid-tq3d4tqkZT .history-item {
    flex-wrap: wrap;
    margin-top: 110px;
  }
}
@media (max-width: 575px) {
  .cid-tq3d4tqkZT .history-item {
    margin-top: 100px;
  }
}
.cid-tq3d4tqkZT .history-item-first {
  margin-top: 0;
}
.cid-tq3d4tqkZT .img-container {
  width: 50%;
  padding-left: 60px;
  padding-right: 60px;
}
@media (max-width: 1200px) {
  .cid-tq3d4tqkZT .img-container {
    padding-left: 0;
    padding-right: 55px;
  }
}
@media (max-width: 991px) {
  .cid-tq3d4tqkZT .img-container {
    order: 1;
    width: 100%;
    padding-left: 35px !important;
    padding-right: 0 !important;
  }
}
.cid-tq3d4tqkZT .image-wrapper {
  max-width: 605px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-tq3d4tqkZT .image-wrapper {
    max-width: 550px;
  }
}
.cid-tq3d4tqkZT .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tq3d4tqkZT .text-container {
  width: 50%;
  padding-left: 60px;
  padding-right: 60px;
}
@media (max-width: 1200px) {
  .cid-tq3d4tqkZT .text-container {
    padding-left: 55px;
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  .cid-tq3d4tqkZT .text-container {
    order: 2;
    width: 100%;
    padding-left: 35px !important;
    padding-right: 0 !important;
    padding-top: 18px;
  }
}
@media (max-width: 1200px) {
  .cid-tq3d4tqkZT .history-item-reverse .img-container {
    padding-left: 55px;
    padding-right: 0;
  }
}
@media (max-width: 1200px) {
  .cid-tq3d4tqkZT .history-item-reverse .text-container {
    padding-left: 0;
    padding-right: 55px;
  }
}
.cid-tq3d4tqkZT .text-wrapper {
  max-width: 605px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-tq3d4tqkZT .text-wrapper {
    max-width: 550px;
  }
}
.cid-tq3d4tqkZT .card-title {
  width: 100%;
  color: #A2A4A7;
}
.cid-tq3d4tqkZT .card-subtitle {
  width: 100%;
  color: #45494E;
  margin-top: 16px;
}
.cid-tq3d4tqkZT .mbr-text {
  width: 100%;
  color: #45494E;
  margin-top: 36px;
}
.cid-tq3d4tqkZT .mbr-section-btn {
  margin-top: 35px;
}
@media (max-width: 767px) {
  .cid-tq3d4tqkZT .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-tq3d4tqkZT .center-line {
  position: absolute;
  width: 1px;
  left: 50%;
  transform: translateX(-50%);
  top: 15px;
  height: 100%;
  background-color: #45494e;
  opacity: 0.2;
}
@media (max-width: 991px) {
  .cid-tq3d4tqkZT .center-line {
    left: 5px;
    transform: translateX(0);
  }
}
.cid-tq3d4tqkZT .item-circle {
  position: absolute;
  top: 15px;
  left: 50%;
  width: 11px;
  height: 11px;
  background-color: #ffffff;
  border-radius: 50%;
  border: 1px solid #45494e;
  transform: translateX(-50%);
}
@media (max-width: 991px) {
  .cid-tq3d4tqkZT .item-circle {
    left: 0;
    transform: translateX(0);
  }
}
.cid-tq3f0KnSJt {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fefefe;
}
@media (max-width: 991px) {
  .cid-tq3f0KnSJt .col-title {
    margin-bottom: 20px;
  }
}
.cid-tq3f0KnSJt .mbr-section-title {
  color: #45494E;
}
.cid-tq3f0KnSJt .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-tq3f0KnSJt .mbr-text {
  color: #5c6064;
}
.cid-tq3cqqk8ew {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-tq3cqqk8ew .contacts-name {
  padding-bottom: 5px;
  margin: 0;
  color: #a3a6b2;
}
.cid-tq3cqqk8ew .contacts-info {
  padding-bottom: 30px;
  color: #ffffff;
  margin: 0;
}
.cid-tq3cqqk8ew .margin {
  margin-bottom: 10px;
}
.cid-tq3cqqk8ew .mbr-section-title {
  color: white;
  margin-bottom: 20px;
  padding: 0;
}
.cid-tq3cqqk8ew .description {
  color: #a3a6b2;
  margin-bottom: 50px;
  padding: 0;
}
.cid-tq3cqqk8ew .title {
  font-size: 24px;
}
.cid-tq3cqqk8ew .form-heading {
  margin-bottom: 40px;
}
.cid-tq3cqqk8ew label {
  color: #ffffff;
  margin-bottom: 5px;
}
.cid-tq3cqqk8ew input,
.cid-tq3cqqk8ew textarea {
  background-color: #3F424E;
  margin-bottom: 30px;
}
.cid-tq3cqqk8ew .gray-button {
  margin: 0;
  background-color: #3F424E;
  color: #ffffff;
}
.cid-tq3cqqk8ew .mbr-section-btn {
  margin: 0;
  padding: 0;
}
.cid-tq3cqqk8ew .form-group {
  padding: 0 5px;
  margin: 0;
}
.cid-tq3cqqk8ew .left-side {
  padding: 0;
}
@media (max-width: 1000px) {
  .cid-tq3cqqk8ew .gray-button {
    margin-bottom: 50px;
    margin-top: 0px;
  }
}
.cid-tq3cqqk8ew .gray-button:hover {
  background-color: #5e6068;
}
.cid-tq3cqqk8ew ::placeholder {
  color: #a3a6b2;
}
.cid-tq3cqr7oYl .b-shadow {
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.05);
}
.cid-tq3cqr7oYl .nav-item {
  list-style: none;
}
.cid-tq3cqr7oYl .nav-item:focus,
.cid-tq3cqr7oYl .nav-link:focus {
  outline: none;
}
.cid-tq3cqr7oYl .nav-dropdown .dropdown-menu {
  padding-top: 0;
}
.cid-tq3cqr7oYl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tq3cqr7oYl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tq3cqr7oYl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tq3cqr7oYl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tq3cqr7oYl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0em 0em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tq3cqr7oYl .navbar {
  min-height: 77px;
  transition: all 0.3s;
  flex-direction: row !important;
  background: #ffffff;
}
.cid-tq3cqr7oYl .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-tq3cqr7oYl .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-tq3cqr7oYl .navbar .navbar-collapse {
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  height: 100%;
  padding-top: 3rem;
  padding-bottom: 3rem;
  z-index: 1;
}
.cid-tq3cqr7oYl .navbar .navbar-collapse > .container {
  height: 100%;
}
.cid-tq3cqr7oYl .navbar .navbar-collapse.show,
.cid-tq3cqr7oYl .navbar .navbar-collapse.collapsing {
  display: -webkit-flex;
}
.cid-tq3cqr7oYl .navbar .navbar-collapse .img-column img {
  width: 100%;
}
.cid-tq3cqr7oYl .navbar .navbar-collapse .text-column {
  overflow: auto;
  max-height: calc(100vh - 7rem);
}
.cid-tq3cqr7oYl .navbar .navbar-collapse .contact-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.cid-tq3cqr7oYl .navbar:not(.navbar-short) .text-column {
  max-height: calc(100vh - 4rem - 3rem);
}
.cid-tq3cqr7oYl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tq3cqr7oYl .navbar.collapsed .dropdown-menu {
  text-align: inherit;
  background: transparent !important;
}
.cid-tq3cqr7oYl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tq3cqr7oYl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tq3cqr7oYl .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tq3cqr7oYl .navbar.collapsed ul.navbar-nav {
  word-break: break-word;
}
.cid-tq3cqr7oYl .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: inherit;
}
.cid-tq3cqr7oYl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.cid-tq3cqr7oYl .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tq3cqr7oYl .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-tq3cqr7oYl .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tq3cqr7oYl .navbar-brand {
  min-height: 61px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tq3cqr7oYl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tq3cqr7oYl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tq3cqr7oYl .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-tq3cqr7oYl .dropdown-item.active,
.cid-tq3cqr7oYl .dropdown-item:active {
  background-color: transparent;
}
.cid-tq3cqr7oYl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tq3cqr7oYl .nav-dropdown .link {
  margin: 0.2em 0em;
}
.cid-tq3cqr7oYl .nav-dropdown .link.dropdown-toggle {
  margin: 0;
}
.cid-tq3cqr7oYl .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin: 0em 0em;
  padding: 0.2em 0em;
}
.cid-tq3cqr7oYl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tq3cqr7oYl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tq3cqr7oYl .socicon {
  transition: color 0.3s;
}
.cid-tq3cqr7oYl .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tq3cqr7oYl ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tq3cqr7oYl .navbar-buttons {
  text-align: inherit;
}
.cid-tq3cqr7oYl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tq3cqr7oYl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tq3cqr7oYl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tq3cqr7oYl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tq3cqr7oYl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tq3cqr7oYl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tq3cqr7oYl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tq3cqr7oYl nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tq3cqr7oYl nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tq3cqr7oYl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tq3cqr7oYl .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-tq3cqr7oYl .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tq3cqr7oYl .icons-menu {
  text-align: inherit;
  margin-right: 20px;
}
.cid-tq3cqr7oYl .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-tq3cqr7oYl .nav-link:hover,
.cid-tq3cqr7oYl .dropdown-item:hover,
.cid-tq3cqr7oYl .icons-menu .mbr-iconfont:hover {
  color: #e0e0e0 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tq3cqr7oYl .navbar {
    height: 77px;
  }
  .cid-tq3cqr7oYl .navbar.opened {
    height: auto;
  }
}
@media (max-width: 767px) {
  .cid-tq3cqr7oYl .navbar-collapse .img-column {
    display: none;
  }
  .cid-tq3cqr7oYl .icons-menu,
  .cid-tq3cqr7oYl .navbar-buttons,
  .cid-tq3cqr7oYl .contact-block,
  .cid-tq3cqr7oYl .text-column {
    text-align: center !important;
  }
}
.cid-tq3cqr7oYl h6.mbr-fonts-style {
  padding: 0;
}
.cid-tq3cqr7oYl .collapsing {
  transition: 0s;
}
.cid-tq3cqr7oYl .flex-container {
  height: 100%;
  width: 100%;
}
@media (min-width: 769px) {
  .cid-tq3cqr7oYl .flex-container {
    display: flex;
    flex-direction: column;
  }
  .cid-tq3cqr7oYl .flex-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
  .cid-tq3cqr7oYl .flex-row.low-row {
    align-items: flex-end;
    flex: 1 1 auto;
  }
  .cid-tq3cqr7oYl .flex-card {
    display: flex;
    flex-direction: column;
  }
  .cid-tq3cqr7oYl .flex-card h6 {
    padding: .5rem 1rem;
  }
  .cid-tq3cqr7oYl .contact-block {
    margin-left: 20px;
  }
  .cid-tq3cqr7oYl .contact-block ul li {
    text-align: left;
  }
  .cid-tq3cqr7oYl ul.col {
    padding: 0;
  }
  .cid-tq3cqr7oYl .flex-row.low-row {
    justify-content: space-between;
  }
}
.cid-tq3cqr7oYl .icons-menu,
.cid-tq3cqr7oYl .navbar-buttons,
.cid-tq3cqr7oYl .contact-block,
.cid-tq3cqr7oYl .text-column {
  color: #000000;
}
.cid-tq3cqr7oYl .icons-menu a span {
  color: #9a0712;
}
.cid-tq3cqr7oYl H6 {
  color: #232323;
  text-align: left;
}
.cid-tq3kzk16oA {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1280.jpeg");
}
.cid-tq3kzk16oA .container {
  max-width: 1040px;
}
.cid-tq3kzk16oA .items-container {
  display: grid;
  grid-gap: 1.6rem;
  grid-template-columns: repeat(6, 1fr);
  padding: 0 20px;
}
@media (max-width: 991px) {
  .cid-tq3kzk16oA .items-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .cid-tq3kzk16oA .items-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .cid-tq3kzk16oA .items-container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.cid-tq3kzk16oA .social-row {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-tq3kzk16oA .social-row {
    justify-content: center;
  }
}
.cid-tq3kzk16oA .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.4);
  margin-right: 1rem;
  margin-bottom: 12px;
  padding: 6px;
  min-height: 30px;
  min-width: 30px;
}
@media (max-width: 767px) {
  .cid-tq3kzk16oA .row {
    text-align: center;
  }
  .cid-tq3kzk16oA .social-row {
    justify-content: center;
  }
}
.cid-tq3kzk16oA .mbr-section-subtitle {
  color: #000000;
  margin-bottom: 1rem;
  text-align: left;
}
.cid-tq3kzk16oA .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
  text-align: left;
}
.cid-tq3kzk16oA .list li {
  transition: 0.5s all;
}
.cid-tq3kzk16oA .list li:hover {
  opacity: 0.5;
}
.cid-tq3kzk16oA .item-wrap {
  margin-bottom: 8px;
}
.cid-tq3kzk16oA .mbr-text {
  color: #000000;
}
.cid-tq3kzk16oA .footer-separator {
  height: 1px;
  border: none;
  background: #999999;
  margin: 1.6rem 0;
  outline: none;
}
.cid-tq3kzk16oA .mbr-iconfont {
  color: #ffffff;
  font-size: 16px;
}
@media (max-width: 767px) {
  .cid-tq3kzk16oA .copyright-col {
    text-align: center;
  }
}
.cid-tqdyEIEDp3.popup-builder {
  background-color: #ffffff;
}
.cid-tqdyEIEDp3.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tqdyEIEDp3.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tqdyEIEDp3 .modal-content,
.cid-tqdyEIEDp3 .modal-dialog {
  height: auto;
}
.cid-tqdyEIEDp3 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tqdyEIEDp3 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tqdyEIEDp3 .form-wrapper .mbr-form .form-group,
  .cid-tqdyEIEDp3 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tqdyEIEDp3 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tqdyEIEDp3 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tqdyEIEDp3 .mbr-text {
  text-align: center;
}
.cid-tqdyEIEDp3 .pt-0 {
  padding-top: 0 !important;
}
.cid-tqdyEIEDp3 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tqdyEIEDp3 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tqdyEIEDp3 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tqdyEIEDp3 .modal-open {
  overflow: hidden;
}
.cid-tqdyEIEDp3 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tqdyEIEDp3 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tqdyEIEDp3 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tqdyEIEDp3 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tqdyEIEDp3 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tqdyEIEDp3 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tqdyEIEDp3 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tqdyEIEDp3 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tqdyEIEDp3 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tqdyEIEDp3 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tqdyEIEDp3 .modal-backdrop.fade {
  opacity: 0;
}
.cid-tqdyEIEDp3 .modal-backdrop.show {
  opacity: .5;
}
.cid-tqdyEIEDp3 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tqdyEIEDp3 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tqdyEIEDp3 .modal-header {
    padding: 1rem;
  }
}
.cid-tqdyEIEDp3 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tqdyEIEDp3 .modal-header .close svg {
  fill: #353535;
}
.cid-tqdyEIEDp3 .modal-header .close:hover {
  opacity: 1;
}
.cid-tqdyEIEDp3 .modal-header .close:focus {
  outline: none;
}
.cid-tqdyEIEDp3 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tqdyEIEDp3 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tqdyEIEDp3 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tqdyEIEDp3 .modal-body {
    padding: 1rem;
  }
}
.cid-tqdyEIEDp3 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tqdyEIEDp3 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tqdyEIEDp3 .modal-footer {
    padding: 1rem;
  }
}
.cid-tqdyEIEDp3 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tqdyEIEDp3 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tqdyEIEDp3 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tqdyEIEDp3 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tqdyEIEDp3 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tqdyEIEDp3 .modal-lg,
  .cid-tqdyEIEDp3 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tqdyEIEDp3 .modal-xl {
    max-width: 1140px;
  }
}
.cid-tqdyEIEDp3 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tqdyEIEDp3 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tqdyEIEDp3 .form-group {
  margin-bottom: 1rem;
}
.cid-tqdyEIEDp3 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tqdyEIEDp3 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tqdyEIEDp3 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tqdyEIEDp3 .mbr-section-btn {
  margin: 0;
}
.cid-tqdyEIEDp3 .mbr-section-btn .btn {
  margin: 0;
}
.cid-tq3mjTqsRf {
  padding-top: 8rem;
  padding-bottom: 3rem;
}
.cid-tq3mjTqsRf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tq3mjTqsRf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background2-1.jpg");
}
.cid-tq3mjTqsRf .text-container {
  width: 100%;
}
.cid-tq3mjTqsRf .mbr-section-title {
  color: #ffffff;
  margin-bottom: 0;
  width: 100%;
}
.cid-tq3mjTqsRf .mbr-text {
  color: #FFFFFF;
  margin-bottom: 0;
  margin-top: 20px;
  width: 100%;
}
.cid-tq3mjTqsRf .mbr-section-btn {
  margin-top: 10px;
}
.cid-tq3mjTqsRf .mbr-text,
.cid-tq3mjTqsRf .mbr-section-btn {
  color: #ffffff;
}
.cid-tq3nHwF30N {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tq3nHwF30N .mbr-fallback-image.disabled {
  display: none;
}
.cid-tq3nHwF30N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tq3nHwF30N .arrow {
  font-size: 3rem;
  color: #ffbf4f;
  animation-duration: 1s;
  animation-name: slidein;
  animation-iteration-count: infinite;
  display: block;
}
.cid-tq3nHwF30N .arrow-col {
  overflow: hidden;
  margin-top: 5rem;
}
.cid-tq3nHwF30N .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-tq3nHwF30N .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tq3nHwF30N img {
  border-radius: 2rem;
}
.cid-tq3nHwF30N .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-tq3nHwF30N .mbr-section-subtitle {
  text-align: center;
  color: #353535;
}
.cid-tq3nHwF30N .mbr-text,
.cid-tq3nHwF30N .mbr-section-btn {
  color: #000000;
}
@keyframes slidein {
  0% {
    transform: translateY(-50px);
  }
  50% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(50px);
  }
}
.cid-tq3i6crsLY {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fbfbfb;
}
.cid-tq3i6crsLY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tq3i6crsLY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tq3i6crsLY .row {
  justify-content: flex-start;
}
.cid-tq3i6crsLY .mbr-section-title {
  color: #000000;
  width: 100%;
  margin-bottom: 4rem;
}
.cid-tq3i6crsLY .item-wrap {
  width: 100%;
  margin-bottom: 2rem;
}
.cid-tq3i6crsLY .mbr-section-subtitle {
  color: #000000;
  width: 100%;
}
.cid-tq3i6crsLY .mbr-text {
  color: #000000;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
}
.cid-tq3gM2LjnQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tq3gM2LjnQ .mbr-overlay {
  z-index: 1;
}
.cid-tq3gM2LjnQ .carousel,
.cid-tq3gM2LjnQ .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tq3gM2LjnQ .item-wrapper {
  width: 100%;
}
.cid-tq3gM2LjnQ .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tq3gM2LjnQ .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
@media (max-width: 767px) {
  .cid-tq3gM2LjnQ .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tq3gM2LjnQ .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tq3gM2LjnQ .carousel-control {
  top: 50%;
  width: 45px;
  height: 45px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: #E8E8E8;
  border-radius: 50%;
  opacity: 1;
}
.cid-tq3gM2LjnQ .carousel-control span {
  color: #101019;
}
.cid-tq3gM2LjnQ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tq3gM2LjnQ .carousel-control.carousel-control-prev {
    margin-left: 0.5rem;
  }
}
.cid-tq3gM2LjnQ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tq3gM2LjnQ .carousel-control.carousel-control-next {
    margin-right: 0.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tq3gM2LjnQ .carousel-indicators {
    margin-left: 0;
    text-align: center;
  }
}
.cid-tq3gM2LjnQ .carousel-indicators li {
  height: 8px;
  max-height: 8px;
  width: 8px;
  max-width: 8px;
  margin: 3px;
  background-color: #ffffff;
  border-radius: 50%;
}
.cid-tq3gM2LjnQ .carousel-indicators li.active,
.cid-tq3gM2LjnQ .carousel-indicators li:hover {
  opacity: 0.9;
  border: none;
  margin: 13px 3px;
}
.cid-tq3gM2LjnQ .carousel-indicators li::after,
.cid-tq3gM2LjnQ .carousel-indicators li::before {
  content: none;
}
.cid-tq3gM2LjnQ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tq3gM2LjnQ .carousel-indicators {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .cid-tq3gM2LjnQ .mbr-section-head {
    margin-left: 3rem;
    margin-bottom: 3rem;
  }
}
@media (max-width: 1199px) {
  .cid-tq3gM2LjnQ .mbr-section-head {
    margin-left: 2.2rem;
    margin-bottom: 3rem;
  }
}
@media (max-width: 991px) {
  .cid-tq3gM2LjnQ .mbr-section-head {
    margin-left: 1.6rem;
  }
}
@media (max-width: 767px) {
  .cid-tq3gM2LjnQ .mbr-section-head {
    margin-left: 0;
    margin-bottom: 1.5rem;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .cid-tq3gM2LjnQ .mbr-section-title {
    letter-spacing: -1px;
  }
}
.cid-tq3mK5PKsO {
  padding-top: 0rem;
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-tq3mK5PKsO {
    padding-top: 0rem;
  }
}
.cid-tq3mK5PKsO .mbr-section-title {
  color: #000000;
}
.cid-tq3mK5PKsO .d-flex {
  align-items: flex-end;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .cid-tq3mK5PKsO .d-flex {
    justify-content: center;
  }
}
.cid-tq3mK5PKsO .link-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-tq3mK5PKsO .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 767px) {
  .cid-tq3mK5PKsO .link-wrapper {
    justify-content: center;
  }
}
.cid-tq3mK5PKsO .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-tq3mK5PKsO .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-tq3mK5PKsO .mbr-section-subtitle:hover {
  background: #b22b35;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tq3mK5PKsO .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-tq3mK5PKsO .link,
.cid-tq3mK5PKsO .link-icon {
  color: #fafafa;
}
.cid-tq3gq6DTN4 .b-shadow {
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.05);
}
.cid-tq3gq6DTN4 .nav-item {
  list-style: none;
}
.cid-tq3gq6DTN4 .nav-item:focus,
.cid-tq3gq6DTN4 .nav-link:focus {
  outline: none;
}
.cid-tq3gq6DTN4 .nav-dropdown .dropdown-menu {
  padding-top: 0;
}
.cid-tq3gq6DTN4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tq3gq6DTN4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tq3gq6DTN4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tq3gq6DTN4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tq3gq6DTN4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0em 0em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tq3gq6DTN4 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  flex-direction: row !important;
  background: #ffffff;
}
.cid-tq3gq6DTN4 .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-tq3gq6DTN4 .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-tq3gq6DTN4 .navbar .navbar-collapse {
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  height: 100%;
  padding-top: 3rem;
  padding-bottom: 3rem;
  z-index: 1;
}
.cid-tq3gq6DTN4 .navbar .navbar-collapse > .container {
  height: 100%;
}
.cid-tq3gq6DTN4 .navbar .navbar-collapse.show,
.cid-tq3gq6DTN4 .navbar .navbar-collapse.collapsing {
  display: -webkit-flex;
}
.cid-tq3gq6DTN4 .navbar .navbar-collapse .img-column img {
  width: 100%;
}
.cid-tq3gq6DTN4 .navbar .navbar-collapse .text-column {
  overflow: auto;
  max-height: calc(100vh - 7rem);
}
.cid-tq3gq6DTN4 .navbar .navbar-collapse .contact-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.cid-tq3gq6DTN4 .navbar:not(.navbar-short) .text-column {
  max-height: calc(100vh - 4rem - 3rem);
}
.cid-tq3gq6DTN4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tq3gq6DTN4 .navbar.collapsed .dropdown-menu {
  text-align: inherit;
  background: transparent !important;
}
.cid-tq3gq6DTN4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tq3gq6DTN4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tq3gq6DTN4 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tq3gq6DTN4 .navbar.collapsed ul.navbar-nav {
  word-break: break-word;
}
.cid-tq3gq6DTN4 .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: inherit;
}
.cid-tq3gq6DTN4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.cid-tq3gq6DTN4 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tq3gq6DTN4 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-tq3gq6DTN4 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tq3gq6DTN4 .navbar-brand {
  min-height: 61px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tq3gq6DTN4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tq3gq6DTN4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tq3gq6DTN4 .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-tq3gq6DTN4 .dropdown-item.active,
.cid-tq3gq6DTN4 .dropdown-item:active {
  background-color: transparent;
}
.cid-tq3gq6DTN4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tq3gq6DTN4 .nav-dropdown .link {
  margin: 0.2em 0em;
}
.cid-tq3gq6DTN4 .nav-dropdown .link.dropdown-toggle {
  margin: 0;
}
.cid-tq3gq6DTN4 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin: 0em 0em;
  padding: 0.2em 0em;
}
.cid-tq3gq6DTN4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tq3gq6DTN4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tq3gq6DTN4 .socicon {
  transition: color 0.3s;
}
.cid-tq3gq6DTN4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tq3gq6DTN4 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tq3gq6DTN4 .navbar-buttons {
  text-align: inherit;
}
.cid-tq3gq6DTN4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tq3gq6DTN4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tq3gq6DTN4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tq3gq6DTN4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tq3gq6DTN4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tq3gq6DTN4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tq3gq6DTN4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tq3gq6DTN4 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tq3gq6DTN4 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tq3gq6DTN4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tq3gq6DTN4 .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-tq3gq6DTN4 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tq3gq6DTN4 .icons-menu {
  text-align: inherit;
  margin-right: 20px;
}
.cid-tq3gq6DTN4 .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-tq3gq6DTN4 .nav-link:hover,
.cid-tq3gq6DTN4 .dropdown-item:hover,
.cid-tq3gq6DTN4 .icons-menu .mbr-iconfont:hover {
  color: #e0e0e0 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tq3gq6DTN4 .navbar {
    height: 77px;
  }
  .cid-tq3gq6DTN4 .navbar.opened {
    height: auto;
  }
}
@media (max-width: 767px) {
  .cid-tq3gq6DTN4 .navbar-collapse .img-column {
    display: none;
  }
  .cid-tq3gq6DTN4 .icons-menu,
  .cid-tq3gq6DTN4 .navbar-buttons,
  .cid-tq3gq6DTN4 .contact-block,
  .cid-tq3gq6DTN4 .text-column {
    text-align: center !important;
  }
}
.cid-tq3gq6DTN4 h6.mbr-fonts-style {
  padding: 0;
}
.cid-tq3gq6DTN4 .collapsing {
  transition: 0s;
}
.cid-tq3gq6DTN4 .flex-container {
  height: 100%;
  width: 100%;
}
@media (min-width: 769px) {
  .cid-tq3gq6DTN4 .flex-container {
    display: flex;
    flex-direction: column;
  }
  .cid-tq3gq6DTN4 .flex-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
  .cid-tq3gq6DTN4 .flex-row.low-row {
    align-items: flex-end;
    flex: 1 1 auto;
  }
  .cid-tq3gq6DTN4 .flex-card {
    display: flex;
    flex-direction: column;
  }
  .cid-tq3gq6DTN4 .flex-card h6 {
    padding: .5rem 1rem;
  }
  .cid-tq3gq6DTN4 .contact-block {
    margin-left: 20px;
  }
  .cid-tq3gq6DTN4 .contact-block ul li {
    text-align: left;
  }
  .cid-tq3gq6DTN4 ul.col {
    padding: 0;
  }
  .cid-tq3gq6DTN4 .flex-row.low-row {
    justify-content: space-between;
  }
}
.cid-tq3gq6DTN4 .icons-menu,
.cid-tq3gq6DTN4 .navbar-buttons,
.cid-tq3gq6DTN4 .contact-block,
.cid-tq3gq6DTN4 .text-column {
  color: #000000;
}
.cid-tq3gq6DTN4 .icons-menu a span {
  color: #9a0712;
}
.cid-tq3gq6DTN4 H6 {
  color: #232323;
  text-align: left;
}
.cid-tq3kzk16oA {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1280.jpeg");
}
.cid-tq3kzk16oA .container {
  max-width: 1040px;
}
.cid-tq3kzk16oA .items-container {
  display: grid;
  grid-gap: 1.6rem;
  grid-template-columns: repeat(6, 1fr);
  padding: 0 20px;
}
@media (max-width: 991px) {
  .cid-tq3kzk16oA .items-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .cid-tq3kzk16oA .items-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .cid-tq3kzk16oA .items-container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.cid-tq3kzk16oA .social-row {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-tq3kzk16oA .social-row {
    justify-content: center;
  }
}
.cid-tq3kzk16oA .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.4);
  margin-right: 1rem;
  margin-bottom: 12px;
  padding: 6px;
  min-height: 30px;
  min-width: 30px;
}
@media (max-width: 767px) {
  .cid-tq3kzk16oA .row {
    text-align: center;
  }
  .cid-tq3kzk16oA .social-row {
    justify-content: center;
  }
}
.cid-tq3kzk16oA .mbr-section-subtitle {
  color: #000000;
  margin-bottom: 1rem;
  text-align: left;
}
.cid-tq3kzk16oA .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
  text-align: left;
}
.cid-tq3kzk16oA .list li {
  transition: 0.5s all;
}
.cid-tq3kzk16oA .list li:hover {
  opacity: 0.5;
}
.cid-tq3kzk16oA .item-wrap {
  margin-bottom: 8px;
}
.cid-tq3kzk16oA .mbr-text {
  color: #000000;
}
.cid-tq3kzk16oA .footer-separator {
  height: 1px;
  border: none;
  background: #999999;
  margin: 1.6rem 0;
  outline: none;
}
.cid-tq3kzk16oA .mbr-iconfont {
  color: #ffffff;
  font-size: 16px;
}
@media (max-width: 767px) {
  .cid-tq3kzk16oA .copyright-col {
    text-align: center;
  }
}
.cid-tqdw9OGxt2.popup-builder {
  background-color: #ffffff;
}
.cid-tqdw9OGxt2.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tqdw9OGxt2.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tqdw9OGxt2 .modal-content,
.cid-tqdw9OGxt2 .modal-dialog {
  height: auto;
}
.cid-tqdw9OGxt2 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tqdw9OGxt2 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tqdw9OGxt2 .form-wrapper .mbr-form .form-group,
  .cid-tqdw9OGxt2 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tqdw9OGxt2 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tqdw9OGxt2 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tqdw9OGxt2 .mbr-text {
  text-align: center;
}
.cid-tqdw9OGxt2 .pt-0 {
  padding-top: 0 !important;
}
.cid-tqdw9OGxt2 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tqdw9OGxt2 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tqdw9OGxt2 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tqdw9OGxt2 .modal-open {
  overflow: hidden;
}
.cid-tqdw9OGxt2 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tqdw9OGxt2 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tqdw9OGxt2 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tqdw9OGxt2 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tqdw9OGxt2 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tqdw9OGxt2 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tqdw9OGxt2 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tqdw9OGxt2 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tqdw9OGxt2 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tqdw9OGxt2 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tqdw9OGxt2 .modal-backdrop.fade {
  opacity: 0;
}
.cid-tqdw9OGxt2 .modal-backdrop.show {
  opacity: .5;
}
.cid-tqdw9OGxt2 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tqdw9OGxt2 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tqdw9OGxt2 .modal-header {
    padding: 1rem;
  }
}
.cid-tqdw9OGxt2 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tqdw9OGxt2 .modal-header .close svg {
  fill: #353535;
}
.cid-tqdw9OGxt2 .modal-header .close:hover {
  opacity: 1;
}
.cid-tqdw9OGxt2 .modal-header .close:focus {
  outline: none;
}
.cid-tqdw9OGxt2 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tqdw9OGxt2 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tqdw9OGxt2 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tqdw9OGxt2 .modal-body {
    padding: 1rem;
  }
}
.cid-tqdw9OGxt2 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tqdw9OGxt2 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tqdw9OGxt2 .modal-footer {
    padding: 1rem;
  }
}
.cid-tqdw9OGxt2 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tqdw9OGxt2 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tqdw9OGxt2 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tqdw9OGxt2 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tqdw9OGxt2 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tqdw9OGxt2 .modal-lg,
  .cid-tqdw9OGxt2 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tqdw9OGxt2 .modal-xl {
    max-width: 1140px;
  }
}
.cid-tqdw9OGxt2 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tqdw9OGxt2 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tqdw9OGxt2 .form-group {
  margin-bottom: 1rem;
}
.cid-tqdw9OGxt2 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tqdw9OGxt2 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tqdw9OGxt2 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tqdw9OGxt2 .mbr-section-btn {
  margin: 0;
}
.cid-tqdw9OGxt2 .mbr-section-btn .btn {
  margin: 0;
}
.cid-tq3obmF4xN {
  padding-top: 8rem;
  padding-bottom: 3rem;
}
.cid-tq3obmF4xN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tq3obmF4xN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background2-1.jpg");
}
.cid-tq3obmF4xN .text-container {
  width: 100%;
}
.cid-tq3obmF4xN .mbr-section-title {
  color: #ffffff;
  margin-bottom: 0;
  width: 100%;
}
.cid-tq3obmF4xN .mbr-text {
  color: #FFFFFF;
  margin-bottom: 0;
  margin-top: 20px;
  width: 100%;
}
.cid-tq3obmF4xN .mbr-section-btn {
  margin-top: 10px;
}
.cid-tq3obmF4xN .mbr-text,
.cid-tq3obmF4xN .mbr-section-btn {
  color: #ffffff;
}
.cid-tq3oboligw {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tq3oboligw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tq3oboligw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tq3oboligw .arrow {
  font-size: 3rem;
  color: #ffbf4f;
  animation-duration: 1s;
  animation-name: slidein;
  animation-iteration-count: infinite;
  display: block;
}
.cid-tq3oboligw .arrow-col {
  overflow: hidden;
  margin-top: 5rem;
}
.cid-tq3oboligw .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-tq3oboligw .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tq3oboligw img {
  border-radius: 2rem;
}
.cid-tq3oboligw .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-tq3oboligw .mbr-section-subtitle {
  text-align: center;
  color: #353535;
}
.cid-tq3oboligw .mbr-text,
.cid-tq3oboligw .mbr-section-btn {
  color: #000000;
}
@keyframes slidein {
  0% {
    transform: translateY(-50px);
  }
  50% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(50px);
  }
}
.cid-tq3obqw7RM {
  padding-top: 0rem;
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-tq3obqw7RM {
    padding-top: 0rem;
  }
}
.cid-tq3obqw7RM .mbr-section-title {
  color: #000000;
}
.cid-tq3obqw7RM .d-flex {
  align-items: flex-end;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .cid-tq3obqw7RM .d-flex {
    justify-content: center;
  }
}
.cid-tq3obqw7RM .link-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-tq3obqw7RM .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 767px) {
  .cid-tq3obqw7RM .link-wrapper {
    justify-content: center;
  }
}
.cid-tq3obqw7RM .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-tq3obqw7RM .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-tq3obqw7RM .mbr-section-subtitle:hover {
  background: #b22b35;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tq3obqw7RM .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-tq3obqw7RM .link,
.cid-tq3obqw7RM .link-icon {
  color: #fafafa;
}
.cid-tq3obrgHnl .b-shadow {
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.05);
}
.cid-tq3obrgHnl .nav-item {
  list-style: none;
}
.cid-tq3obrgHnl .nav-item:focus,
.cid-tq3obrgHnl .nav-link:focus {
  outline: none;
}
.cid-tq3obrgHnl .nav-dropdown .dropdown-menu {
  padding-top: 0;
}
.cid-tq3obrgHnl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tq3obrgHnl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tq3obrgHnl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tq3obrgHnl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tq3obrgHnl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0em 0em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tq3obrgHnl .navbar {
  min-height: 77px;
  transition: all 0.3s;
  flex-direction: row !important;
  background: #ffffff;
}
.cid-tq3obrgHnl .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-tq3obrgHnl .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-tq3obrgHnl .navbar .navbar-collapse {
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  height: 100%;
  padding-top: 3rem;
  padding-bottom: 3rem;
  z-index: 1;
}
.cid-tq3obrgHnl .navbar .navbar-collapse > .container {
  height: 100%;
}
.cid-tq3obrgHnl .navbar .navbar-collapse.show,
.cid-tq3obrgHnl .navbar .navbar-collapse.collapsing {
  display: -webkit-flex;
}
.cid-tq3obrgHnl .navbar .navbar-collapse .img-column img {
  width: 100%;
}
.cid-tq3obrgHnl .navbar .navbar-collapse .text-column {
  overflow: auto;
  max-height: calc(100vh - 7rem);
}
.cid-tq3obrgHnl .navbar .navbar-collapse .contact-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.cid-tq3obrgHnl .navbar:not(.navbar-short) .text-column {
  max-height: calc(100vh - 4rem - 3rem);
}
.cid-tq3obrgHnl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tq3obrgHnl .navbar.collapsed .dropdown-menu {
  text-align: inherit;
  background: transparent !important;
}
.cid-tq3obrgHnl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tq3obrgHnl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tq3obrgHnl .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tq3obrgHnl .navbar.collapsed ul.navbar-nav {
  word-break: break-word;
}
.cid-tq3obrgHnl .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: inherit;
}
.cid-tq3obrgHnl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.cid-tq3obrgHnl .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tq3obrgHnl .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-tq3obrgHnl .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tq3obrgHnl .navbar-brand {
  min-height: 61px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tq3obrgHnl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tq3obrgHnl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tq3obrgHnl .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-tq3obrgHnl .dropdown-item.active,
.cid-tq3obrgHnl .dropdown-item:active {
  background-color: transparent;
}
.cid-tq3obrgHnl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tq3obrgHnl .nav-dropdown .link {
  margin: 0.2em 0em;
}
.cid-tq3obrgHnl .nav-dropdown .link.dropdown-toggle {
  margin: 0;
}
.cid-tq3obrgHnl .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin: 0em 0em;
  padding: 0.2em 0em;
}
.cid-tq3obrgHnl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tq3obrgHnl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tq3obrgHnl .socicon {
  transition: color 0.3s;
}
.cid-tq3obrgHnl .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tq3obrgHnl ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tq3obrgHnl .navbar-buttons {
  text-align: inherit;
}
.cid-tq3obrgHnl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tq3obrgHnl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tq3obrgHnl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tq3obrgHnl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tq3obrgHnl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tq3obrgHnl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tq3obrgHnl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tq3obrgHnl nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tq3obrgHnl nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tq3obrgHnl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tq3obrgHnl .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-tq3obrgHnl .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tq3obrgHnl .icons-menu {
  text-align: inherit;
  margin-right: 20px;
}
.cid-tq3obrgHnl .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-tq3obrgHnl .nav-link:hover,
.cid-tq3obrgHnl .dropdown-item:hover,
.cid-tq3obrgHnl .icons-menu .mbr-iconfont:hover {
  color: #e0e0e0 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tq3obrgHnl .navbar {
    height: 77px;
  }
  .cid-tq3obrgHnl .navbar.opened {
    height: auto;
  }
}
@media (max-width: 767px) {
  .cid-tq3obrgHnl .navbar-collapse .img-column {
    display: none;
  }
  .cid-tq3obrgHnl .icons-menu,
  .cid-tq3obrgHnl .navbar-buttons,
  .cid-tq3obrgHnl .contact-block,
  .cid-tq3obrgHnl .text-column {
    text-align: center !important;
  }
}
.cid-tq3obrgHnl h6.mbr-fonts-style {
  padding: 0;
}
.cid-tq3obrgHnl .collapsing {
  transition: 0s;
}
.cid-tq3obrgHnl .flex-container {
  height: 100%;
  width: 100%;
}
@media (min-width: 769px) {
  .cid-tq3obrgHnl .flex-container {
    display: flex;
    flex-direction: column;
  }
  .cid-tq3obrgHnl .flex-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
  .cid-tq3obrgHnl .flex-row.low-row {
    align-items: flex-end;
    flex: 1 1 auto;
  }
  .cid-tq3obrgHnl .flex-card {
    display: flex;
    flex-direction: column;
  }
  .cid-tq3obrgHnl .flex-card h6 {
    padding: .5rem 1rem;
  }
  .cid-tq3obrgHnl .contact-block {
    margin-left: 20px;
  }
  .cid-tq3obrgHnl .contact-block ul li {
    text-align: left;
  }
  .cid-tq3obrgHnl ul.col {
    padding: 0;
  }
  .cid-tq3obrgHnl .flex-row.low-row {
    justify-content: space-between;
  }
}
.cid-tq3obrgHnl .icons-menu,
.cid-tq3obrgHnl .navbar-buttons,
.cid-tq3obrgHnl .contact-block,
.cid-tq3obrgHnl .text-column {
  color: #000000;
}
.cid-tq3obrgHnl .icons-menu a span {
  color: #9a0712;
}
.cid-tq3obrgHnl H6 {
  color: #232323;
  text-align: left;
}
.cid-tq3obsNs7l {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1280.jpeg");
}
.cid-tq3obsNs7l .container {
  max-width: 1040px;
}
.cid-tq3obsNs7l .items-container {
  display: grid;
  grid-gap: 1.6rem;
  grid-template-columns: repeat(6, 1fr);
  padding: 0 20px;
}
@media (max-width: 991px) {
  .cid-tq3obsNs7l .items-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .cid-tq3obsNs7l .items-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .cid-tq3obsNs7l .items-container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.cid-tq3obsNs7l .social-row {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-tq3obsNs7l .social-row {
    justify-content: center;
  }
}
.cid-tq3obsNs7l .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.4);
  margin-right: 1rem;
  margin-bottom: 12px;
  padding: 6px;
  min-height: 30px;
  min-width: 30px;
}
@media (max-width: 767px) {
  .cid-tq3obsNs7l .row {
    text-align: center;
  }
  .cid-tq3obsNs7l .social-row {
    justify-content: center;
  }
}
.cid-tq3obsNs7l .mbr-section-subtitle {
  color: #000000;
  margin-bottom: 1rem;
  text-align: left;
}
.cid-tq3obsNs7l .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
  text-align: left;
}
.cid-tq3obsNs7l .list li {
  transition: 0.5s all;
}
.cid-tq3obsNs7l .list li:hover {
  opacity: 0.5;
}
.cid-tq3obsNs7l .item-wrap {
  margin-bottom: 8px;
}
.cid-tq3obsNs7l .mbr-text {
  color: #000000;
}
.cid-tq3obsNs7l .footer-separator {
  height: 1px;
  border: none;
  background: #999999;
  margin: 1.6rem 0;
  outline: none;
}
.cid-tq3obsNs7l .mbr-iconfont {
  color: #ffffff;
  font-size: 16px;
}
@media (max-width: 767px) {
  .cid-tq3obsNs7l .copyright-col {
    text-align: center;
  }
}
.cid-tqdyEIFy6x.popup-builder {
  background-color: #ffffff;
}
.cid-tqdyEIFy6x.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tqdyEIFy6x.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tqdyEIFy6x .modal-content,
.cid-tqdyEIFy6x .modal-dialog {
  height: auto;
}
.cid-tqdyEIFy6x .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tqdyEIFy6x .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tqdyEIFy6x .form-wrapper .mbr-form .form-group,
  .cid-tqdyEIFy6x .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tqdyEIFy6x .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tqdyEIFy6x .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tqdyEIFy6x .mbr-text {
  text-align: center;
}
.cid-tqdyEIFy6x .pt-0 {
  padding-top: 0 !important;
}
.cid-tqdyEIFy6x .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tqdyEIFy6x .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tqdyEIFy6x .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tqdyEIFy6x .modal-open {
  overflow: hidden;
}
.cid-tqdyEIFy6x .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tqdyEIFy6x .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tqdyEIFy6x .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tqdyEIFy6x .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tqdyEIFy6x .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tqdyEIFy6x .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tqdyEIFy6x .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tqdyEIFy6x .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tqdyEIFy6x .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tqdyEIFy6x .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tqdyEIFy6x .modal-backdrop.fade {
  opacity: 0;
}
.cid-tqdyEIFy6x .modal-backdrop.show {
  opacity: .5;
}
.cid-tqdyEIFy6x .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tqdyEIFy6x .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tqdyEIFy6x .modal-header {
    padding: 1rem;
  }
}
.cid-tqdyEIFy6x .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tqdyEIFy6x .modal-header .close svg {
  fill: #353535;
}
.cid-tqdyEIFy6x .modal-header .close:hover {
  opacity: 1;
}
.cid-tqdyEIFy6x .modal-header .close:focus {
  outline: none;
}
.cid-tqdyEIFy6x .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tqdyEIFy6x .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tqdyEIFy6x .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tqdyEIFy6x .modal-body {
    padding: 1rem;
  }
}
.cid-tqdyEIFy6x .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tqdyEIFy6x .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tqdyEIFy6x .modal-footer {
    padding: 1rem;
  }
}
.cid-tqdyEIFy6x .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tqdyEIFy6x .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tqdyEIFy6x .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tqdyEIFy6x .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tqdyEIFy6x .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tqdyEIFy6x .modal-lg,
  .cid-tqdyEIFy6x .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tqdyEIFy6x .modal-xl {
    max-width: 1140px;
  }
}
.cid-tqdyEIFy6x .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tqdyEIFy6x .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tqdyEIFy6x .form-group {
  margin-bottom: 1rem;
}
.cid-tqdyEIFy6x .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tqdyEIFy6x .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tqdyEIFy6x .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tqdyEIFy6x .mbr-section-btn {
  margin: 0;
}
.cid-tqdyEIFy6x .mbr-section-btn .btn {
  margin: 0;
}
.cid-tq3oqFittF {
  padding-top: 8rem;
  padding-bottom: 3rem;
}
.cid-tq3oqFittF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tq3oqFittF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background2-1.jpg");
}
.cid-tq3oqFittF .text-container {
  width: 100%;
}
.cid-tq3oqFittF .mbr-section-title {
  color: #ffffff;
  margin-bottom: 0;
  width: 100%;
}
.cid-tq3oqFittF .mbr-text {
  color: #FFFFFF;
  margin-bottom: 0;
  margin-top: 20px;
  width: 100%;
}
.cid-tq3oqFittF .mbr-section-btn {
  margin-top: 10px;
}
.cid-tq3oqFittF .mbr-text,
.cid-tq3oqFittF .mbr-section-btn {
  color: #ffffff;
}
.cid-tq3oyGXn4T {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f9f9fc;
}
.cid-tq3oyGXn4T .mbr-list {
  display: inline-flex;
}
@media (max-width: 768px) {
  .cid-tq3oyGXn4T .mbr-list {
    display: block;
    width: auto;
  }
}
.cid-tq3oyGXn4T .mbr-list ul {
  margin: 0 72px 0 0;
  list-style: none;
  padding-left: 0;
  list-style-position: inside;
}
.cid-tq3oyGXn4T .mbr-list ul li {
  margin-bottom: 16px;
  display: flex;
  list-style: none;
  position: relative;
}
.cid-tq3oyGXn4T .mbr-list ul li:before {
  margin-top: -3px;
  margin-right: 12px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #9a0712;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  content: "✓";
}
.cid-tq3oyGXn4T .mbr-section-subtitle {
  margin-bottom: 27px;
  letter-spacing: .13em;
  color: #9a0712;
}
.cid-tq3oyGXn4T .mbr-section-title {
  margin-bottom: 13px;
  color: #080808;
}
.cid-tq3oyGXn4T .mbr-text {
  margin-bottom: 32px;
  color: #65676c;
}
.cid-tq3oyGXn4T .image-wrapper {
  display: flex;
  justify-content: flex-end;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tq3oyGXn4T .image-wrapper {
    margin-top: 23px;
  }
}
.cid-tq3oyGXn4T .image-wrapper img:first-child {
  width: 79%;
  max-width: 520px;
  object-fit: cover;
}
.cid-tq3oyGXn4T .image-wrapper .image-absolute {
  position: absolute;
  top: 48%;
  left: 0;
  max-width: 354px;
  max-height: 283px;
}
@media (max-width: 768px) {
  .cid-tq3oyGXn4T .image-wrapper .image-absolute {
    max-width: 200px;
    max-height: 250px;
  }
}
.cid-tq3oyGXn4T .image-wrapper .image-logo {
  position: absolute;
  top: 24%;
  left: 57%;
  width: 80px;
  height: 80px;
}
.cid-tq3oyGXn4T .mbr-section-title,
.cid-tq3oyGXn4T .list-wrapper {
  text-align: left;
}
.cid-tq3oNstIHk {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f9f9fc;
}
.cid-tq3oNstIHk .content {
  display: flex;
  align-items: center;
}
.cid-tq3oNstIHk .mbr-section-subtitle {
  margin-bottom: 27px;
  letter-spacing: .13em;
  color: #9a0712;
}
.cid-tq3oNstIHk .mbr-section-title {
  margin-bottom: 13px;
  color: #080808;
}
.cid-tq3oNstIHk .mbr-text {
  margin-bottom: 38px;
  color: #65676c;
}
.cid-tq3oNstIHk .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  margin-top: 0;
}
.cid-tq3oNstIHk .btn:hover {
  box-shadow: none;
}
.cid-tq3oNstIHk .image-wrapper {
  display: flex;
  justify-content: flex-end;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tq3oNstIHk .image-wrapper {
    margin-top: 25px;
  }
}
.cid-tq3oNstIHk .image-wrapper img {
  width: 480px;
  height: 457px;
  margin: 0 auto;
  object-fit: cover;
}
@media (max-width: 1040px) {
  .cid-tq3oNstIHk .image-wrapper img {
    width: 310px;
    height: 290px;
  }
}
@media (max-width: 992px) {
  .cid-tq3oNstIHk .image-wrapper img {
    max-width: 480px;
    min-height: 230px;
  }
}
.cid-tq3oNstIHk .image-wrapper .image-absolute-1 {
  position: absolute;
  top: 56%;
  left: 1%;
  width: 112px;
  height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #9a0712;
}
.cid-tq3oNstIHk .image-wrapper .image-absolute-1 .mbr-iconfont {
  font-size: 32px;
  margin-bottom: 10px;
}
.cid-tq3oNstIHk .image-wrapper .image-absolute-1 .mbr-image-text {
  margin: 0;
}
.cid-tq3oNstIHk .image-wrapper .image-absolute-2 {
  position: absolute;
  top: 10%;
  right: 1%;
  width: 112px;
  height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #9a0712;
}
.cid-tq3oNstIHk .image-wrapper .image-absolute-2 .mbr-iconfont {
  font-size: 32px;
  margin-bottom: 10px;
}
.cid-tq3oNstIHk .image-wrapper .image-absolute-2 .mbr-image-text {
  margin: 0;
}
.cid-tq3oNstIHk .mbr-iconfont {
  color: #ffffff;
}
.cid-tq3oNstIHk .mbr-image-text {
  color: #ffffff;
}
.cid-tq3qVaxdhu {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tq3qVaxdhu span {
  color: #c1c1c1;
}
.cid-tq3qVaxdhu .mbr-text {
  padding-left: 1.5rem;
}
.cid-tq3qVaxdhu .mbr-section-title {
  padding-left: 1.5px;
}
.cid-tq3qVaxdhu .mbr-section-btn {
  margin-top: 22.5px;
}
.cid-tq3qVaxdhu H1 {
  text-align: left;
  color: #000000;
}
.cid-tq3qVaxdhu .mbr-text,
.cid-tq3qVaxdhu .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-tq3pIrkOdD {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f9f9fc;
}
.cid-tq3pIrkOdD .image-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tq3pIrkOdD .image-wrapper {
    height: auto;
  }
}
@media (max-width: 768px) {
  .cid-tq3pIrkOdD .image-wrapper {
    margin-bottom: 30px;
  }
}
.cid-tq3pIrkOdD .image-wrapper img {
  max-width: 520px;
  height: 640px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tq3pIrkOdD .image-wrapper img {
    height: 457px;
  }
}
.cid-tq3pIrkOdD .image-wrapper .mbr-description {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 353px;
  height: auto;
  padding: 55px 40px 55px;
  margin: 0;
  background-color: #1f242e;
}
@media (max-width: 1200px) {
  .cid-tq3pIrkOdD .image-wrapper .mbr-description {
    width: 255px;
  }
}
@media (max-width: 768px) {
  .cid-tq3pIrkOdD .image-wrapper .mbr-description {
    padding: 30px 20px;
  }
}
.cid-tq3pIrkOdD .text {
  padding-left: 9%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tq3pIrkOdD .text {
    padding: 0 12px;
  }
}
.cid-tq3pIrkOdD .text .text-wrapper .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
}
@media (max-width: 768px) {
  .cid-tq3pIrkOdD .text .text-wrapper .mbr-section-subtitle {
    margin-bottom: 7px;
  }
}
.cid-tq3pIrkOdD .text .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-tq3pIrkOdD .text .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tq3pIrkOdD .text .list-wrapper {
  margin-top: 45px;
}
@media (max-width: 768px) {
  .cid-tq3pIrkOdD .text .list-wrapper {
    margin-top: 20px;
  }
}
.cid-tq3pIrkOdD .text .list-wrapper .list-item {
  padding: 27px 0;
  border-top: 1px solid #bbbbbb;
}
.cid-tq3pIrkOdD .text .list-wrapper .list-item:first-child {
  padding-top: 0;
  border: none;
}
.cid-tq3pIrkOdD .text .list-wrapper .list-item:last-child {
  padding-bottom: 0;
}
.cid-tq3pIrkOdD .text .list-wrapper .list-item .mbr-number {
  margin: 0 15px 0 0;
  display: inline;
}
.cid-tq3pIrkOdD .text .list-wrapper .list-item .mbr-list {
  margin: 0;
  display: inline;
}
.cid-tq3pIrkOdD .mbr-section-btn {
  margin-top: 45px;
}
@media (max-width: 768px) {
  .cid-tq3pIrkOdD .mbr-section-btn {
    margin-top: 20px;
  }
}
.cid-tq3pIrkOdD .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  margin-top: 0;
}
.cid-tq3pIrkOdD .btn:hover {
  box-shadow: none;
}
.cid-tq3pIrkOdD .mbr-description {
  color: #fafafa;
}
.cid-tq3pIrkOdD .mbr-section-subtitle {
  color: #9a0712;
}
.cid-tq3pIrkOdD .mbr-section-title {
  color: #20232a;
}
.cid-tq3pIrkOdD .mbr-text {
  color: #84858a;
}
.cid-tq3pIrkOdD .mbr-number {
  color: #84858a;
}
.cid-tq3pIrkOdD .mbr-list {
  color: #20232a;
}
.cid-tq3pIrkOdD .mbr-section-title,
.cid-tq3pIrkOdD .list-item,
.cid-tq3pIrkOdD .mbr-section-btn {
  text-align: left;
}
.cid-tq3r7JR9ON {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tq3r7JR9ON .content-row {
  background-color: #d4e7eb;
  padding: 5rem;
}
@media (max-width: 767px) {
  .cid-tq3r7JR9ON .content-row {
    padding: 1rem;
  }
}
.cid-tq3r7JR9ON p {
  margin-bottom: 0rem;
}
.cid-tq3r7JR9ON .btn {
  margin-bottom: 0rem;
}
.cid-tq3r7JR9ON .mbr-section-title {
  margin-bottom: 20px;
}
.cid-tq3r7JR9ON .mbr-section-subtitle {
  opacity: 0.8;
  margin-bottom: 15px;
}
.cid-tq3r7JR9ON .mbr-section-btn {
  margin-right: 0rem;
}
@media (max-width: 767px) {
  .cid-tq3r7JR9ON .mbr-section-btn {
    text-align: left;
  }
  .cid-tq3r7JR9ON .btn {
    margin-left: 0rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-tq3r7JR9ON .mbr-section-btn {
    text-align: left;
  }
  .cid-tq3r7JR9ON .btn {
    margin-left: 0rem;
  }
}
@media (max-width: 991px) {
  .cid-tq3r7JR9ON .mbr-section-btn {
    margin-top: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tq3r7JR9ON .btn {
    margin-top: 0rem;
  }
}
.cid-tq3r7JR9ON H1 {
  text-align: left;
}
.cid-tq3r7JR9ON .mbr-text {
  text-align: left;
}
.cid-tq3q0MUZqH {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #fafafa;
}
@media (min-width: 1400px) {
  .cid-tq3q0MUZqH .container {
    max-width: 1200px;
  }
}
.cid-tq3q0MUZqH .row {
  justify-content: space-between;
}
.cid-tq3q0MUZqH .text-wrapper {
  border-left: 4px solid #b22b35;
  padding-left: 2rem;
}
.cid-tq3q0MUZqH .mbr-main-subtitle {
  background: #b22b35;
  width: fit-content;
  padding: 0.6rem 1rem;
  position: relative;
  color: #fefefe;
}
.cid-tq3q0MUZqH .mbr-main-subtitle:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -18px;
  border-left: 24px solid #b22b35;
  border-bottom: 18px solid transparent;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-tq3q0MUZqH .mbr-main-subtitle {
    margin: auto;
    margin-bottom: 2rem;
  }
}
.cid-tq3q0MUZqH .image-wrap {
  overflow: hidden;
}
.cid-tq3q0MUZqH .card-wrap .mbr-main-subtitle:before {
  content: none;
}
.cid-tq3q0MUZqH .card-wrap:hover img {
  transform: scale(1.05);
}
@media (max-width: 991px) {
  .cid-tq3q0MUZqH .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-tq3q0MUZqH .card-wrap .image-wrap img {
  width: 100%;
  transition: all 0.3s;
  object-fit: cover;
}
.cid-tq3q0MUZqH .card-text,
.cid-tq3q0MUZqH .mbr-section-btn,
.cid-tq3q0MUZqH .social-row {
  color: #353535;
}
.cid-tq3q0MUZqH .card1-text {
  color: #353535;
}
.cid-tq3q0MUZqH .card-title,
.cid-tq3q0MUZqH .social-row {
  color: #000000;
}
.cid-tq3q0MUZqH .mbr-section-title {
  color: #000000;
}
.cid-tq3oqHiyZx {
  padding-top: 0rem;
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-tq3oqHiyZx {
    padding-top: 0rem;
  }
}
.cid-tq3oqHiyZx .mbr-section-title {
  color: #000000;
}
.cid-tq3oqHiyZx .d-flex {
  align-items: flex-end;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .cid-tq3oqHiyZx .d-flex {
    justify-content: center;
  }
}
.cid-tq3oqHiyZx .link-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-tq3oqHiyZx .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 767px) {
  .cid-tq3oqHiyZx .link-wrapper {
    justify-content: center;
  }
}
.cid-tq3oqHiyZx .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-tq3oqHiyZx .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-tq3oqHiyZx .mbr-section-subtitle:hover {
  background: #b22b35;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tq3oqHiyZx .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-tq3oqHiyZx .link,
.cid-tq3oqHiyZx .link-icon {
  color: #fafafa;
}
.cid-tq3oqHPjPq .b-shadow {
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.05);
}
.cid-tq3oqHPjPq .nav-item {
  list-style: none;
}
.cid-tq3oqHPjPq .nav-item:focus,
.cid-tq3oqHPjPq .nav-link:focus {
  outline: none;
}
.cid-tq3oqHPjPq .nav-dropdown .dropdown-menu {
  padding-top: 0;
}
.cid-tq3oqHPjPq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tq3oqHPjPq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tq3oqHPjPq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tq3oqHPjPq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tq3oqHPjPq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0em 0em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tq3oqHPjPq .navbar {
  min-height: 77px;
  transition: all 0.3s;
  flex-direction: row !important;
  background: #ffffff;
}
.cid-tq3oqHPjPq .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-tq3oqHPjPq .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-tq3oqHPjPq .navbar .navbar-collapse {
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  height: 100%;
  padding-top: 3rem;
  padding-bottom: 3rem;
  z-index: 1;
}
.cid-tq3oqHPjPq .navbar .navbar-collapse > .container {
  height: 100%;
}
.cid-tq3oqHPjPq .navbar .navbar-collapse.show,
.cid-tq3oqHPjPq .navbar .navbar-collapse.collapsing {
  display: -webkit-flex;
}
.cid-tq3oqHPjPq .navbar .navbar-collapse .img-column img {
  width: 100%;
}
.cid-tq3oqHPjPq .navbar .navbar-collapse .text-column {
  overflow: auto;
  max-height: calc(100vh - 7rem);
}
.cid-tq3oqHPjPq .navbar .navbar-collapse .contact-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.cid-tq3oqHPjPq .navbar:not(.navbar-short) .text-column {
  max-height: calc(100vh - 4rem - 3rem);
}
.cid-tq3oqHPjPq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tq3oqHPjPq .navbar.collapsed .dropdown-menu {
  text-align: inherit;
  background: transparent !important;
}
.cid-tq3oqHPjPq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tq3oqHPjPq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tq3oqHPjPq .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tq3oqHPjPq .navbar.collapsed ul.navbar-nav {
  word-break: break-word;
}
.cid-tq3oqHPjPq .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: inherit;
}
.cid-tq3oqHPjPq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.cid-tq3oqHPjPq .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tq3oqHPjPq .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-tq3oqHPjPq .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tq3oqHPjPq .navbar-brand {
  min-height: 61px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tq3oqHPjPq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tq3oqHPjPq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tq3oqHPjPq .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-tq3oqHPjPq .dropdown-item.active,
.cid-tq3oqHPjPq .dropdown-item:active {
  background-color: transparent;
}
.cid-tq3oqHPjPq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tq3oqHPjPq .nav-dropdown .link {
  margin: 0.2em 0em;
}
.cid-tq3oqHPjPq .nav-dropdown .link.dropdown-toggle {
  margin: 0;
}
.cid-tq3oqHPjPq .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin: 0em 0em;
  padding: 0.2em 0em;
}
.cid-tq3oqHPjPq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tq3oqHPjPq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tq3oqHPjPq .socicon {
  transition: color 0.3s;
}
.cid-tq3oqHPjPq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tq3oqHPjPq ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tq3oqHPjPq .navbar-buttons {
  text-align: inherit;
}
.cid-tq3oqHPjPq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tq3oqHPjPq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tq3oqHPjPq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tq3oqHPjPq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tq3oqHPjPq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tq3oqHPjPq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tq3oqHPjPq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tq3oqHPjPq nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tq3oqHPjPq nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tq3oqHPjPq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tq3oqHPjPq .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-tq3oqHPjPq .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tq3oqHPjPq .icons-menu {
  text-align: inherit;
  margin-right: 20px;
}
.cid-tq3oqHPjPq .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-tq3oqHPjPq .nav-link:hover,
.cid-tq3oqHPjPq .dropdown-item:hover,
.cid-tq3oqHPjPq .icons-menu .mbr-iconfont:hover {
  color: #e0e0e0 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tq3oqHPjPq .navbar {
    height: 77px;
  }
  .cid-tq3oqHPjPq .navbar.opened {
    height: auto;
  }
}
@media (max-width: 767px) {
  .cid-tq3oqHPjPq .navbar-collapse .img-column {
    display: none;
  }
  .cid-tq3oqHPjPq .icons-menu,
  .cid-tq3oqHPjPq .navbar-buttons,
  .cid-tq3oqHPjPq .contact-block,
  .cid-tq3oqHPjPq .text-column {
    text-align: center !important;
  }
}
.cid-tq3oqHPjPq h6.mbr-fonts-style {
  padding: 0;
}
.cid-tq3oqHPjPq .collapsing {
  transition: 0s;
}
.cid-tq3oqHPjPq .flex-container {
  height: 100%;
  width: 100%;
}
@media (min-width: 769px) {
  .cid-tq3oqHPjPq .flex-container {
    display: flex;
    flex-direction: column;
  }
  .cid-tq3oqHPjPq .flex-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
  .cid-tq3oqHPjPq .flex-row.low-row {
    align-items: flex-end;
    flex: 1 1 auto;
  }
  .cid-tq3oqHPjPq .flex-card {
    display: flex;
    flex-direction: column;
  }
  .cid-tq3oqHPjPq .flex-card h6 {
    padding: .5rem 1rem;
  }
  .cid-tq3oqHPjPq .contact-block {
    margin-left: 20px;
  }
  .cid-tq3oqHPjPq .contact-block ul li {
    text-align: left;
  }
  .cid-tq3oqHPjPq ul.col {
    padding: 0;
  }
  .cid-tq3oqHPjPq .flex-row.low-row {
    justify-content: space-between;
  }
}
.cid-tq3oqHPjPq .icons-menu,
.cid-tq3oqHPjPq .navbar-buttons,
.cid-tq3oqHPjPq .contact-block,
.cid-tq3oqHPjPq .text-column {
  color: #000000;
}
.cid-tq3oqHPjPq .icons-menu a span {
  color: #9a0712;
}
.cid-tq3oqHPjPq H6 {
  color: #232323;
  text-align: left;
}
.cid-tq3oqIQ0Zx {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1280.jpeg");
}
.cid-tq3oqIQ0Zx .container {
  max-width: 1040px;
}
.cid-tq3oqIQ0Zx .items-container {
  display: grid;
  grid-gap: 1.6rem;
  grid-template-columns: repeat(6, 1fr);
  padding: 0 20px;
}
@media (max-width: 991px) {
  .cid-tq3oqIQ0Zx .items-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .cid-tq3oqIQ0Zx .items-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .cid-tq3oqIQ0Zx .items-container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.cid-tq3oqIQ0Zx .social-row {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-tq3oqIQ0Zx .social-row {
    justify-content: center;
  }
}
.cid-tq3oqIQ0Zx .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.4);
  margin-right: 1rem;
  margin-bottom: 12px;
  padding: 6px;
  min-height: 30px;
  min-width: 30px;
}
@media (max-width: 767px) {
  .cid-tq3oqIQ0Zx .row {
    text-align: center;
  }
  .cid-tq3oqIQ0Zx .social-row {
    justify-content: center;
  }
}
.cid-tq3oqIQ0Zx .mbr-section-subtitle {
  color: #000000;
  margin-bottom: 1rem;
  text-align: left;
}
.cid-tq3oqIQ0Zx .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
  text-align: left;
}
.cid-tq3oqIQ0Zx .list li {
  transition: 0.5s all;
}
.cid-tq3oqIQ0Zx .list li:hover {
  opacity: 0.5;
}
.cid-tq3oqIQ0Zx .item-wrap {
  margin-bottom: 8px;
}
.cid-tq3oqIQ0Zx .mbr-text {
  color: #000000;
}
.cid-tq3oqIQ0Zx .footer-separator {
  height: 1px;
  border: none;
  background: #999999;
  margin: 1.6rem 0;
  outline: none;
}
.cid-tq3oqIQ0Zx .mbr-iconfont {
  color: #ffffff;
  font-size: 16px;
}
@media (max-width: 767px) {
  .cid-tq3oqIQ0Zx .copyright-col {
    text-align: center;
  }
}
.cid-tqdyEIF9Xs.popup-builder {
  background-color: #ffffff;
}
.cid-tqdyEIF9Xs.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tqdyEIF9Xs.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tqdyEIF9Xs .modal-content,
.cid-tqdyEIF9Xs .modal-dialog {
  height: auto;
}
.cid-tqdyEIF9Xs .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tqdyEIF9Xs .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tqdyEIF9Xs .form-wrapper .mbr-form .form-group,
  .cid-tqdyEIF9Xs .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tqdyEIF9Xs .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tqdyEIF9Xs .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tqdyEIF9Xs .mbr-text {
  text-align: center;
}
.cid-tqdyEIF9Xs .pt-0 {
  padding-top: 0 !important;
}
.cid-tqdyEIF9Xs .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tqdyEIF9Xs .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tqdyEIF9Xs .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tqdyEIF9Xs .modal-open {
  overflow: hidden;
}
.cid-tqdyEIF9Xs .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tqdyEIF9Xs .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tqdyEIF9Xs .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tqdyEIF9Xs .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tqdyEIF9Xs .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tqdyEIF9Xs .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tqdyEIF9Xs .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tqdyEIF9Xs .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tqdyEIF9Xs .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tqdyEIF9Xs .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tqdyEIF9Xs .modal-backdrop.fade {
  opacity: 0;
}
.cid-tqdyEIF9Xs .modal-backdrop.show {
  opacity: .5;
}
.cid-tqdyEIF9Xs .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tqdyEIF9Xs .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tqdyEIF9Xs .modal-header {
    padding: 1rem;
  }
}
.cid-tqdyEIF9Xs .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tqdyEIF9Xs .modal-header .close svg {
  fill: #353535;
}
.cid-tqdyEIF9Xs .modal-header .close:hover {
  opacity: 1;
}
.cid-tqdyEIF9Xs .modal-header .close:focus {
  outline: none;
}
.cid-tqdyEIF9Xs .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tqdyEIF9Xs .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tqdyEIF9Xs .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tqdyEIF9Xs .modal-body {
    padding: 1rem;
  }
}
.cid-tqdyEIF9Xs .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tqdyEIF9Xs .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tqdyEIF9Xs .modal-footer {
    padding: 1rem;
  }
}
.cid-tqdyEIF9Xs .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tqdyEIF9Xs .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tqdyEIF9Xs .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tqdyEIF9Xs .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tqdyEIF9Xs .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tqdyEIF9Xs .modal-lg,
  .cid-tqdyEIF9Xs .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tqdyEIF9Xs .modal-xl {
    max-width: 1140px;
  }
}
.cid-tqdyEIF9Xs .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tqdyEIF9Xs .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tqdyEIF9Xs .form-group {
  margin-bottom: 1rem;
}
.cid-tqdyEIF9Xs .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tqdyEIF9Xs .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tqdyEIF9Xs .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tqdyEIF9Xs .mbr-section-btn {
  margin: 0;
}
.cid-tqdyEIF9Xs .mbr-section-btn .btn {
  margin: 0;
}
.cid-tq3tAAI0O9 {
  padding-top: 8rem;
  padding-bottom: 3rem;
}
.cid-tq3tAAI0O9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tq3tAAI0O9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background2-1.jpg");
}
.cid-tq3tAAI0O9 .text-container {
  width: 100%;
}
.cid-tq3tAAI0O9 .mbr-section-title {
  color: #ffffff;
  margin-bottom: 0;
  width: 100%;
}
.cid-tq3tAAI0O9 .mbr-text {
  color: #FFFFFF;
  margin-bottom: 0;
  margin-top: 20px;
  width: 100%;
}
.cid-tq3tAAI0O9 .mbr-section-btn {
  margin-top: 10px;
}
.cid-tq3tAAI0O9 .mbr-text,
.cid-tq3tAAI0O9 .mbr-section-btn {
  color: #ffffff;
}
.cid-tq3tKFeelq {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tq3tKFeelq ul {
  list-style: none;
  margin: 0;
  padding-left: 1.6rem;
}
.cid-tq3tKFeelq li {
  position: relative;
  margin-bottom: 0.625rem;
  margin-top: 0.625rem;
}
.cid-tq3tKFeelq ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "–";
}
.cid-tq3tKFeelq .mbr-section-tag {
  color: #9e9e9e;
  margin-bottom: 0.4375rem;
}
.cid-tq3tKFeelq .mbr-section-title {
  margin-bottom: 1rem;
  color: #9a0712;
}
.cid-tq3tKFeelq .mbr-section-title b:last-child,
.cid-tq3tKFeelq .mbr-section-title strong:last-child {
  color: #f23801;
}
.cid-tq3tKFeelq .mbr-section-subtitle {
  margin-bottom: 0.625rem;
}
.cid-tq3tKFeelq .list {
  margin-top: 2.3125rem;
}
.cid-tq3tKFeelq .mbr-text {
  margin-bottom: 0;
}
.cid-tq3tKFeelq .mbr-section-btn {
  margin-top: 28px;
}
.cid-tq3tKFeelq .mbr-section-btn a {
  margin-top: 0;
}
.cid-tq7sig97x5 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: #ffffff;
}
.cid-tq7sig97x5 .row {
  justify-content: flex-end;
}
.cid-tq7sig97x5 .container {
  max-width: 1400px;
}
.cid-tq7sig97x5 .line {
  width: 100%;
  border-bottom: 1px solid #000000;
  margin-bottom: 2rem;
}
.cid-tq7sig97x5 .content-wrap {
  position: absolute;
  top: 0;
  left: 0;
  padding: 1.5rem;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cid-tq7sig97x5 .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-tq7sig97x5 .team-card:hover {
  transform: translateY(-10px);
}
.cid-tq7sig97x5 .image-wrap {
  position: relative;
  height: 450px;
  margin-bottom: 1rem;
}
.cid-tq7sig97x5 .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tq7sig97x5 .image-wrap:before {
  content: '';
  top: 0;
  left: 0;
  opacity: 0.4;
  width: 100%;
  pointer-events: none;
  transition: all 0.3s;
  height: 100%;
  background: #9a0712;
  position: absolute;
  z-index: 10;
}
.cid-tq7sig97x5 .link {
  display: inline-block;
  position: relative;
  padding-right: 2rem;
  overflow: hidden;
  cursor: pointer;
}
.cid-tq7sig97x5 .link:before {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(0px);
}
.cid-tq7sig97x5 .link:after {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0rem;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(-33px);
}
.cid-tq7sig97x5 .link:hover:before {
  transform: rotate(-45deg) translateX(33px);
}
.cid-tq7sig97x5 .link:hover:after {
  transform: rotate(-45deg) translateX(0px);
}
.cid-tq7sig97x5 .card-wrap {
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-tq7sig97x5 .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-tq7sig97x5 .card-wrap .image-wrap img {
  width: 100%;
}
.cid-tq7sig97x5 .card-wrap:hover .soc-item {
  opacity: 1;
}
.cid-tq7sig97x5 .card-wrap:hover .image-wrap:before {
  opacity: 0.6;
  background: #0086c2;
}
.cid-tq7sig97x5 .social-row .soc-item {
  opacity: 0;
  display: inline-block;
  border-radius: 50%;
  margin-right: 0.4rem;
  margin-bottom: 1rem;
  padding: 0.2rem;
  transition: all 0.3s;
}
.cid-tq7sig97x5 .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #ffffff;
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .cid-tq7sig97x5 .social-row .soc-item {
    opacity: 1;
  }
}
@media (max-width: 767px) {
  .cid-tq7sig97x5 .social-row {
    text-align: center;
  }
}
.cid-tq7sig97x5 .mbr-role,
.cid-tq7sig97x5 .social-row {
  color: #ffffff;
}
.cid-tq7sig97x5 .card-title,
.cid-tq7sig97x5 .social-row {
  color: #ffffff;
}
.cid-tq7sig97x5 .card-text,
.cid-tq7sig97x5 .mbr-section-btn,
.cid-tq7sig97x5 .social-row {
  color: #ffffff;
}
.cid-tq3ub74ge9 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tq3ub74ge9 .link-wrap {
  width: 100%;
}
.cid-tq3ub74ge9 .link {
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-tq3ub74ge9 .container {
    max-width: 1400px;
  }
  .cid-tq3ub74ge9 .col-lg-6 {
    max-width: 47%;
  }
}
.cid-tq3ub74ge9 .row {
  justify-content: space-between;
}
.cid-tq3ub74ge9 .link a {
  position: relative;
  width: fit-content;
  display: inline-block;
  padding-right: 1rem;
  font-weight: 600;
}
.cid-tq3ub74ge9 .link a:before {
  position: absolute;
  right: 0px;
  font-weight: 900;
  transition: all 0.3s;
  top: 55%;
  transform: translateY(-50%);
  content: "\e909";
  font-family: 'Moririse2' !important;
  color: currentColor;
  font-size: 0.6rem;
}
.cid-tq3ub74ge9 .link a:hover:before {
  right: -3px;
}
.cid-tq3ub74ge9 .link,
.cid-tq3ub74ge9 .link-wrap {
  color: #ffffff;
}
.cid-tq3ub74ge9 .mbr-text,
.cid-tq3ub74ge9 .mbr-section-btn {
  color: #333333;
}
.cid-tq7smrB6HY {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: #ffffff;
}
.cid-tq7smrB6HY .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-tq7smrB6HY .team-card:hover {
  transform: translateY(-10px);
}
.cid-tq7smrB6HY .card-wrap {
  position: relative;
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-tq7smrB6HY .card-wrap {
    margin-bottom: 3rem;
  }
}
.cid-tq7smrB6HY .card-wrap .image-wrap img {
  width: 100%;
}
.cid-tq7smrB6HY .social-row {
  text-align: center;
  position: absolute;
  top: 1%;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
.cid-tq7smrB6HY .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-right: 0.6rem;
  margin-bottom: 1.5rem;
  padding: 0.5rem;
  transition: all 0.3s;
}
.cid-tq7smrB6HY .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #9a0712;
  font-size: 1.5rem;
  background-color: white;
  padding: 6px;
  border-radius: 50%;
}
.cid-tq7smrB6HY .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tq7smrB6HY .col-lg-3,
.cid-tq7smrB6HY .col-lg-4,
.cid-tq7smrB6HY .col-lg-6 {
  padding: 0;
}
.cid-tq7smrB6HY .image-wrap {
  padding-bottom: 22px;
}
.cid-tq7smrB6HY .card-title,
.cid-tq7smrB6HY .social-row {
  color: #0c5b47;
}
.cid-tq7smrB6HY .mbr-role,
.cid-tq7smrB6HY .social-row {
  color: #338873;
}
.cid-tq7smrB6HY .mbr-role {
  font-style: italic;
}
.cid-tq7smrB6HY .soc-item {
  width: auto;
  height: 20px;
  border: none;
  margin: 0;
  padding: 0;
}
.cid-tq7smrB6HY .card-wrap:hover .social-row {
  opacity: 1;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 990px) {
  .cid-tq7smrB6HY .social-row {
    display: block;
    position: initial;
    opacity: 1;
  }
}
.cid-tq7smrB6HY .content-wrap {
  padding: 0 10px 0px;
}
@media (max-width: 991px) {
  .cid-tq7smrB6HY .top {
    margin-bottom: 0px;
  }
}
.cid-tq7smrB6HY .card-title {
  font-size: 25px;
}
.cid-tq7t9xcpoM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #fafafa;
}
.cid-tq7t9xcpoM .tab {
  min-height: 700px;
  padding: 30px 1rem;
}
@media (max-width: 992px) {
  .cid-tq7t9xcpoM .tab {
    min-height: auto;
  }
}
@media (min-width: 992px) {
  .cid-tq7t9xcpoM .tab {
    padding: 30px 60px 200px;
  }
}
.cid-tq7t9xcpoM .nav {
  display: block;
}
.cid-tq7t9xcpoM .nav-tabs .nav-item.open .nav-link:focus,
.cid-tq7t9xcpoM .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-tq7t9xcpoM .nav-tabs {
  border-bottom: none;
}
@media (max-width: 767px) {
  .cid-tq7t9xcpoM .nav-item {
    width: 100%;
    margin: 0;
  }
}
.cid-tq7t9xcpoM .nav-tabs .nav-link {
  padding: 0;
  transition: all .5s;
  border: none;
  border-bottom: 1px solid transparent;
  border-radius: 0 !important;
}
.cid-tq7t9xcpoM .nav-tabs .nav-link:not(.active) {
  color: #adadad !important;
}
.cid-tq7t9xcpoM .nav-tabs .nav-item {
  margin-right: 1.5rem;
}
.cid-tq7t9xcpoM .nav-link,
.cid-tq7t9xcpoM .nav-link.active {
  color: #282828 !important;
  background-color: transparent;
}
.cid-tq7t9xcpoM .nav-tabs .nav-link.active {
  border-bottom: 1px solid transparent;
}
.cid-tq7t9xcpoM .google-map {
  height: 100%;
  position: relative;
}
@media (max-width: 991px) {
  .cid-tq7t9xcpoM .google-map {
    height: 400px;
  }
}
.cid-tq7t9xcpoM .google-map iframe {
  height: 100%;
  width: 100%;
  filter: grayscale(1);
}
.cid-tq7t9xcpoM .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tq7t9xcpoM .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tq7t9xcpoM .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
@media (min-width: 992px) {
  .cid-tq7t9xcpoM .mB {
    margin-bottom: 160px;
  }
}
.cid-tq3tADSDRf {
  padding-top: 0rem;
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-tq3tADSDRf {
    padding-top: 0rem;
  }
}
.cid-tq3tADSDRf .mbr-section-title {
  color: #000000;
}
.cid-tq3tADSDRf .d-flex {
  align-items: flex-end;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .cid-tq3tADSDRf .d-flex {
    justify-content: center;
  }
}
.cid-tq3tADSDRf .link-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-tq3tADSDRf .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 767px) {
  .cid-tq3tADSDRf .link-wrapper {
    justify-content: center;
  }
}
.cid-tq3tADSDRf .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-tq3tADSDRf .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-tq3tADSDRf .mbr-section-subtitle:hover {
  background: #b22b35;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tq3tADSDRf .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-tq3tADSDRf .link,
.cid-tq3tADSDRf .link-icon {
  color: #fafafa;
}
.cid-tq3tAEn9MS .b-shadow {
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.05);
}
.cid-tq3tAEn9MS .nav-item {
  list-style: none;
}
.cid-tq3tAEn9MS .nav-item:focus,
.cid-tq3tAEn9MS .nav-link:focus {
  outline: none;
}
.cid-tq3tAEn9MS .nav-dropdown .dropdown-menu {
  padding-top: 0;
}
.cid-tq3tAEn9MS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tq3tAEn9MS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tq3tAEn9MS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tq3tAEn9MS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tq3tAEn9MS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0em 0em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tq3tAEn9MS .navbar {
  min-height: 77px;
  transition: all 0.3s;
  flex-direction: row !important;
  background: #ffffff;
}
.cid-tq3tAEn9MS .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-tq3tAEn9MS .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-tq3tAEn9MS .navbar .navbar-collapse {
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  height: 100%;
  padding-top: 3rem;
  padding-bottom: 3rem;
  z-index: 1;
}
.cid-tq3tAEn9MS .navbar .navbar-collapse > .container {
  height: 100%;
}
.cid-tq3tAEn9MS .navbar .navbar-collapse.show,
.cid-tq3tAEn9MS .navbar .navbar-collapse.collapsing {
  display: -webkit-flex;
}
.cid-tq3tAEn9MS .navbar .navbar-collapse .img-column img {
  width: 100%;
}
.cid-tq3tAEn9MS .navbar .navbar-collapse .text-column {
  overflow: auto;
  max-height: calc(100vh - 7rem);
}
.cid-tq3tAEn9MS .navbar .navbar-collapse .contact-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.cid-tq3tAEn9MS .navbar:not(.navbar-short) .text-column {
  max-height: calc(100vh - 4rem - 3rem);
}
.cid-tq3tAEn9MS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tq3tAEn9MS .navbar.collapsed .dropdown-menu {
  text-align: inherit;
  background: transparent !important;
}
.cid-tq3tAEn9MS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tq3tAEn9MS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tq3tAEn9MS .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tq3tAEn9MS .navbar.collapsed ul.navbar-nav {
  word-break: break-word;
}
.cid-tq3tAEn9MS .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: inherit;
}
.cid-tq3tAEn9MS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.cid-tq3tAEn9MS .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tq3tAEn9MS .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-tq3tAEn9MS .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tq3tAEn9MS .navbar-brand {
  min-height: 61px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tq3tAEn9MS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tq3tAEn9MS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tq3tAEn9MS .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-tq3tAEn9MS .dropdown-item.active,
.cid-tq3tAEn9MS .dropdown-item:active {
  background-color: transparent;
}
.cid-tq3tAEn9MS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tq3tAEn9MS .nav-dropdown .link {
  margin: 0.2em 0em;
}
.cid-tq3tAEn9MS .nav-dropdown .link.dropdown-toggle {
  margin: 0;
}
.cid-tq3tAEn9MS .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin: 0em 0em;
  padding: 0.2em 0em;
}
.cid-tq3tAEn9MS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tq3tAEn9MS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tq3tAEn9MS .socicon {
  transition: color 0.3s;
}
.cid-tq3tAEn9MS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tq3tAEn9MS ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tq3tAEn9MS .navbar-buttons {
  text-align: inherit;
}
.cid-tq3tAEn9MS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tq3tAEn9MS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tq3tAEn9MS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tq3tAEn9MS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tq3tAEn9MS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tq3tAEn9MS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tq3tAEn9MS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tq3tAEn9MS nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tq3tAEn9MS nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tq3tAEn9MS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tq3tAEn9MS .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-tq3tAEn9MS .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tq3tAEn9MS .icons-menu {
  text-align: inherit;
  margin-right: 20px;
}
.cid-tq3tAEn9MS .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-tq3tAEn9MS .nav-link:hover,
.cid-tq3tAEn9MS .dropdown-item:hover,
.cid-tq3tAEn9MS .icons-menu .mbr-iconfont:hover {
  color: #e0e0e0 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tq3tAEn9MS .navbar {
    height: 77px;
  }
  .cid-tq3tAEn9MS .navbar.opened {
    height: auto;
  }
}
@media (max-width: 767px) {
  .cid-tq3tAEn9MS .navbar-collapse .img-column {
    display: none;
  }
  .cid-tq3tAEn9MS .icons-menu,
  .cid-tq3tAEn9MS .navbar-buttons,
  .cid-tq3tAEn9MS .contact-block,
  .cid-tq3tAEn9MS .text-column {
    text-align: center !important;
  }
}
.cid-tq3tAEn9MS h6.mbr-fonts-style {
  padding: 0;
}
.cid-tq3tAEn9MS .collapsing {
  transition: 0s;
}
.cid-tq3tAEn9MS .flex-container {
  height: 100%;
  width: 100%;
}
@media (min-width: 769px) {
  .cid-tq3tAEn9MS .flex-container {
    display: flex;
    flex-direction: column;
  }
  .cid-tq3tAEn9MS .flex-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
  .cid-tq3tAEn9MS .flex-row.low-row {
    align-items: flex-end;
    flex: 1 1 auto;
  }
  .cid-tq3tAEn9MS .flex-card {
    display: flex;
    flex-direction: column;
  }
  .cid-tq3tAEn9MS .flex-card h6 {
    padding: .5rem 1rem;
  }
  .cid-tq3tAEn9MS .contact-block {
    margin-left: 20px;
  }
  .cid-tq3tAEn9MS .contact-block ul li {
    text-align: left;
  }
  .cid-tq3tAEn9MS ul.col {
    padding: 0;
  }
  .cid-tq3tAEn9MS .flex-row.low-row {
    justify-content: space-between;
  }
}
.cid-tq3tAEn9MS .icons-menu,
.cid-tq3tAEn9MS .navbar-buttons,
.cid-tq3tAEn9MS .contact-block,
.cid-tq3tAEn9MS .text-column {
  color: #000000;
}
.cid-tq3tAEn9MS .icons-menu a span {
  color: #9a0712;
}
.cid-tq3tAEn9MS H6 {
  color: #232323;
  text-align: left;
}
.cid-tq3tAFk5ac {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1280.jpeg");
}
.cid-tq3tAFk5ac .container {
  max-width: 1040px;
}
.cid-tq3tAFk5ac .items-container {
  display: grid;
  grid-gap: 1.6rem;
  grid-template-columns: repeat(6, 1fr);
  padding: 0 20px;
}
@media (max-width: 991px) {
  .cid-tq3tAFk5ac .items-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .cid-tq3tAFk5ac .items-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .cid-tq3tAFk5ac .items-container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.cid-tq3tAFk5ac .social-row {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-tq3tAFk5ac .social-row {
    justify-content: center;
  }
}
.cid-tq3tAFk5ac .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.4);
  margin-right: 1rem;
  margin-bottom: 12px;
  padding: 6px;
  min-height: 30px;
  min-width: 30px;
}
@media (max-width: 767px) {
  .cid-tq3tAFk5ac .row {
    text-align: center;
  }
  .cid-tq3tAFk5ac .social-row {
    justify-content: center;
  }
}
.cid-tq3tAFk5ac .mbr-section-subtitle {
  color: #000000;
  margin-bottom: 1rem;
  text-align: left;
}
.cid-tq3tAFk5ac .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
  text-align: left;
}
.cid-tq3tAFk5ac .list li {
  transition: 0.5s all;
}
.cid-tq3tAFk5ac .list li:hover {
  opacity: 0.5;
}
.cid-tq3tAFk5ac .item-wrap {
  margin-bottom: 8px;
}
.cid-tq3tAFk5ac .mbr-text {
  color: #000000;
}
.cid-tq3tAFk5ac .footer-separator {
  height: 1px;
  border: none;
  background: #999999;
  margin: 1.6rem 0;
  outline: none;
}
.cid-tq3tAFk5ac .mbr-iconfont {
  color: #ffffff;
  font-size: 16px;
}
@media (max-width: 767px) {
  .cid-tq3tAFk5ac .copyright-col {
    text-align: center;
  }
}
.cid-tqdyEIFc45.popup-builder {
  background-color: #ffffff;
}
.cid-tqdyEIFc45.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tqdyEIFc45.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tqdyEIFc45 .modal-content,
.cid-tqdyEIFc45 .modal-dialog {
  height: auto;
}
.cid-tqdyEIFc45 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tqdyEIFc45 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tqdyEIFc45 .form-wrapper .mbr-form .form-group,
  .cid-tqdyEIFc45 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tqdyEIFc45 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tqdyEIFc45 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tqdyEIFc45 .mbr-text {
  text-align: center;
}
.cid-tqdyEIFc45 .pt-0 {
  padding-top: 0 !important;
}
.cid-tqdyEIFc45 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tqdyEIFc45 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tqdyEIFc45 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tqdyEIFc45 .modal-open {
  overflow: hidden;
}
.cid-tqdyEIFc45 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tqdyEIFc45 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tqdyEIFc45 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tqdyEIFc45 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tqdyEIFc45 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tqdyEIFc45 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tqdyEIFc45 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tqdyEIFc45 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tqdyEIFc45 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tqdyEIFc45 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tqdyEIFc45 .modal-backdrop.fade {
  opacity: 0;
}
.cid-tqdyEIFc45 .modal-backdrop.show {
  opacity: .5;
}
.cid-tqdyEIFc45 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tqdyEIFc45 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tqdyEIFc45 .modal-header {
    padding: 1rem;
  }
}
.cid-tqdyEIFc45 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tqdyEIFc45 .modal-header .close svg {
  fill: #353535;
}
.cid-tqdyEIFc45 .modal-header .close:hover {
  opacity: 1;
}
.cid-tqdyEIFc45 .modal-header .close:focus {
  outline: none;
}
.cid-tqdyEIFc45 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tqdyEIFc45 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tqdyEIFc45 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tqdyEIFc45 .modal-body {
    padding: 1rem;
  }
}
.cid-tqdyEIFc45 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tqdyEIFc45 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tqdyEIFc45 .modal-footer {
    padding: 1rem;
  }
}
.cid-tqdyEIFc45 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tqdyEIFc45 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tqdyEIFc45 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tqdyEIFc45 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tqdyEIFc45 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tqdyEIFc45 .modal-lg,
  .cid-tqdyEIFc45 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tqdyEIFc45 .modal-xl {
    max-width: 1140px;
  }
}
.cid-tqdyEIFc45 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tqdyEIFc45 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tqdyEIFc45 .form-group {
  margin-bottom: 1rem;
}
.cid-tqdyEIFc45 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tqdyEIFc45 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tqdyEIFc45 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tqdyEIFc45 .mbr-section-btn {
  margin: 0;
}
.cid-tqdyEIFc45 .mbr-section-btn .btn {
  margin: 0;
}
.cid-tq7w7kMvOE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tq7w7kMvOE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tq7w7kMvOE .mbr-section-title {
  text-align: center;
}
.cid-tq7w7kMvOE .mbr-text,
.cid-tq7w7kMvOE .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-tq7w7kMvOE .dot {
  width: 6px;
  height: 6px;
  background: currentColor;
}
.cid-tq7w7kMvOE .dot-right {
  margin-right: 0;
  margin-left: auto;
}
.cid-tq7w7kMvOE .mbr-section-title,
.cid-tq7w7kMvOE .dot {
  color: #ffffff;
  text-align: center;
}
.cid-tq7w7kMvOE .mbr-section-subtitle {
  text-align: center;
}
.cid-tq7x8Pboph {
  display: flex;
  align-items: center;
}
.cid-tq7x8Pboph .mbr-fallback-image.disabled {
  display: none;
}
.cid-tq7x8Pboph .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tq7x8Pboph .row {
  justify-content: flex-start;
}
.cid-tq7x8Pboph .mbr-section-title {
  color: #FEF9EE;
}
.cid-tq7x8Pboph .mbr-section-subtitle {
  color: #FEF9EE;
}
.cid-tq7x8Pboph .mbr-text {
  color: #FEF9EE;
}
.cid-tq7tpWD5wb {
  padding-top: 0rem;
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-tq7tpWD5wb {
    padding-top: 0rem;
  }
}
.cid-tq7tpWD5wb .mbr-section-title {
  color: #000000;
}
.cid-tq7tpWD5wb .d-flex {
  align-items: flex-end;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .cid-tq7tpWD5wb .d-flex {
    justify-content: center;
  }
}
.cid-tq7tpWD5wb .link-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-tq7tpWD5wb .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 767px) {
  .cid-tq7tpWD5wb .link-wrapper {
    justify-content: center;
  }
}
.cid-tq7tpWD5wb .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-tq7tpWD5wb .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-tq7tpWD5wb .mbr-section-subtitle:hover {
  background: #b22b35;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tq7tpWD5wb .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-tq7tpWD5wb .link,
.cid-tq7tpWD5wb .link-icon {
  color: #fafafa;
}
.cid-tq7tpWYkKA .b-shadow {
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.05);
}
.cid-tq7tpWYkKA .nav-item {
  list-style: none;
}
.cid-tq7tpWYkKA .nav-item:focus,
.cid-tq7tpWYkKA .nav-link:focus {
  outline: none;
}
.cid-tq7tpWYkKA .nav-dropdown .dropdown-menu {
  padding-top: 0;
}
.cid-tq7tpWYkKA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tq7tpWYkKA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tq7tpWYkKA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tq7tpWYkKA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tq7tpWYkKA .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0em 0em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tq7tpWYkKA .navbar {
  min-height: 77px;
  transition: all 0.3s;
  flex-direction: row !important;
  background: #ffffff;
}
.cid-tq7tpWYkKA .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-tq7tpWYkKA .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-tq7tpWYkKA .navbar .navbar-collapse {
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  height: 100%;
  padding-top: 3rem;
  padding-bottom: 3rem;
  z-index: 1;
}
.cid-tq7tpWYkKA .navbar .navbar-collapse > .container {
  height: 100%;
}
.cid-tq7tpWYkKA .navbar .navbar-collapse.show,
.cid-tq7tpWYkKA .navbar .navbar-collapse.collapsing {
  display: -webkit-flex;
}
.cid-tq7tpWYkKA .navbar .navbar-collapse .img-column img {
  width: 100%;
}
.cid-tq7tpWYkKA .navbar .navbar-collapse .text-column {
  overflow: auto;
  max-height: calc(100vh - 7rem);
}
.cid-tq7tpWYkKA .navbar .navbar-collapse .contact-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.cid-tq7tpWYkKA .navbar:not(.navbar-short) .text-column {
  max-height: calc(100vh - 4rem - 3rem);
}
.cid-tq7tpWYkKA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tq7tpWYkKA .navbar.collapsed .dropdown-menu {
  text-align: inherit;
  background: transparent !important;
}
.cid-tq7tpWYkKA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tq7tpWYkKA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tq7tpWYkKA .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tq7tpWYkKA .navbar.collapsed ul.navbar-nav {
  word-break: break-word;
}
.cid-tq7tpWYkKA .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: inherit;
}
.cid-tq7tpWYkKA .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.cid-tq7tpWYkKA .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tq7tpWYkKA .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-tq7tpWYkKA .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tq7tpWYkKA .navbar-brand {
  min-height: 61px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tq7tpWYkKA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tq7tpWYkKA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tq7tpWYkKA .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-tq7tpWYkKA .dropdown-item.active,
.cid-tq7tpWYkKA .dropdown-item:active {
  background-color: transparent;
}
.cid-tq7tpWYkKA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tq7tpWYkKA .nav-dropdown .link {
  margin: 0.2em 0em;
}
.cid-tq7tpWYkKA .nav-dropdown .link.dropdown-toggle {
  margin: 0;
}
.cid-tq7tpWYkKA .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin: 0em 0em;
  padding: 0.2em 0em;
}
.cid-tq7tpWYkKA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tq7tpWYkKA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tq7tpWYkKA .socicon {
  transition: color 0.3s;
}
.cid-tq7tpWYkKA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tq7tpWYkKA ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tq7tpWYkKA .navbar-buttons {
  text-align: inherit;
}
.cid-tq7tpWYkKA button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tq7tpWYkKA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tq7tpWYkKA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tq7tpWYkKA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tq7tpWYkKA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tq7tpWYkKA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tq7tpWYkKA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tq7tpWYkKA nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tq7tpWYkKA nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tq7tpWYkKA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tq7tpWYkKA .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-tq7tpWYkKA .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tq7tpWYkKA .icons-menu {
  text-align: inherit;
  margin-right: 20px;
}
.cid-tq7tpWYkKA .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-tq7tpWYkKA .nav-link:hover,
.cid-tq7tpWYkKA .dropdown-item:hover,
.cid-tq7tpWYkKA .icons-menu .mbr-iconfont:hover {
  color: #e0e0e0 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tq7tpWYkKA .navbar {
    height: 77px;
  }
  .cid-tq7tpWYkKA .navbar.opened {
    height: auto;
  }
}
@media (max-width: 767px) {
  .cid-tq7tpWYkKA .navbar-collapse .img-column {
    display: none;
  }
  .cid-tq7tpWYkKA .icons-menu,
  .cid-tq7tpWYkKA .navbar-buttons,
  .cid-tq7tpWYkKA .contact-block,
  .cid-tq7tpWYkKA .text-column {
    text-align: center !important;
  }
}
.cid-tq7tpWYkKA h6.mbr-fonts-style {
  padding: 0;
}
.cid-tq7tpWYkKA .collapsing {
  transition: 0s;
}
.cid-tq7tpWYkKA .flex-container {
  height: 100%;
  width: 100%;
}
@media (min-width: 769px) {
  .cid-tq7tpWYkKA .flex-container {
    display: flex;
    flex-direction: column;
  }
  .cid-tq7tpWYkKA .flex-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
  .cid-tq7tpWYkKA .flex-row.low-row {
    align-items: flex-end;
    flex: 1 1 auto;
  }
  .cid-tq7tpWYkKA .flex-card {
    display: flex;
    flex-direction: column;
  }
  .cid-tq7tpWYkKA .flex-card h6 {
    padding: .5rem 1rem;
  }
  .cid-tq7tpWYkKA .contact-block {
    margin-left: 20px;
  }
  .cid-tq7tpWYkKA .contact-block ul li {
    text-align: left;
  }
  .cid-tq7tpWYkKA ul.col {
    padding: 0;
  }
  .cid-tq7tpWYkKA .flex-row.low-row {
    justify-content: space-between;
  }
}
.cid-tq7tpWYkKA .icons-menu,
.cid-tq7tpWYkKA .navbar-buttons,
.cid-tq7tpWYkKA .contact-block,
.cid-tq7tpWYkKA .text-column {
  color: #000000;
}
.cid-tq7tpWYkKA .icons-menu a span {
  color: #9a0712;
}
.cid-tq7tpWYkKA H6 {
  color: #232323;
  text-align: left;
}
.cid-tq7tpXPVn6 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1280.jpeg");
}
.cid-tq7tpXPVn6 .container {
  max-width: 1040px;
}
.cid-tq7tpXPVn6 .items-container {
  display: grid;
  grid-gap: 1.6rem;
  grid-template-columns: repeat(6, 1fr);
  padding: 0 20px;
}
@media (max-width: 991px) {
  .cid-tq7tpXPVn6 .items-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .cid-tq7tpXPVn6 .items-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .cid-tq7tpXPVn6 .items-container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.cid-tq7tpXPVn6 .social-row {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-tq7tpXPVn6 .social-row {
    justify-content: center;
  }
}
.cid-tq7tpXPVn6 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.4);
  margin-right: 1rem;
  margin-bottom: 12px;
  padding: 6px;
  min-height: 30px;
  min-width: 30px;
}
@media (max-width: 767px) {
  .cid-tq7tpXPVn6 .row {
    text-align: center;
  }
  .cid-tq7tpXPVn6 .social-row {
    justify-content: center;
  }
}
.cid-tq7tpXPVn6 .mbr-section-subtitle {
  color: #000000;
  margin-bottom: 1rem;
  text-align: left;
}
.cid-tq7tpXPVn6 .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
  text-align: left;
}
.cid-tq7tpXPVn6 .list li {
  transition: 0.5s all;
}
.cid-tq7tpXPVn6 .list li:hover {
  opacity: 0.5;
}
.cid-tq7tpXPVn6 .item-wrap {
  margin-bottom: 8px;
}
.cid-tq7tpXPVn6 .mbr-text {
  color: #000000;
}
.cid-tq7tpXPVn6 .footer-separator {
  height: 1px;
  border: none;
  background: #999999;
  margin: 1.6rem 0;
  outline: none;
}
.cid-tq7tpXPVn6 .mbr-iconfont {
  color: #ffffff;
  font-size: 16px;
}
@media (max-width: 767px) {
  .cid-tq7tpXPVn6 .copyright-col {
    text-align: center;
  }
}
.cid-tqdyEIFjNO.popup-builder {
  background-color: #ffffff;
}
.cid-tqdyEIFjNO.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tqdyEIFjNO.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tqdyEIFjNO .modal-content,
.cid-tqdyEIFjNO .modal-dialog {
  height: auto;
}
.cid-tqdyEIFjNO .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tqdyEIFjNO .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tqdyEIFjNO .form-wrapper .mbr-form .form-group,
  .cid-tqdyEIFjNO .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tqdyEIFjNO .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tqdyEIFjNO .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tqdyEIFjNO .mbr-text {
  text-align: center;
}
.cid-tqdyEIFjNO .pt-0 {
  padding-top: 0 !important;
}
.cid-tqdyEIFjNO .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tqdyEIFjNO .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tqdyEIFjNO .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tqdyEIFjNO .modal-open {
  overflow: hidden;
}
.cid-tqdyEIFjNO .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tqdyEIFjNO .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tqdyEIFjNO .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tqdyEIFjNO .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tqdyEIFjNO .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tqdyEIFjNO .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tqdyEIFjNO .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tqdyEIFjNO .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tqdyEIFjNO .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tqdyEIFjNO .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tqdyEIFjNO .modal-backdrop.fade {
  opacity: 0;
}
.cid-tqdyEIFjNO .modal-backdrop.show {
  opacity: .5;
}
.cid-tqdyEIFjNO .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tqdyEIFjNO .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tqdyEIFjNO .modal-header {
    padding: 1rem;
  }
}
.cid-tqdyEIFjNO .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tqdyEIFjNO .modal-header .close svg {
  fill: #353535;
}
.cid-tqdyEIFjNO .modal-header .close:hover {
  opacity: 1;
}
.cid-tqdyEIFjNO .modal-header .close:focus {
  outline: none;
}
.cid-tqdyEIFjNO .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tqdyEIFjNO .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tqdyEIFjNO .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tqdyEIFjNO .modal-body {
    padding: 1rem;
  }
}
.cid-tqdyEIFjNO .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tqdyEIFjNO .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tqdyEIFjNO .modal-footer {
    padding: 1rem;
  }
}
.cid-tqdyEIFjNO .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tqdyEIFjNO .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tqdyEIFjNO .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tqdyEIFjNO .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tqdyEIFjNO .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tqdyEIFjNO .modal-lg,
  .cid-tqdyEIFjNO .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tqdyEIFjNO .modal-xl {
    max-width: 1140px;
  }
}
.cid-tqdyEIFjNO .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tqdyEIFjNO .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tqdyEIFjNO .form-group {
  margin-bottom: 1rem;
}
.cid-tqdyEIFjNO .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tqdyEIFjNO .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tqdyEIFjNO .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tqdyEIFjNO .mbr-section-btn {
  margin: 0;
}
.cid-tqdyEIFjNO .mbr-section-btn .btn {
  margin: 0;
}
.cid-tq7vGA7Bns {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background20.jpg");
}
.cid-tq7vGA7Bns .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tq7vGA7Bns .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tq7vGA7Bns .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tq7vGASGuQ {
  padding-top: 0rem;
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-tq7vGASGuQ {
    padding-top: 0rem;
  }
}
.cid-tq7vGASGuQ .mbr-section-title {
  color: #000000;
}
.cid-tq7vGASGuQ .d-flex {
  align-items: flex-end;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .cid-tq7vGASGuQ .d-flex {
    justify-content: center;
  }
}
.cid-tq7vGASGuQ .link-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-tq7vGASGuQ .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 767px) {
  .cid-tq7vGASGuQ .link-wrapper {
    justify-content: center;
  }
}
.cid-tq7vGASGuQ .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-tq7vGASGuQ .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-tq7vGASGuQ .mbr-section-subtitle:hover {
  background: #b22b35;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tq7vGASGuQ .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-tq7vGASGuQ .link,
.cid-tq7vGASGuQ .link-icon {
  color: #fafafa;
}
.cid-tq7vGBf7N9 .b-shadow {
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.05);
}
.cid-tq7vGBf7N9 .nav-item {
  list-style: none;
}
.cid-tq7vGBf7N9 .nav-item:focus,
.cid-tq7vGBf7N9 .nav-link:focus {
  outline: none;
}
.cid-tq7vGBf7N9 .nav-dropdown .dropdown-menu {
  padding-top: 0;
}
.cid-tq7vGBf7N9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tq7vGBf7N9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tq7vGBf7N9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tq7vGBf7N9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tq7vGBf7N9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0em 0em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tq7vGBf7N9 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  flex-direction: row !important;
  background: #ffffff;
}
.cid-tq7vGBf7N9 .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-tq7vGBf7N9 .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-tq7vGBf7N9 .navbar .navbar-collapse {
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  height: 100%;
  padding-top: 3rem;
  padding-bottom: 3rem;
  z-index: 1;
}
.cid-tq7vGBf7N9 .navbar .navbar-collapse > .container {
  height: 100%;
}
.cid-tq7vGBf7N9 .navbar .navbar-collapse.show,
.cid-tq7vGBf7N9 .navbar .navbar-collapse.collapsing {
  display: -webkit-flex;
}
.cid-tq7vGBf7N9 .navbar .navbar-collapse .img-column img {
  width: 100%;
}
.cid-tq7vGBf7N9 .navbar .navbar-collapse .text-column {
  overflow: auto;
  max-height: calc(100vh - 7rem);
}
.cid-tq7vGBf7N9 .navbar .navbar-collapse .contact-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.cid-tq7vGBf7N9 .navbar:not(.navbar-short) .text-column {
  max-height: calc(100vh - 4rem - 3rem);
}
.cid-tq7vGBf7N9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tq7vGBf7N9 .navbar.collapsed .dropdown-menu {
  text-align: inherit;
  background: transparent !important;
}
.cid-tq7vGBf7N9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tq7vGBf7N9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tq7vGBf7N9 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tq7vGBf7N9 .navbar.collapsed ul.navbar-nav {
  word-break: break-word;
}
.cid-tq7vGBf7N9 .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: inherit;
}
.cid-tq7vGBf7N9 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.cid-tq7vGBf7N9 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tq7vGBf7N9 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-tq7vGBf7N9 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tq7vGBf7N9 .navbar-brand {
  min-height: 61px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tq7vGBf7N9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tq7vGBf7N9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tq7vGBf7N9 .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-tq7vGBf7N9 .dropdown-item.active,
.cid-tq7vGBf7N9 .dropdown-item:active {
  background-color: transparent;
}
.cid-tq7vGBf7N9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tq7vGBf7N9 .nav-dropdown .link {
  margin: 0.2em 0em;
}
.cid-tq7vGBf7N9 .nav-dropdown .link.dropdown-toggle {
  margin: 0;
}
.cid-tq7vGBf7N9 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin: 0em 0em;
  padding: 0.2em 0em;
}
.cid-tq7vGBf7N9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tq7vGBf7N9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tq7vGBf7N9 .socicon {
  transition: color 0.3s;
}
.cid-tq7vGBf7N9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tq7vGBf7N9 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tq7vGBf7N9 .navbar-buttons {
  text-align: inherit;
}
.cid-tq7vGBf7N9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tq7vGBf7N9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tq7vGBf7N9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tq7vGBf7N9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tq7vGBf7N9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tq7vGBf7N9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tq7vGBf7N9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tq7vGBf7N9 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tq7vGBf7N9 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tq7vGBf7N9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tq7vGBf7N9 .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-tq7vGBf7N9 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tq7vGBf7N9 .icons-menu {
  text-align: inherit;
  margin-right: 20px;
}
.cid-tq7vGBf7N9 .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-tq7vGBf7N9 .nav-link:hover,
.cid-tq7vGBf7N9 .dropdown-item:hover,
.cid-tq7vGBf7N9 .icons-menu .mbr-iconfont:hover {
  color: #e0e0e0 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tq7vGBf7N9 .navbar {
    height: 77px;
  }
  .cid-tq7vGBf7N9 .navbar.opened {
    height: auto;
  }
}
@media (max-width: 767px) {
  .cid-tq7vGBf7N9 .navbar-collapse .img-column {
    display: none;
  }
  .cid-tq7vGBf7N9 .icons-menu,
  .cid-tq7vGBf7N9 .navbar-buttons,
  .cid-tq7vGBf7N9 .contact-block,
  .cid-tq7vGBf7N9 .text-column {
    text-align: center !important;
  }
}
.cid-tq7vGBf7N9 h6.mbr-fonts-style {
  padding: 0;
}
.cid-tq7vGBf7N9 .collapsing {
  transition: 0s;
}
.cid-tq7vGBf7N9 .flex-container {
  height: 100%;
  width: 100%;
}
@media (min-width: 769px) {
  .cid-tq7vGBf7N9 .flex-container {
    display: flex;
    flex-direction: column;
  }
  .cid-tq7vGBf7N9 .flex-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
  .cid-tq7vGBf7N9 .flex-row.low-row {
    align-items: flex-end;
    flex: 1 1 auto;
  }
  .cid-tq7vGBf7N9 .flex-card {
    display: flex;
    flex-direction: column;
  }
  .cid-tq7vGBf7N9 .flex-card h6 {
    padding: .5rem 1rem;
  }
  .cid-tq7vGBf7N9 .contact-block {
    margin-left: 20px;
  }
  .cid-tq7vGBf7N9 .contact-block ul li {
    text-align: left;
  }
  .cid-tq7vGBf7N9 ul.col {
    padding: 0;
  }
  .cid-tq7vGBf7N9 .flex-row.low-row {
    justify-content: space-between;
  }
}
.cid-tq7vGBf7N9 .icons-menu,
.cid-tq7vGBf7N9 .navbar-buttons,
.cid-tq7vGBf7N9 .contact-block,
.cid-tq7vGBf7N9 .text-column {
  color: #000000;
}
.cid-tq7vGBf7N9 .icons-menu a span {
  color: #9a0712;
}
.cid-tq7vGBf7N9 H6 {
  color: #232323;
  text-align: left;
}
.cid-tq7vGBXuRv {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1280.jpeg");
}
.cid-tq7vGBXuRv .container {
  max-width: 1040px;
}
.cid-tq7vGBXuRv .items-container {
  display: grid;
  grid-gap: 1.6rem;
  grid-template-columns: repeat(6, 1fr);
  padding: 0 20px;
}
@media (max-width: 991px) {
  .cid-tq7vGBXuRv .items-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .cid-tq7vGBXuRv .items-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .cid-tq7vGBXuRv .items-container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.cid-tq7vGBXuRv .social-row {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-tq7vGBXuRv .social-row {
    justify-content: center;
  }
}
.cid-tq7vGBXuRv .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.4);
  margin-right: 1rem;
  margin-bottom: 12px;
  padding: 6px;
  min-height: 30px;
  min-width: 30px;
}
@media (max-width: 767px) {
  .cid-tq7vGBXuRv .row {
    text-align: center;
  }
  .cid-tq7vGBXuRv .social-row {
    justify-content: center;
  }
}
.cid-tq7vGBXuRv .mbr-section-subtitle {
  color: #000000;
  margin-bottom: 1rem;
  text-align: left;
}
.cid-tq7vGBXuRv .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
  text-align: left;
}
.cid-tq7vGBXuRv .list li {
  transition: 0.5s all;
}
.cid-tq7vGBXuRv .list li:hover {
  opacity: 0.5;
}
.cid-tq7vGBXuRv .item-wrap {
  margin-bottom: 8px;
}
.cid-tq7vGBXuRv .mbr-text {
  color: #000000;
}
.cid-tq7vGBXuRv .footer-separator {
  height: 1px;
  border: none;
  background: #999999;
  margin: 1.6rem 0;
  outline: none;
}
.cid-tq7vGBXuRv .mbr-iconfont {
  color: #ffffff;
  font-size: 16px;
}
@media (max-width: 767px) {
  .cid-tq7vGBXuRv .copyright-col {
    text-align: center;
  }
}
.cid-tqdyEIFFiK.popup-builder {
  background-color: #ffffff;
}
.cid-tqdyEIFFiK.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tqdyEIFFiK.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tqdyEIFFiK .modal-content,
.cid-tqdyEIFFiK .modal-dialog {
  height: auto;
}
.cid-tqdyEIFFiK .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tqdyEIFFiK .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tqdyEIFFiK .form-wrapper .mbr-form .form-group,
  .cid-tqdyEIFFiK .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tqdyEIFFiK .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tqdyEIFFiK .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tqdyEIFFiK .mbr-text {
  text-align: center;
}
.cid-tqdyEIFFiK .pt-0 {
  padding-top: 0 !important;
}
.cid-tqdyEIFFiK .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tqdyEIFFiK .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tqdyEIFFiK .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tqdyEIFFiK .modal-open {
  overflow: hidden;
}
.cid-tqdyEIFFiK .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tqdyEIFFiK .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tqdyEIFFiK .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tqdyEIFFiK .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tqdyEIFFiK .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tqdyEIFFiK .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tqdyEIFFiK .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tqdyEIFFiK .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tqdyEIFFiK .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tqdyEIFFiK .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tqdyEIFFiK .modal-backdrop.fade {
  opacity: 0;
}
.cid-tqdyEIFFiK .modal-backdrop.show {
  opacity: .5;
}
.cid-tqdyEIFFiK .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tqdyEIFFiK .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tqdyEIFFiK .modal-header {
    padding: 1rem;
  }
}
.cid-tqdyEIFFiK .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tqdyEIFFiK .modal-header .close svg {
  fill: #353535;
}
.cid-tqdyEIFFiK .modal-header .close:hover {
  opacity: 1;
}
.cid-tqdyEIFFiK .modal-header .close:focus {
  outline: none;
}
.cid-tqdyEIFFiK .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tqdyEIFFiK .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tqdyEIFFiK .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tqdyEIFFiK .modal-body {
    padding: 1rem;
  }
}
.cid-tqdyEIFFiK .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tqdyEIFFiK .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tqdyEIFFiK .modal-footer {
    padding: 1rem;
  }
}
.cid-tqdyEIFFiK .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tqdyEIFFiK .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tqdyEIFFiK .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tqdyEIFFiK .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tqdyEIFFiK .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tqdyEIFFiK .modal-lg,
  .cid-tqdyEIFFiK .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tqdyEIFFiK .modal-xl {
    max-width: 1140px;
  }
}
.cid-tqdyEIFFiK .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tqdyEIFFiK .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tqdyEIFFiK .form-group {
  margin-bottom: 1rem;
}
.cid-tqdyEIFFiK .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tqdyEIFFiK .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tqdyEIFFiK .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tqdyEIFFiK .mbr-section-btn {
  margin: 0;
}
.cid-tqdyEIFFiK .mbr-section-btn .btn {
  margin: 0;
}
.cid-tq7yHpSNwF {
  display: flex;
  align-items: center;
}
.cid-tq7yHpSNwF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tq7yHpSNwF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/mbr-1920x1275.jpg");
}
.cid-tq7yHpSNwF .row {
  justify-content: flex-start;
}
.cid-tq7yHpSNwF .mbr-section-title {
  color: #FEF9EE;
}
.cid-tq7yHpSNwF .mbr-section-subtitle {
  color: #FEF9EE;
}
.cid-tq7yHpSNwF .mbr-text {
  color: #FEF9EE;
}
.cid-tq7JNjecEZ {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #e6ecf2;
}
.cid-tq7JNjecEZ .container {
  margin-bottom: 70px;
}
.cid-tq7JNjecEZ .container .mbr-section-subtitle {
  color: #4f87fb;
  font-weight: 800;
  margin-bottom: 10px;
}
.cid-tq7JNjecEZ .container .mbr-section-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-tq7JNjecEZ .container .mbr-section-title,
.cid-tq7JNjecEZ .container .signature {
  color: #130947;
}
.cid-tq7JNjecEZ .container .mbr-section-title {
  margin-bottom: 20px;
}
.cid-tq7JNjecEZ .container .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-tq7JNjecEZ .container .mbr-text {
  line-height: 1.5;
  letter-spacing: 0;
  color: #6d7a8c;
}
.cid-tq7JNjecEZ .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0 0rem;
}
.cid-tq7JNjecEZ .carousel-item > div {
  width: 100%;
}
.cid-tq7JNjecEZ .carousel-item.active,
.cid-tq7JNjecEZ .carousel-item-next,
.cid-tq7JNjecEZ .carousel-item-prev {
  display: flex;
}
.cid-tq7JNjecEZ .carousel-indicators {
  left: 0%;
  margin: 20px auto 0;
  align-items: center;
  bottom: -40px !important;
}
.cid-tq7JNjecEZ .carousel-indicators .active {
  opacity: 1;
  border: 0;
  background-color: #9a0712 !important;
}
.cid-tq7JNjecEZ .carousel-indicators li {
  height: 15px;
  width: 15px;
  border-radius: 50%;
  transition: opacity 0.5s;
  background-color: #ffffff;
  font-size: 2rem;
  opacity: 0.5;
  border-width: 0px;
  border: 1px solid #e5e8ef;
}
.cid-tq7JNjecEZ .carousel-indicators li:hover {
  opacity: 1;
}
@media (max-width: 991px) {
  .cid-tq7JNjecEZ .carousel-controls {
    display: none;
  }
}
.cid-tq7JNjecEZ .carousel-controls a {
  transition: opacity 0.5s;
  font-size: 1.2rem;
}
.cid-tq7JNjecEZ .carousel-controls a span {
  padding: 15px;
  border-radius: 50%;
  color: #ffffff;
  background: #9a0712;
  opacity: 0.9;
}
.cid-tq7JNjecEZ .carousel-controls a:hover span {
  opacity: 1;
}
.cid-tq7JNjecEZ .card {
  display: block;
  background-color: #ffffff;
  border-bottom: 1px solid #b22b35;
  border-radius: 4px;
  padding: 15px;
  padding-bottom: 20px;
}
.cid-tq7JNjecEZ .card .service-icon {
  text-align: center;
  position: relative;
}
.cid-tq7JNjecEZ .card .service-icon-wrapper {
  color: #ffffff;
  height: 64px;
  width: 64px;
  display: inline-block;
  border-radius: 50%;
  margin-bottom: 30px;
  position: relative;
  margin-top: -35px;
}
.cid-tq7JNjecEZ .card .service-icon .front {
  padding: 18px;
  border-radius: 100%;
  background-color: #9a0712;
  color: #ffffff;
  font-size: 1.8rem;
  transition: 0.6s all;
  z-index: 9;
  position: relative;
}
.cid-tq7JNjecEZ .card .service-icon:after {
  opacity: 0.5;
  background-color: #9a0712;
  width: 76px;
  height: 76px;
  content: '';
  position: absolute;
  top: -34px;
  left: 50%;
  margin-left: -13%;
  border-radius: 50%;
  z-index: 0;
}
.cid-tq7JNjecEZ .card .signature {
  padding-bottom: 10px;
  margin-bottom: 20px;
  color: #130947;
  font-weight: 7800;
}
.cid-tq7JNjecEZ .card .signature.display-7 {
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-tq7JNjecEZ .card .card-text {
  margin-bottom: 25px;
  color: #6d7a8c;
  font-weight: 400;
}
.cid-tq7JNjecEZ .card .card-text.display-7 {
  font-size: 16px;
  line-height: 1.5;
}
.cid-tq7JNjecEZ .card .mbr-section-btn {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 21.7px;
}
.cid-tq7JNjecEZ .card .mbr-section-btn .link {
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  color: #4f87fb;
}
.cid-tq7JNjecEZ .card .mbr-section-btn .link:not(:first-child) {
  margin-left: 25px;
}
.cid-tq7JNjecEZ .card .mbr-section-btn a.text-white:hover,
.cid-tq7JNjecEZ .card .mbr-section-btn a.text-white:focus {
  color: #000000 !important;
}
@media (min-width: 992px) {
  .cid-tq7JNjecEZ .carousel-item {
    padding: 0 2rem;
  }
}
@media (min-width: 768px) {
  .cid-tq7JNjecEZ .carousel-controls a {
    width: 5%;
  }
}
.cid-tq7yHqcj85 {
  padding-top: 0rem;
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-tq7yHqcj85 {
    padding-top: 0rem;
  }
}
.cid-tq7yHqcj85 .mbr-section-title {
  color: #000000;
}
.cid-tq7yHqcj85 .d-flex {
  align-items: flex-end;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .cid-tq7yHqcj85 .d-flex {
    justify-content: center;
  }
}
.cid-tq7yHqcj85 .link-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-tq7yHqcj85 .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 767px) {
  .cid-tq7yHqcj85 .link-wrapper {
    justify-content: center;
  }
}
.cid-tq7yHqcj85 .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-tq7yHqcj85 .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-tq7yHqcj85 .mbr-section-subtitle:hover {
  background: #b22b35;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tq7yHqcj85 .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-tq7yHqcj85 .link,
.cid-tq7yHqcj85 .link-icon {
  color: #fafafa;
}
.cid-tq7yHqwzmc .b-shadow {
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.05);
}
.cid-tq7yHqwzmc .nav-item {
  list-style: none;
}
.cid-tq7yHqwzmc .nav-item:focus,
.cid-tq7yHqwzmc .nav-link:focus {
  outline: none;
}
.cid-tq7yHqwzmc .nav-dropdown .dropdown-menu {
  padding-top: 0;
}
.cid-tq7yHqwzmc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tq7yHqwzmc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tq7yHqwzmc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tq7yHqwzmc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tq7yHqwzmc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0em 0em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tq7yHqwzmc .navbar {
  min-height: 77px;
  transition: all 0.3s;
  flex-direction: row !important;
  background: #ffffff;
}
.cid-tq7yHqwzmc .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-tq7yHqwzmc .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-tq7yHqwzmc .navbar .navbar-collapse {
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  height: 100%;
  padding-top: 3rem;
  padding-bottom: 3rem;
  z-index: 1;
}
.cid-tq7yHqwzmc .navbar .navbar-collapse > .container {
  height: 100%;
}
.cid-tq7yHqwzmc .navbar .navbar-collapse.show,
.cid-tq7yHqwzmc .navbar .navbar-collapse.collapsing {
  display: -webkit-flex;
}
.cid-tq7yHqwzmc .navbar .navbar-collapse .img-column img {
  width: 100%;
}
.cid-tq7yHqwzmc .navbar .navbar-collapse .text-column {
  overflow: auto;
  max-height: calc(100vh - 7rem);
}
.cid-tq7yHqwzmc .navbar .navbar-collapse .contact-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.cid-tq7yHqwzmc .navbar:not(.navbar-short) .text-column {
  max-height: calc(100vh - 4rem - 3rem);
}
.cid-tq7yHqwzmc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tq7yHqwzmc .navbar.collapsed .dropdown-menu {
  text-align: inherit;
  background: transparent !important;
}
.cid-tq7yHqwzmc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tq7yHqwzmc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tq7yHqwzmc .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tq7yHqwzmc .navbar.collapsed ul.navbar-nav {
  word-break: break-word;
}
.cid-tq7yHqwzmc .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: inherit;
}
.cid-tq7yHqwzmc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.cid-tq7yHqwzmc .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tq7yHqwzmc .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-tq7yHqwzmc .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tq7yHqwzmc .navbar-brand {
  min-height: 61px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tq7yHqwzmc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tq7yHqwzmc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tq7yHqwzmc .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-tq7yHqwzmc .dropdown-item.active,
.cid-tq7yHqwzmc .dropdown-item:active {
  background-color: transparent;
}
.cid-tq7yHqwzmc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tq7yHqwzmc .nav-dropdown .link {
  margin: 0.2em 0em;
}
.cid-tq7yHqwzmc .nav-dropdown .link.dropdown-toggle {
  margin: 0;
}
.cid-tq7yHqwzmc .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin: 0em 0em;
  padding: 0.2em 0em;
}
.cid-tq7yHqwzmc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tq7yHqwzmc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tq7yHqwzmc .socicon {
  transition: color 0.3s;
}
.cid-tq7yHqwzmc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tq7yHqwzmc ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tq7yHqwzmc .navbar-buttons {
  text-align: inherit;
}
.cid-tq7yHqwzmc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tq7yHqwzmc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tq7yHqwzmc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tq7yHqwzmc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tq7yHqwzmc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tq7yHqwzmc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tq7yHqwzmc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tq7yHqwzmc nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tq7yHqwzmc nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tq7yHqwzmc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tq7yHqwzmc .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-tq7yHqwzmc .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tq7yHqwzmc .icons-menu {
  text-align: inherit;
  margin-right: 20px;
}
.cid-tq7yHqwzmc .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-tq7yHqwzmc .nav-link:hover,
.cid-tq7yHqwzmc .dropdown-item:hover,
.cid-tq7yHqwzmc .icons-menu .mbr-iconfont:hover {
  color: #e0e0e0 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tq7yHqwzmc .navbar {
    height: 77px;
  }
  .cid-tq7yHqwzmc .navbar.opened {
    height: auto;
  }
}
@media (max-width: 767px) {
  .cid-tq7yHqwzmc .navbar-collapse .img-column {
    display: none;
  }
  .cid-tq7yHqwzmc .icons-menu,
  .cid-tq7yHqwzmc .navbar-buttons,
  .cid-tq7yHqwzmc .contact-block,
  .cid-tq7yHqwzmc .text-column {
    text-align: center !important;
  }
}
.cid-tq7yHqwzmc h6.mbr-fonts-style {
  padding: 0;
}
.cid-tq7yHqwzmc .collapsing {
  transition: 0s;
}
.cid-tq7yHqwzmc .flex-container {
  height: 100%;
  width: 100%;
}
@media (min-width: 769px) {
  .cid-tq7yHqwzmc .flex-container {
    display: flex;
    flex-direction: column;
  }
  .cid-tq7yHqwzmc .flex-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
  .cid-tq7yHqwzmc .flex-row.low-row {
    align-items: flex-end;
    flex: 1 1 auto;
  }
  .cid-tq7yHqwzmc .flex-card {
    display: flex;
    flex-direction: column;
  }
  .cid-tq7yHqwzmc .flex-card h6 {
    padding: .5rem 1rem;
  }
  .cid-tq7yHqwzmc .contact-block {
    margin-left: 20px;
  }
  .cid-tq7yHqwzmc .contact-block ul li {
    text-align: left;
  }
  .cid-tq7yHqwzmc ul.col {
    padding: 0;
  }
  .cid-tq7yHqwzmc .flex-row.low-row {
    justify-content: space-between;
  }
}
.cid-tq7yHqwzmc .icons-menu,
.cid-tq7yHqwzmc .navbar-buttons,
.cid-tq7yHqwzmc .contact-block,
.cid-tq7yHqwzmc .text-column {
  color: #000000;
}
.cid-tq7yHqwzmc .icons-menu a span {
  color: #9a0712;
}
.cid-tq7yHqwzmc H6 {
  color: #232323;
  text-align: left;
}
.cid-tq7Ib3eA9m {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #181818;
}
.cid-tq7Ib3eA9m p,
.cid-tq7Ib3eA9m h6 {
  font-weight: 300 !important;
}
.cid-tq7Ib3eA9m .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #fff;
  margin-left: 1rem;
}
.cid-tq7Ib3eA9m .panel-group {
  border: none;
}
.cid-tq7Ib3eA9m .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tq7Ib3eA9m .panel-title-edit {
  color: #fff;
}
.cid-tq7Ib3eA9m .panel-text {
  color: #fff;
  width: 71%;
}
@media (max-width: 768px) {
  .cid-tq7Ib3eA9m .panel-text {
    width: 100%;
  }
}
.cid-tq7Ib3eA9m .card {
  border-bottom: 1px solid #fff;
  border-radius: 0;
  padding: 1rem 0;
}
@media (min-width: 992px) {
  .cid-tq7Ib3eA9m .card {
    padding: 2rem 0;
  }
}
.cid-tq7Ib3eA9m .card-header {
  padding: 0;
  border-bottom: none;
}
.cid-tq7Ib3eA9m .mbr-section-title {
  margin-bottom: 80px;
  color: #fff;
}
@media (max-width: 992px) {
  .cid-tq7Ib3eA9m .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-tq7IJ5FkK4 {
  padding-top: 0rem;
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-tq7IJ5FkK4 {
    padding-top: 0rem;
  }
}
.cid-tq7IJ5FkK4 .mbr-section-title {
  color: #000000;
}
.cid-tq7IJ5FkK4 .d-flex {
  align-items: flex-end;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .cid-tq7IJ5FkK4 .d-flex {
    justify-content: center;
  }
}
.cid-tq7IJ5FkK4 .link-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  cursor: pointer;
  margin-top: 2rem;
}
.cid-tq7IJ5FkK4 .link-wrapper .link-icon {
  font-size: 6rem;
  transform: rotate(-45deg) translate(-20px, 30px);
  padding-left: 1rem;
  transition: all 0.3s;
  transform-origin: left;
}
@media (max-width: 767px) {
  .cid-tq7IJ5FkK4 .link-wrapper {
    justify-content: center;
  }
}
.cid-tq7IJ5FkK4 .link-wrapper:hover .link-icon {
  transform: rotate(-45deg) scale(0.5) translate(-30px, 50px);
}
.cid-tq7IJ5FkK4 .mbr-section-subtitle {
  width: fit-content;
  text-align: center;
  background: #000000;
  cursor: pointer;
  transform: rotate(-90deg);
  display: block;
  transform-origin: left;
  margin-left: 4.1rem;
  padding: 2rem 4rem;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-tq7IJ5FkK4 .mbr-section-subtitle:hover {
  background: #b22b35;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tq7IJ5FkK4 .mbr-section-subtitle {
    width: 300px;
    padding: 2rem 2rem;
    margin-left: 3.5rem;
  }
}
.cid-tq7IJ5FkK4 .link,
.cid-tq7IJ5FkK4 .link-icon {
  color: #fafafa;
}
.cid-tq7yHroilV {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1280.jpeg");
}
.cid-tq7yHroilV .container {
  max-width: 1040px;
}
.cid-tq7yHroilV .items-container {
  display: grid;
  grid-gap: 1.6rem;
  grid-template-columns: repeat(6, 1fr);
  padding: 0 20px;
}
@media (max-width: 991px) {
  .cid-tq7yHroilV .items-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .cid-tq7yHroilV .items-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .cid-tq7yHroilV .items-container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.cid-tq7yHroilV .social-row {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-tq7yHroilV .social-row {
    justify-content: center;
  }
}
.cid-tq7yHroilV .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.4);
  margin-right: 1rem;
  margin-bottom: 12px;
  padding: 6px;
  min-height: 30px;
  min-width: 30px;
}
@media (max-width: 767px) {
  .cid-tq7yHroilV .row {
    text-align: center;
  }
  .cid-tq7yHroilV .social-row {
    justify-content: center;
  }
}
.cid-tq7yHroilV .mbr-section-subtitle {
  color: #000000;
  margin-bottom: 1rem;
  text-align: left;
}
.cid-tq7yHroilV .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
  text-align: left;
}
.cid-tq7yHroilV .list li {
  transition: 0.5s all;
}
.cid-tq7yHroilV .list li:hover {
  opacity: 0.5;
}
.cid-tq7yHroilV .item-wrap {
  margin-bottom: 8px;
}
.cid-tq7yHroilV .mbr-text {
  color: #000000;
}
.cid-tq7yHroilV .footer-separator {
  height: 1px;
  border: none;
  background: #999999;
  margin: 1.6rem 0;
  outline: none;
}
.cid-tq7yHroilV .mbr-iconfont {
  color: #ffffff;
  font-size: 16px;
}
@media (max-width: 767px) {
  .cid-tq7yHroilV .copyright-col {
    text-align: center;
  }
}
.cid-tqdyEIFTa5.popup-builder {
  background-color: #ffffff;
}
.cid-tqdyEIFTa5.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tqdyEIFTa5.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tqdyEIFTa5 .modal-content,
.cid-tqdyEIFTa5 .modal-dialog {
  height: auto;
}
.cid-tqdyEIFTa5 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tqdyEIFTa5 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tqdyEIFTa5 .form-wrapper .mbr-form .form-group,
  .cid-tqdyEIFTa5 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tqdyEIFTa5 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tqdyEIFTa5 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tqdyEIFTa5 .mbr-text {
  text-align: center;
}
.cid-tqdyEIFTa5 .pt-0 {
  padding-top: 0 !important;
}
.cid-tqdyEIFTa5 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tqdyEIFTa5 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tqdyEIFTa5 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tqdyEIFTa5 .modal-open {
  overflow: hidden;
}
.cid-tqdyEIFTa5 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tqdyEIFTa5 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tqdyEIFTa5 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tqdyEIFTa5 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tqdyEIFTa5 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tqdyEIFTa5 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tqdyEIFTa5 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tqdyEIFTa5 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tqdyEIFTa5 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tqdyEIFTa5 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tqdyEIFTa5 .modal-backdrop.fade {
  opacity: 0;
}
.cid-tqdyEIFTa5 .modal-backdrop.show {
  opacity: .5;
}
.cid-tqdyEIFTa5 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tqdyEIFTa5 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tqdyEIFTa5 .modal-header {
    padding: 1rem;
  }
}
.cid-tqdyEIFTa5 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tqdyEIFTa5 .modal-header .close svg {
  fill: #353535;
}
.cid-tqdyEIFTa5 .modal-header .close:hover {
  opacity: 1;
}
.cid-tqdyEIFTa5 .modal-header .close:focus {
  outline: none;
}
.cid-tqdyEIFTa5 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tqdyEIFTa5 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tqdyEIFTa5 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tqdyEIFTa5 .modal-body {
    padding: 1rem;
  }
}
.cid-tqdyEIFTa5 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tqdyEIFTa5 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tqdyEIFTa5 .modal-footer {
    padding: 1rem;
  }
}
.cid-tqdyEIFTa5 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tqdyEIFTa5 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tqdyEIFTa5 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tqdyEIFTa5 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tqdyEIFTa5 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tqdyEIFTa5 .modal-lg,
  .cid-tqdyEIFTa5 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tqdyEIFTa5 .modal-xl {
    max-width: 1140px;
  }
}
.cid-tqdyEIFTa5 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tqdyEIFTa5 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tqdyEIFTa5 .form-group {
  margin-bottom: 1rem;
}
.cid-tqdyEIFTa5 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tqdyEIFTa5 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tqdyEIFTa5 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tqdyEIFTa5 .mbr-section-btn {
  margin: 0;
}
.cid-tqdyEIFTa5 .mbr-section-btn .btn {
  margin: 0;
}
.cid-tq7R0jRLGi {
  display: flex;
  align-items: center;
}
.cid-tq7R0jRLGi .mbr-fallback-image.disabled {
  display: none;
}
.cid-tq7R0jRLGi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/mbr-1920x1275.jpg");
}
.cid-tq7R0jRLGi .row {
  justify-content: flex-start;
}
.cid-tq7R0jRLGi .mbr-section-title {
  color: #FEF9EE;
}
.cid-tq7R0jRLGi .mbr-section-subtitle {
  color: #FEF9EE;
}
.cid-tq7R0jRLGi .mbr-text {
  color: #FEF9EE;
}
.cid-tq7R0kHeIw {
  padding-top: 2rem;
  padding-bottom: 2rem;
  position: relative;
  background-color: #ffffff;
}
.cid-tq7R0kHeIw .content_box {
  padding: 2rem 15%;
  background-color: #0086c2;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
}
@media (max-width: 991px) {
  .cid-tq7R0kHeIw .content_box {
    margin-top: 30px;
    padding: 65px 30px;
  }
  .cid-tq7R0kHeIw .content_box .shape {
    width: auto;
    padding: 0 1rem;
  }
}
.cid-tq7R0kHeIw .shape {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  opacity: 0.5;
  padding: 0 100px;
}
.cid-tq7R0kHeIw .shape img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-tq7R0kHeIw .mbr-text {
  line-height: 1;
  color: #ffffff;
  position: relative;
  z-index: 2;
  text-align: left;
}
.cid-tq7R0kHeIw .video-wrapper img,
.cid-tq7R0kHeIw .video-wrapper iframe {
  max-height: 400px;
  object-fit: cover;
}
.cid-tq7R0l43Ks {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-tq7R0l43Ks .mbr-section-title {
  margin-bottom: 50px;
  color: #ffffff;
}
.cid-tq7R0l43Ks .line {
  width: 100%;
  background-color: #a3a6b2;
  height: 2px;
  margin: 0 0 30px;
  padding: 0;
}
.cid-tq7R0l43Ks .date {
  color: #ffffff;
}
.cid-tq7R0l43Ks .workplace {
  color: #ffffff;
}
.cid-tq7R0l43Ks .description {
  color: #a3a6b2;
}
.cid-tq7R0l43Ks .inline {
  margin-bottom: 30px;
}
.cid-tq7R0l43Ks .button-top {
  margin-top: 50px;
  padding: 0;
}
.cid-tq7R0l43Ks .btn {
  margin: 0;
}
@media (max-width: 450px) {
  .cid-tq7R0l43Ks .button-top {
    margin-top: 0px;
  }
}
.cid-tq7R0lrAbK {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tq7R0lrAbK .button-padding {
  padding: 0;
}
.cid-tq7R0lrAbK .btn {
  margin: 0;
}
.cid-tq7R0lrAbK .title {
  padding-bottom: 30px;
  margin-bottom: 0px;
}
.cid-tq7R0lrAbK .mbr-text {
  padding-bottom: 30px;
  margin-bottom: 0;
}
.cid-tq7R0lrAbK .card-title {
  padding-bottom: 5px;
  margin: 0;
  color: #a3a6b2;
}
.cid-tq7R0lOGxP {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #f9f7f7;
}
.cid-tq7R0lOGxP .mbr-section-title {
  letter-spacing: 0.1em;
  color: #444444;
  margin-bottom: 2rem;
}
.cid-tq7R0lOGxP .mbr-section-subtitle {
  color: #444444;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-tq7R0lOGxP .btn {
  margin: 0px !important;
}
.cid-tq7R0lOGxP .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tq7R0lOGxP .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tq7R0lOGxP .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-tq7R0lOGxP .carousel-item .wrap-img {
  text-align: center;
}
.cid-tq7R0lOGxP .carousel-item .wrap-img img {
  max-height: 250px;
  width: auto;
  max-width: 100%;
}
.cid-tq7R0lOGxP .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-tq7R0lOGxP .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 2rem;
  text-align: center;
}
.cid-tq7R0lOGxP .carousel-indicators li {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #9a0712;
  display: inline-block;
  border: 4px solid #9a0712;
}
.cid-tq7R0lOGxP .carousel-indicators li.active {
  border-color: #5d0001;
}
@media (max-width: 768px) {
  .cid-tq7R0lOGxP .second-col {
    padding-top: 2rem;
  }
}
.cid-tq7R0mrI0a {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tq7R0mrI0a .mbr-iconfont {
  display: block;
  font-size: 4rem;
  color: #b22b35;
  margin-bottom: 2rem;
}
.cid-tq7R0mrI0a .link {
  opacity: 0;
  margin-top: 0rem;
  margin-bottom: 1.5rem;
  transform: translate3d(0, 100%, 0);
  transition: all 0.3s;
}
.cid-tq7R0mrI0a img {
  border-radius: 10px;
}
.cid-tq7R0mrI0a .mbr-section-title {
  color: #000000;
}
.cid-tq7R0mrI0a .mbr-buttons {
  background-color: #b22b35;
}
.cid-tq7R0mrI0a .header {
  margin-bottom: 50px;
  align-items: center;
}
.cid-tq7R0mrI0a a {
  text-transform: uppercase;
  color: #b22b35;
}
.cid-tq7R0mrI0a svg {
  padding-left: 15px;
  transition: 0.3s;
}
.cid-tq7R0mrI0a .link:hover svg {
  padding-left: 7px;
  transition: 0.3s;
}
.cid-tq7R0mrI0a .item-title {
  color: #565A69;
  margin: 20px 0;
}
.cid-tq7R0mrI0a .card-heading {
  line-height: 1.2;
  margin: 0px;
}
.cid-tq7R0mrI0a .item-wrapper:hover {
  cursor: pointer;
}
.cid-tq7R0mrI0a .item-wrapper:hover .link {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.cid-tq7R0mrI0a .button {
  text-align: right;
}
@media (max-width: 600px) {
  .cid-tq7R0mrI0a .header {
    margin-bottom: 20px;
  }
  .cid-tq7R0mrI0a .link {
    margin-top: 20px;
    margin-bottom: 20px;
    opacity: 1;
    transform: none;
  }
  .cid-tq7R0mrI0a .button {
    text-align: left;
  }
}
.cid-tq7R0mUlt8 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #f9f7f7;
}
.cid-tq7R0mUlt8 .carousel-item {
  justify-content: center;
  -webkit-justify-content: center;
  padding-top: 8rem;
}
.cid-tq7R0mUlt8 .carousel-item.active,
.cid-tq7R0mUlt8 .carousel-item-next,
.cid-tq7R0mUlt8 .carousel-item-prev {
  display: flex;
}
.cid-tq7R0mUlt8 h2 {
  font-size: 15rem;
  position: absolute;
  left: 50%;
  width: fit-content;
  right: 50%;
  top: -8rem;
  transform: translateX(-50%);
  opacity: 0.1;
}
.cid-tq7R0mUlt8 .carousel-controls a {
  transition: opacity 0.5s;
  font-size: 2rem;
}
.cid-tq7R0mUlt8 .carousel-controls a span {
  position: absolute;
  top: 120px;
  padding: 10px;
  border-radius: 50%;
  color: white;
  background: #b22b35;
  opacity: 0.3;
  transition: all 0.3s;
}
.cid-tq7R0mUlt8 .carousel-controls a:hover span {
  opacity: 0.4;
}
.cid-tq7R0mUlt8 H2 {
  color: #b69b74;
}
.cid-tq7R0mUlt8 .title {
  color: #343434;
}
.cid-tq7R0mUlt8 .user_text {
  color: #767676;
}
.cid-tq7R0nlc1S {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background: #ffffff;
}
.cid-tq7R0nlc1S .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-tq7R0nlc1S .team-card:hover {
  transform: translateY(-10px);
}
.cid-tq7R0nlc1S .card-wrap {
  background: #ffffff;
  border-radius: 5px;
}
.cid-tq7R0nlc1S .card-wrap .image-wrap img {
  width: 100%;
}
.cid-tq7R0nlc1S .social-row {
  padding-top: 20px;
  text-align: center;
}
.cid-tq7R0nlc1S .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #9a0712;
  transition: all 0.3s;
}
.cid-tq7R0nlc1S .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #9a0712;
  font-size: 1.5rem;
}
.cid-tq7R0nlc1S .social-row .soc-item:hover {
  background-color: #9a0712;
}
.cid-tq7R0nlc1S .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-tq7R0nlc1S img {
  border-radius: 10px;
}
.cid-tq7R0nlc1S .header {
  margin-bottom: 50px;
  align-items: center;
}
.cid-tq7R0nlc1S .content-wrap {
  padding: 0;
}
.cid-tq7R0nlc1S .mbr-role {
  color: #a3a6b2;
  margin: 0;
  padding-top: 20px;
}
.cid-tq7R0nlc1S .card-title {
  margin: 0;
  padding-top: 20px;
}
.cid-tq7R0nlc1S .card-text {
  margin: 0;
  padding-top: 20px;
}
@media (max-width: 1000px) {
  .cid-tq7R0nlc1S .social-row {
    margin-bottom: 25px;
  }
}
.cid-tq7R0o7b4F {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-tq7R0o7b4F .contacts-name {
  padding-bottom: 5px;
  margin: 0;
  color: #a3a6b2;
}
.cid-tq7R0o7b4F .contacts-info {
  padding-bottom: 30px;
  color: #ffffff;
  margin: 0;
}
.cid-tq7R0o7b4F .margin {
  margin-bottom: 10px;
}
.cid-tq7R0o7b4F .mbr-section-title {
  color: white;
  margin-bottom: 20px;
  padding: 0;
}
.cid-tq7R0o7b4F .description {
  color: #a3a6b2;
  margin-bottom: 50px;
  padding: 0;
}
.cid-tq7R0o7b4F .title {
  font-size: 24px;
}
.cid-tq7R0o7b4F .form-heading {
  margin-bottom: 40px;
}
.cid-tq7R0o7b4F label {
  color: #ffffff;
  margin-bottom: 5px;
}
.cid-tq7R0o7b4F input,
.cid-tq7R0o7b4F textarea {
  background-color: #3F424E;
  margin-bottom: 30px;
}
.cid-tq7R0o7b4F .gray-button {
  margin: 0;
  background-color: #3F424E;
  color: #ffffff;
}
.cid-tq7R0o7b4F .mbr-section-btn {
  margin: 0;
  padding: 0;
}
.cid-tq7R0o7b4F .form-group {
  padding: 0 5px;
  margin: 0;
}
.cid-tq7R0o7b4F .left-side {
  padding: 0;
}
@media (max-width: 1000px) {
  .cid-tq7R0o7b4F .gray-button {
    margin-bottom: 50px;
    margin-top: 0px;
  }
}
.cid-tq7R0o7b4F .gray-button:hover {
  background-color: #5e6068;
}
.cid-tq7R0o7b4F ::placeholder {
  color: #a3a6b2;
}
.cid-tq7R0ozizp.popup-builder {
  background-color: #ffffff;
}
.cid-tq7R0ozizp.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tq7R0ozizp.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tq7R0ozizp .modal-content,
.cid-tq7R0ozizp .modal-dialog {
  height: auto;
}
.cid-tq7R0ozizp .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tq7R0ozizp .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tq7R0ozizp .form-wrapper .mbr-form .form-group,
  .cid-tq7R0ozizp .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tq7R0ozizp .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tq7R0ozizp .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tq7R0ozizp .mbr-text {
  text-align: center;
}
.cid-tq7R0ozizp .pt-0 {
  padding-top: 0 !important;
}
.cid-tq7R0ozizp .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tq7R0ozizp .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tq7R0ozizp .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tq7R0ozizp .modal-open {
  overflow: hidden;
}
.cid-tq7R0ozizp .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tq7R0ozizp .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tq7R0ozizp .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tq7R0ozizp .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tq7R0ozizp .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tq7R0ozizp .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tq7R0ozizp .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tq7R0ozizp .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tq7R0ozizp .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tq7R0ozizp .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tq7R0ozizp .modal-backdrop.fade {
  opacity: 0;
}
.cid-tq7R0ozizp .modal-backdrop.show {
  opacity: .5;
}
.cid-tq7R0ozizp .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tq7R0ozizp .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tq7R0ozizp .modal-header {
    padding: 1rem;
  }
}
.cid-tq7R0ozizp .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tq7R0ozizp .modal-header .close svg {
  fill: #353535;
}
.cid-tq7R0ozizp .modal-header .close:hover {
  opacity: 1;
}
.cid-tq7R0ozizp .modal-header .close:focus {
  outline: none;
}
.cid-tq7R0ozizp .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tq7R0ozizp .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tq7R0ozizp .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tq7R0ozizp .modal-body {
    padding: 1rem;
  }
}
.cid-tq7R0ozizp .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tq7R0ozizp .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tq7R0ozizp .modal-footer {
    padding: 1rem;
  }
}
.cid-tq7R0ozizp .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tq7R0ozizp .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tq7R0ozizp .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tq7R0ozizp .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tq7R0ozizp .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tq7R0ozizp .modal-lg,
  .cid-tq7R0ozizp .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tq7R0ozizp .modal-xl {
    max-width: 1140px;
  }
}
.cid-tq7R0ozizp .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tq7R0ozizp .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tq7R0ozizp .form-group {
  margin-bottom: 1rem;
}
.cid-tq7R0ozizp .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tq7R0ozizp .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tq7R0ozizp .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tq7R0ozizp .mbr-section-btn {
  margin: 0;
}
.cid-tq7R0ozizp .mbr-section-btn .btn {
  margin: 0;
}
.cid-tq7R0p9rJL .b-shadow {
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.05);
}
.cid-tq7R0p9rJL .nav-item {
  list-style: none;
}
.cid-tq7R0p9rJL .nav-item:focus,
.cid-tq7R0p9rJL .nav-link:focus {
  outline: none;
}
.cid-tq7R0p9rJL .nav-dropdown .dropdown-menu {
  padding-top: 0;
}
.cid-tq7R0p9rJL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tq7R0p9rJL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tq7R0p9rJL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tq7R0p9rJL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tq7R0p9rJL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0em 0em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tq7R0p9rJL .navbar {
  min-height: 77px;
  transition: all 0.3s;
  flex-direction: row !important;
  background: #ffffff;
}
.cid-tq7R0p9rJL .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-tq7R0p9rJL .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-tq7R0p9rJL .navbar .navbar-collapse {
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  height: 100%;
  padding-top: 3rem;
  padding-bottom: 3rem;
  z-index: 1;
}
.cid-tq7R0p9rJL .navbar .navbar-collapse > .container {
  height: 100%;
}
.cid-tq7R0p9rJL .navbar .navbar-collapse.show,
.cid-tq7R0p9rJL .navbar .navbar-collapse.collapsing {
  display: -webkit-flex;
}
.cid-tq7R0p9rJL .navbar .navbar-collapse .img-column img {
  width: 100%;
}
.cid-tq7R0p9rJL .navbar .navbar-collapse .text-column {
  overflow: auto;
  max-height: calc(100vh - 7rem);
}
.cid-tq7R0p9rJL .navbar .navbar-collapse .contact-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.cid-tq7R0p9rJL .navbar:not(.navbar-short) .text-column {
  max-height: calc(100vh - 4rem - 3rem);
}
.cid-tq7R0p9rJL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tq7R0p9rJL .navbar.collapsed .dropdown-menu {
  text-align: inherit;
  background: transparent !important;
}
.cid-tq7R0p9rJL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tq7R0p9rJL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tq7R0p9rJL .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tq7R0p9rJL .navbar.collapsed ul.navbar-nav {
  word-break: break-word;
}
.cid-tq7R0p9rJL .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: inherit;
}
.cid-tq7R0p9rJL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.cid-tq7R0p9rJL .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tq7R0p9rJL .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-tq7R0p9rJL .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tq7R0p9rJL .navbar-brand {
  min-height: 61px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tq7R0p9rJL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tq7R0p9rJL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tq7R0p9rJL .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-tq7R0p9rJL .dropdown-item.active,
.cid-tq7R0p9rJL .dropdown-item:active {
  background-color: transparent;
}
.cid-tq7R0p9rJL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tq7R0p9rJL .nav-dropdown .link {
  margin: 0.2em 0em;
}
.cid-tq7R0p9rJL .nav-dropdown .link.dropdown-toggle {
  margin: 0;
}
.cid-tq7R0p9rJL .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin: 0em 0em;
  padding: 0.2em 0em;
}
.cid-tq7R0p9rJL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tq7R0p9rJL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tq7R0p9rJL .socicon {
  transition: color 0.3s;
}
.cid-tq7R0p9rJL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tq7R0p9rJL ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tq7R0p9rJL .navbar-buttons {
  text-align: inherit;
}
.cid-tq7R0p9rJL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tq7R0p9rJL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tq7R0p9rJL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tq7R0p9rJL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tq7R0p9rJL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tq7R0p9rJL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tq7R0p9rJL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tq7R0p9rJL nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tq7R0p9rJL nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tq7R0p9rJL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tq7R0p9rJL .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-tq7R0p9rJL .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tq7R0p9rJL .icons-menu {
  text-align: inherit;
  margin-right: 20px;
}
.cid-tq7R0p9rJL .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-tq7R0p9rJL .nav-link:hover,
.cid-tq7R0p9rJL .dropdown-item:hover,
.cid-tq7R0p9rJL .icons-menu .mbr-iconfont:hover {
  color: #e0e0e0 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tq7R0p9rJL .navbar {
    height: 77px;
  }
  .cid-tq7R0p9rJL .navbar.opened {
    height: auto;
  }
}
@media (max-width: 767px) {
  .cid-tq7R0p9rJL .navbar-collapse .img-column {
    display: none;
  }
  .cid-tq7R0p9rJL .icons-menu,
  .cid-tq7R0p9rJL .navbar-buttons,
  .cid-tq7R0p9rJL .contact-block,
  .cid-tq7R0p9rJL .text-column {
    text-align: center !important;
  }
}
.cid-tq7R0p9rJL h6.mbr-fonts-style {
  padding: 0;
}
.cid-tq7R0p9rJL .collapsing {
  transition: 0s;
}
.cid-tq7R0p9rJL .flex-container {
  height: 100%;
  width: 100%;
}
@media (min-width: 769px) {
  .cid-tq7R0p9rJL .flex-container {
    display: flex;
    flex-direction: column;
  }
  .cid-tq7R0p9rJL .flex-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
  .cid-tq7R0p9rJL .flex-row.low-row {
    align-items: flex-end;
    flex: 1 1 auto;
  }
  .cid-tq7R0p9rJL .flex-card {
    display: flex;
    flex-direction: column;
  }
  .cid-tq7R0p9rJL .flex-card h6 {
    padding: .5rem 1rem;
  }
  .cid-tq7R0p9rJL .contact-block {
    margin-left: 20px;
  }
  .cid-tq7R0p9rJL .contact-block ul li {
    text-align: left;
  }
  .cid-tq7R0p9rJL ul.col {
    padding: 0;
  }
  .cid-tq7R0p9rJL .flex-row.low-row {
    justify-content: space-between;
  }
}
.cid-tq7R0p9rJL .icons-menu,
.cid-tq7R0p9rJL .navbar-buttons,
.cid-tq7R0p9rJL .contact-block,
.cid-tq7R0p9rJL .text-column {
  color: #000000;
}
.cid-tq7R0p9rJL .icons-menu a span {
  color: #9a0712;
}
.cid-tq7R0p9rJL H6 {
  color: #232323;
  text-align: left;
}
.cid-tq7R0pMIp0 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1280.jpeg");
}
.cid-tq7R0pMIp0 .container {
  max-width: 1040px;
}
.cid-tq7R0pMIp0 .items-container {
  display: grid;
  grid-gap: 1.6rem;
  grid-template-columns: repeat(6, 1fr);
  padding: 0 20px;
}
@media (max-width: 991px) {
  .cid-tq7R0pMIp0 .items-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .cid-tq7R0pMIp0 .items-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .cid-tq7R0pMIp0 .items-container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.cid-tq7R0pMIp0 .social-row {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-tq7R0pMIp0 .social-row {
    justify-content: center;
  }
}
.cid-tq7R0pMIp0 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.4);
  margin-right: 1rem;
  margin-bottom: 12px;
  padding: 6px;
  min-height: 30px;
  min-width: 30px;
}
@media (max-width: 767px) {
  .cid-tq7R0pMIp0 .row {
    text-align: center;
  }
  .cid-tq7R0pMIp0 .social-row {
    justify-content: center;
  }
}
.cid-tq7R0pMIp0 .mbr-section-subtitle {
  color: #000000;
  margin-bottom: 1rem;
  text-align: left;
}
.cid-tq7R0pMIp0 .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #ffffff;
  text-align: left;
}
.cid-tq7R0pMIp0 .list li {
  transition: 0.5s all;
}
.cid-tq7R0pMIp0 .list li:hover {
  opacity: 0.5;
}
.cid-tq7R0pMIp0 .item-wrap {
  margin-bottom: 8px;
}
.cid-tq7R0pMIp0 .mbr-text {
  color: #000000;
}
.cid-tq7R0pMIp0 .footer-separator {
  height: 1px;
  border: none;
  background: #999999;
  margin: 1.6rem 0;
  outline: none;
}
.cid-tq7R0pMIp0 .mbr-iconfont {
  color: #ffffff;
  font-size: 16px;
}
@media (max-width: 767px) {
  .cid-tq7R0pMIp0 .copyright-col {
    text-align: center;
  }
}
.cid-tqdyEIFeMu.popup-builder {
  background-color: #ffffff;
}
.cid-tqdyEIFeMu.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tqdyEIFeMu.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tqdyEIFeMu .modal-content,
.cid-tqdyEIFeMu .modal-dialog {
  height: auto;
}
.cid-tqdyEIFeMu .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tqdyEIFeMu .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tqdyEIFeMu .form-wrapper .mbr-form .form-group,
  .cid-tqdyEIFeMu .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tqdyEIFeMu .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tqdyEIFeMu .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tqdyEIFeMu .mbr-text {
  text-align: center;
}
.cid-tqdyEIFeMu .pt-0 {
  padding-top: 0 !important;
}
.cid-tqdyEIFeMu .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tqdyEIFeMu .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tqdyEIFeMu .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tqdyEIFeMu .modal-open {
  overflow: hidden;
}
.cid-tqdyEIFeMu .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tqdyEIFeMu .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tqdyEIFeMu .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tqdyEIFeMu .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tqdyEIFeMu .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tqdyEIFeMu .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tqdyEIFeMu .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tqdyEIFeMu .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tqdyEIFeMu .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tqdyEIFeMu .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tqdyEIFeMu .modal-backdrop.fade {
  opacity: 0;
}
.cid-tqdyEIFeMu .modal-backdrop.show {
  opacity: .5;
}
.cid-tqdyEIFeMu .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tqdyEIFeMu .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tqdyEIFeMu .modal-header {
    padding: 1rem;
  }
}
.cid-tqdyEIFeMu .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tqdyEIFeMu .modal-header .close svg {
  fill: #353535;
}
.cid-tqdyEIFeMu .modal-header .close:hover {
  opacity: 1;
}
.cid-tqdyEIFeMu .modal-header .close:focus {
  outline: none;
}
.cid-tqdyEIFeMu .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tqdyEIFeMu .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tqdyEIFeMu .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tqdyEIFeMu .modal-body {
    padding: 1rem;
  }
}
.cid-tqdyEIFeMu .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tqdyEIFeMu .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tqdyEIFeMu .modal-footer {
    padding: 1rem;
  }
}
.cid-tqdyEIFeMu .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tqdyEIFeMu .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tqdyEIFeMu .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tqdyEIFeMu .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tqdyEIFeMu .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tqdyEIFeMu .modal-lg,
  .cid-tqdyEIFeMu .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tqdyEIFeMu .modal-xl {
    max-width: 1140px;
  }
}
.cid-tqdyEIFeMu .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tqdyEIFeMu .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tqdyEIFeMu .form-group {
  margin-bottom: 1rem;
}
.cid-tqdyEIFeMu .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tqdyEIFeMu .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tqdyEIFeMu .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tqdyEIFeMu .mbr-section-btn {
  margin: 0;
}
.cid-tqdyEIFeMu .mbr-section-btn .btn {
  margin: 0;
}
