.btn {
  border-width: 2px;
}
body {
  font-family: Dosis;
}
.display-1 {
  font-family: 'Dosis', sans-serif;
  font-size: 2.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 3.25rem;
}
.display-2 {
  font-family: 'Dosis', sans-serif;
  font-size: 1.8rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2.25rem;
}
.display-4 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Dosis', sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2rem;
}
.display-7 {
  font-family: 'Dosis', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 2.08rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.82rem;
    font-size: calc( 1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.28rem + (1.8 - 1.28) * ((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.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((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: #faff1e !important;
}
.bg-success {
  background-color: #36d88a !important;
}
.bg-info {
  background-color: #ff4100 !important;
}
.bg-warning {
  background-color: #c1c1c1 !important;
}
.bg-danger {
  background-color: #444444 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #faff1e !important;
  border-color: #faff1e !important;
  color: #1d1e00 !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: #c2c600 !important;
  border-color: #c2c600 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #1d1e00 !important;
  background-color: #c2c600 !important;
  border-color: #c2c600 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #3e97d1 !important;
  border-color: #3e97d1 !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: #236895 !important;
  border-color: #236895 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #236895 !important;
  border-color: #236895 !important;
}
.btn-info,
.btn-info:active {
  background-color: #ff4100 !important;
  border-color: #ff4100 !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: #a82b00 !important;
  border-color: #a82b00 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #a82b00 !important;
  border-color: #a82b00 !important;
}
.btn-success,
.btn-success:active {
  background-color: #36d88a !important;
  border-color: #36d88a !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: #1e9a5e !important;
  border-color: #1e9a5e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #1e9a5e !important;
  border-color: #1e9a5e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !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: #969696 !important;
  border-color: #969696 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #969696 !important;
  border-color: #969696 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #444444 !important;
  border-color: #444444 !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: #191919 !important;
  border-color: #191919 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #191919 !important;
  border-color: #191919 !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: #faff1e;
  color: #faff1e;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #c2c600 !important;
  background-color: transparent!important;
  border-color: #c2c600 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #1d1e00 !important;
  background-color: #faff1e !important;
  border-color: #faff1e !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #3e97d1;
  color: #3e97d1;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #236895 !important;
  background-color: transparent!important;
  border-color: #236895 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #3e97d1 !important;
  border-color: #3e97d1 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #ff4100;
  color: #ff4100;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #a82b00 !important;
  background-color: transparent!important;
  border-color: #a82b00 !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #ff4100 !important;
  border-color: #ff4100 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #36d88a;
  color: #36d88a;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #1e9a5e !important;
  background-color: transparent!important;
  border-color: #1e9a5e !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #36d88a !important;
  border-color: #36d88a !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #c1c1c1;
  color: #c1c1c1;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #969696 !important;
  background-color: transparent!important;
  border-color: #969696 !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #444444;
  color: #444444;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #191919 !important;
  background-color: transparent!important;
  border-color: #191919 !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #444444 !important;
  border-color: #444444 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #faff1e !important;
}
.text-secondary {
  color: #3e97d1 !important;
}
.text-success {
  color: #36d88a !important;
}
.text-info {
  color: #ff4100 !important;
}
.text-warning {
  color: #c1c1c1 !important;
}
.text-danger {
  color: #444444 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #b3b700 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #215f88 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #1b8d56 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #992700 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #8e8e8e !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #111111 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  transition: 0.2s;
  position: relative;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0 1.2em;
}
.nav-tabs .nav-link.active {
  color: #faff1e;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ff4100;
}
.alert-warning {
  background-color: #c1c1c1;
}
.alert-danger {
  background-color: #444444;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #faff1e;
  border-color: #faff1e;
  color: #363800;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #faff1e;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffea;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #e1f9ed;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffd9cc;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #b7b7b7;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Noto Sans JP', 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: #faff1e !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Noto Sans JP', 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: #faff1e;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #faff1e;
  color: #000000;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #faff1e;
}
.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: #faff1e;
  border-bottom-color: #faff1e;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #faff1e !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: #3e97d1 !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='%23faff1e' %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-sqHvdPqyBX .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-sqHvdPqyBX .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-sqHvdPqyBX .nav-item:focus,
.cid-sqHvdPqyBX .nav-link:focus {
  outline: none;
}
.cid-sqHvdPqyBX .text-white:hover,
.cid-sqHvdPqyBX .text-white:active,
.cid-sqHvdPqyBX .text-white:focus {
  color: white!important;
}
.cid-sqHvdPqyBX .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #000000;
}
.cid-sqHvdPqyBX .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-sqHvdPqyBX .navbar.opened {
  transition: all .3s;
  background: #000000 !important;
}
.cid-sqHvdPqyBX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sqHvdPqyBX .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-sqHvdPqyBX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sqHvdPqyBX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sqHvdPqyBX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sqHvdPqyBX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sqHvdPqyBX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sqHvdPqyBX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sqHvdPqyBX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sqHvdPqyBX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sqHvdPqyBX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sqHvdPqyBX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sqHvdPqyBX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sqHvdPqyBX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sqHvdPqyBX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sqHvdPqyBX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sqHvdPqyBX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sqHvdPqyBX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sqHvdPqyBX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sqHvdPqyBX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sqHvdPqyBX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sqHvdPqyBX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sqHvdPqyBX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sqHvdPqyBX .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-sqHvdPqyBX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sqHvdPqyBX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sqHvdPqyBX .section {
  position: relative;
  overflow: visible!important;
}
.cid-sqHvdPqyBX .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-sqHvdPqyBX .dropdown-item:hover {
  color: black!important;
}
.cid-sqHvdPqyBX .dropdown-menu {
  background-color: white!important;
}
.cid-sqHvdPqyBX .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-sqHvdPqyBX .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-sqHvdPqyBX .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-sqHvdPqyBX .nav-item .nav-link {
    position: relative;
  }
}
.cid-sqHvdPqyBX .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-sqHvdPqyBX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sqHvdPqyBX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-sqHvdPqyBX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sqHvdPqyBX .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-sqHvdPqyBX .collapsed {
  flex-direction: row!important;
}
.cid-sqHvdPqyBX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sqHvdPqyBX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sqHvdPqyBX .navbar-caption {
  font-weight: 600!important;
}
.cid-sqHvdPqyBX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sqHvdPqyBX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sqHvdPqyBX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sqHvdPqyBX .dropdown-item.active,
.cid-sqHvdPqyBX .dropdown-item:active {
  background-color: transparent;
}
.cid-sqHvdPqyBX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sqHvdPqyBX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sqHvdPqyBX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sqHvdPqyBX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-sqHvdPqyBX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sqHvdPqyBX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sqHvdPqyBX .navbar-buttons {
  text-align: center;
}
.cid-sqHvdPqyBX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sqHvdPqyBX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #54e43f;
}
.cid-sqHvdPqyBX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sqHvdPqyBX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sqHvdPqyBX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sqHvdPqyBX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sqHvdPqyBX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sqHvdPqyBX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sqHvdPqyBX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sqHvdPqyBX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sqHvdPqyBX .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sqHvdPqyBX .nav-link {
  font-weight: 600!important;
}
.cid-sqHvdPqyBX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqHvdPqyBX .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sqHvdPqyBX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-sqHvdPqyBX .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sqHvdPqyBX .navbar {
    height: 77px;
  }
  .cid-sqHvdPqyBX .navbar.opened {
    height: auto;
  }
  .cid-sqHvdPqyBX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t59K2gJ5Mk {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-t59K2gJ5Mk .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-sUXQgqmT1A {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
@media (max-width: 991px) {
  .cid-sUXQgqmT1A .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sUXQgqmT1A .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-sUXQgqmT1A .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-sUXQgqmT1A .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sUXQgqmT1A .mbr-text,
.cid-sUXQgqmT1A .mbr-section-btn {
  color: #ffffff;
}
.cid-sUXQgqmT1A .mbr-section-title {
  color: #ffffff;
}
.cid-sYH8mUYewu {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-sYH8mUYewu .mbr-section-title,
.cid-sYH8mUYewu .mbr-text,
.cid-sYH8mUYewu .mbr-section-btn {
  text-align: center;
}
.cid-sYH8mUYewu .video-wrapper {
  margin: auto;
}
.cid-sYH8mUYewu .video-wrapper iframe {
  width: 100%;
}
.cid-sYH8mUYewu .mbr-section-title {
  color: #e43f3f;
}
.cid-sYH8mUYewu .mbr-text,
.cid-sYH8mUYewu .mbr-section-btn {
  color: #fafafa;
}
.cid-t2OpPWbby4 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-t2OpPWbby4 .item-wrapper {
  width: 100%;
}
.cid-t2OpPWbby4 .mbr-section-title {
  width: 100%;
  margin: 0 0 26px;
  color: #f7b560;
  font-weight: 700;
}
.cid-t2OpPWbby4 .mbr-text {
  padding: 0;
  color: #4c4c4c;
  font-weight: 500;
}
.cid-t2OpPWbby4 .title {
  font-weight: 700;
  color: #1d1d1f;
}
.cid-t2OpPWbby4 .link {
  margin-top: 29px;
}
.cid-t2OpPWbby4 .col-auto {
  display: inline-block;
}
.cid-t2OpPWbby4 .mbr-section-subtitle {
  color: #1d1d1f;
  width: 100%;
  padding-bottom: 2px;
  font-weight: 700;
}
.cid-t2OpPWbby4 .justify-content-center {
  align-items: center;
  background: transparent;
  padding: 0px;
  margin: 0;
}
.cid-t2OpPWbby4 .container-fluid {
  padding: 0;
}
.cid-t2OpPWbby4 .left {
  max-width: 490px;
  padding: 20px 0;
  padding-right: 45px;
  margin: auto;
}
.cid-t2OpPWbby4 .right-side {
  padding-left: 0;
}
.cid-t2OpPWbby4 .row.justify-content-center {
  flex-direction: row-reverse;
}
.cid-t2OpPWbby4 .left {
  padding-right: 0;
  padding-left: 45px;
}
.cid-t2OpPWbby4 .right-side {
  padding-right: 0px;
}
@media (max-width: 990px) {
  .cid-t2OpPWbby4 .left {
    padding-right: 0px;
  }
}
@media (max-width: 770px) {
  .cid-t2OpPWbby4 .right-side {
    padding: 0px;
  }
}
.cid-t2OpPWbby4 a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-t2OpPWbby4 rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-t2OpPWbby4 .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-t2OpPWbby4 svg {
  margin-left: 15px;
}
.cid-t2OpPWbby4 path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-t2OpPWbby4 .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-t2OpPWbby4 .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-t2OpPWbby4 .link a {
  background-image: none !important;
}
.cid-t2OpPWbby4 .mbr-text,
.cid-t2OpPWbby4 .link {
  color: #ffffff;
}
.cid-t0554JLp8y {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t0554JLp8y .card-wrapper {
  width: 100%;
  height: 100%;
}
.cid-t0554JLp8y .card-wrapper img {
  height: 600px;
  object-fit: cover;
}
.cid-t0554JLp8y .second-card-title {
  text-align: center;
  color: #000000;
}
.cid-t0554JLp8y .second-card-subtitle {
  text-align: center;
}
.cid-t0554JLp8y .second-card {
  background-color: #d4e7eb;
}
.cid-t0554JLp8y .second-card-wrap {
  margin: auto 0;
  padding: 3rem 1.5rem;
}
@media (min-width: 992px) {
  .cid-t0554JLp8y [class*="col"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.cid-t0554JLp8y .second-card-subtitle,
.cid-t0554JLp8y .second-btn {
  text-align: left;
}
.cid-t0554JLp8y .card {
  border-radius: 0 !important;
}
.cid-sUUJhcrCyY {
  padding-top: 45px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/mbr-1920x1920.jpg");
}
.cid-sUUJhcrCyY .row {
  margin-left: -5rem;
}
.cid-sUUJhcrCyY .slider-text-two {
  background: rgba(255, 255, 255, 0.8) none repeat scroll 0 0;
  display: inline-block;
  outline: 1px solid rgba(0, 0, 0, 0.2);
  outline-offset: -15px;
  padding: 65px 50px;
  position: relative;
}
.cid-sUUJhcrCyY .mbr-section-title,
.cid-sUUJhcrCyY .mbr-section-subtitle {
  color: #232323;
}
.cid-sUUJhcrCyY .mbr-section-subtitle span {
  font-weight: bold;
}
.cid-sUUJhcrCyY .mbr-text {
  color: #000000;
  font-weight: 100;
}
.cid-sUUJhcrCyY .mbr-section-btn {
  color: white;
}
@media (max-width: 767px) {
  .cid-sUUJhcrCyY .row {
    margin-left: -15px;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sUUJhcrCyY .slider-text-two {
    outline: 15px solid rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.2);
  }
}
.cid-t5hIiD9K84 {
  padding-top: 0px;
  padding-bottom: 0px;
  overflow: hidden;
  background: #ffffff;
}
@media (min-width: 1330px) {
  .cid-t5hIiD9K84 .container {
    max-width: 1330px !important;
  }
}
.cid-t5hIiD9K84 .content-wrap {
  background-color: #ebd2b4;
}
.cid-t5hIiD9K84 .card-wrap {
  margin-top: 5rem;
  margin-bottom: 5rem;
  padding: 5rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-t5hIiD9K84 .card-wrap {
    width: calc(100% + 10rem);
    margin-left: 46px;
  }
}
@media (max-width: 767px) {
  .cid-t5hIiD9K84 .card-wrap {
    margin-top: 0;
    margin-bottom: 0;
    padding: 48px 20px 48px 20px;
  }
}
.cid-t5hIiD9K84 .img-wrap {
  height: 100%;
}
.cid-t5hIiD9K84 .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-t5hIiD9K84 .mbr-section-subtitle {
  animation-delay: .2s;
}
.cid-t5hIiD9K84 .mbr-section-btn {
  margin-top: 2rem;
  margin-bottom: -0.25rem;
  animation-delay: .4s;
}
.cid-t5hIiD9K84 [class*="col"] {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
@media (min-width: 992px) {
  .cid-t5hIiD9K84 .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.cid-t5hIiD9K84 .mbr-section-subtitle,
.cid-t5hIiD9K84 .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-t5hIiD9K84 H1 {
  text-align: left;
  color: #000000;
}
.cid-tq0HVUHwaQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tq0HVUHwaQ .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t5hCa2rQFl {
  background: #ffd1ba;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-t5hCa2rQFl .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-t5hCa2rQFl .video-block {
    width: 100% !important;
  }
}
.cid-sZjiTFnt44 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/mbr-1920x1366.png");
}
.cid-sZjiTFnt44 .mbr-media {
  position: relative;
}
.cid-sZjiTFnt44 .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-sZjiTFnt44 .box {
  min-height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
}
@media (max-width: 767px) {
  .cid-sZjiTFnt44 .box {
    min-height: 300px;
  }
}
.cid-sZjiTFnt44 .icon-wrap {
  position: relative;
  margin: auto;
  width: 100px;
  height: 100px;
  background: #ffffff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sZjiTFnt44 .icon-wrap a {
  height: 20px;
}
.cid-sZjiTFnt44 .icon-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: #ffffff;
  opacity: 0.8;
  border-radius: 50%;
  animation-duration: 1s;
  animation-name: icons;
  animation-iteration-count: infinite;
  z-index: 1;
}
@keyframes icons {
  from {
    width: 100px;
    height: 100px;
    opacity: 0.8;
  }
  to {
    width: 160px;
    height: 160px;
    opacity: 0;
  }
}
.cid-sZjiTFnt44 .mbr-media span {
  font-size: 1.5rem;
  transition: all 0.2s;
  z-index: 2;
  padding-left: 4px;
  position: relative;
  color: #5e71db;
}
.cid-sZjiTFnt44 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sZjiTFnt44 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sZjiTFnt44 .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sZjiTFnt44 .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-sZjiTFnt44 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sZjiTFnt44 .mbr-section-title {
  color: #ffffff;
}
.cid-t4HNufdVmn {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #bbbbbb;
}
.cid-t4HNufdVmn .mbr-fallback-image.disabled {
  display: none;
}
.cid-t4HNufdVmn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t4HNufdVmn .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-t4HNufdVmn .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-t4HNufdVmn .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-t4MuOyaiaz.popup-builder {
  background-color: #ffffff;
}
.cid-t4MuOyaiaz.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-t4MuOyaiaz.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-t4MuOyaiaz .modal-content,
.cid-t4MuOyaiaz .modal-dialog {
  height: auto;
}
.cid-t4MuOyaiaz .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-t4MuOyaiaz .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-t4MuOyaiaz .form-wrapper .mbr-form .form-group,
  .cid-t4MuOyaiaz .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-t4MuOyaiaz .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-t4MuOyaiaz .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-t4MuOyaiaz .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-t4MuOyaiaz .pt-0 {
  padding-top: 0 !important;
}
.cid-t4MuOyaiaz .pb-0 {
  padding-bottom: 0 !important;
}
.cid-t4MuOyaiaz .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-t4MuOyaiaz .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-t4MuOyaiaz .modal-open {
  overflow: hidden;
}
.cid-t4MuOyaiaz .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-t4MuOyaiaz .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-t4MuOyaiaz .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-t4MuOyaiaz .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-t4MuOyaiaz .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-t4MuOyaiaz .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-t4MuOyaiaz .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-t4MuOyaiaz .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-t4MuOyaiaz .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-t4MuOyaiaz .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-t4MuOyaiaz .modal-backdrop.fade {
  opacity: 0;
}
.cid-t4MuOyaiaz .modal-backdrop.show {
  opacity: .5;
}
.cid-t4MuOyaiaz .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-t4MuOyaiaz .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-t4MuOyaiaz .modal-header {
    padding: 1rem;
  }
}
.cid-t4MuOyaiaz .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-t4MuOyaiaz .modal-header .close svg {
  fill: #353535;
}
.cid-t4MuOyaiaz .modal-header .close:hover {
  opacity: 1;
}
.cid-t4MuOyaiaz .modal-header .close:focus {
  outline: none;
}
.cid-t4MuOyaiaz .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-t4MuOyaiaz .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-t4MuOyaiaz .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t4MuOyaiaz .modal-body {
    padding: 1rem;
  }
}
.cid-t4MuOyaiaz .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-t4MuOyaiaz .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t4MuOyaiaz .modal-footer {
    padding: 1rem;
  }
}
.cid-t4MuOyaiaz .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-t4MuOyaiaz .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-t4MuOyaiaz .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-t4MuOyaiaz .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-t4MuOyaiaz .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-t4MuOyaiaz .modal-lg,
  .cid-t4MuOyaiaz .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-t4MuOyaiaz .modal-xl {
    max-width: 1140px;
  }
}
.cid-t4MuOyaiaz .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-t4MuOyaiaz .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-t4MuOyaiaz .form-group {
  margin-bottom: 1rem;
}
.cid-t4MuOyaiaz .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-t4MuOyaiaz .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-t4MuOyaiaz .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-t4MuOyaiaz .mbr-section-btn {
  margin: 0;
}
.cid-t4MuOyaiaz .mbr-section-btn .btn {
  margin: 0;
}
.cid-t53PSw5Dqt {
  padding-top: 15px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-3-1920x1280.jpg");
}
.cid-t53PSw5Dqt .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #232323;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #ffffff none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-t53PSw5Dqt .content-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-t53PSw5Dqt .photo-split {
  padding: 0;
}
.cid-t53PSw5Dqt .photo-split img {
  width: 100%;
}
.cid-t53PSw5Dqt .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-t53PSw5Dqt .counter-container ul {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-t53PSw5Dqt .counter-container ul li {
  margin-bottom: .5rem;
  list-style: ✓;
}
.cid-t53PSw5Dqt .counter-container ul li:before {
  color: #ffbc00;
  display: inline-block;
  content: '✓';
  text-align: center;
  line-height: 1.5em;
  transition: all .2s;
  width: 25px;
  height: 25px;
}
.cid-t53PSw5Dqt .wrap-block {
  padding: 3rem 3rem;
}
.cid-t53PSw5Dqt .wrap-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-t53PSw5Dqt .wrap-block ul li {
  display: inline-block;
}
.cid-t53PSw5Dqt .wrap-block ul li span {
  text-align: center;
}
.cid-t53PSw5Dqt .social-media {
  margin-top: 1.5em;
  padding: 0;
}
.cid-t53PSw5Dqt .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-t53PSw5Dqt .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-t53PSw5Dqt .mbr-list,
.cid-t53PSw5Dqt .social-media ul {
  text-align: left;
}
@media (max-width: 500px) {
  .cid-t53PSw5Dqt .wrap-block {
    padding: 3rem 1rem;
  }
}
@media (max-width: 767px) {
  .cid-t53PSw5Dqt .mbr-section-title,
  .cid-t53PSw5Dqt .mbr-section-subtitle,
  .cid-t53PSw5Dqt .mbr-text {
    text-align: center !important;
  }
  .cid-t53PSw5Dqt .social-list {
    text-align: center !important;
  }
}
.cid-t53PSw5Dqt .mbr-section-subtitle {
  color: #ffe161;
}
.cid-t53PZfjBUF {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-t53PZfjBUF .video-wrapper iframe {
  width: 100%;
}
.cid-t53PZfjBUF h2,
.cid-t53PZfjBUF h4,
.cid-t53PZfjBUF p {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-t53PZfjBUF .col-md-6 {
    width: 100%;
  }
}
.cid-t53PZfjBUF .mbr-section-head {
  margin-bottom: 2rem;
}
@media (min-width: 993px) {
  .cid-t53PZfjBUF .mbr-section-head {
    margin-bottom: 0;
  }
}
@media (max-width: 992px) {
  .cid-t53PZfjBUF .mbr-section-head {
    text-align: center;
  }
}
.cid-t53PZfjBUF .mbr-section-title {
  color: #000000;
  margin-bottom: 1rem;
}
.cid-t53PZfjBUF .mbr-section-subtitle {
  color: #6b6b6b;
  margin-bottom: 6px;
}
.cid-t53PZfjBUF .mbr-text {
  color: #6b6b6b;
}
.cid-t53Sn4hu0p {
  padding-top: 30px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-1920x1271.jpg");
}
.cid-t53Sn4hu0p .mbr-iconfont {
  color: #8d97ad;
}
.cid-t53Sn4hu0p .mbr-iconfont:hover {
  color: #188ef4 !important;
}
.cid-t53Sn4hu0p .mbr-text {
  margin: 1.5rem 0;
  color: #8d97ad;
}
.cid-t53Sn4hu0p .mbr-section-subtitle {
  color: #1e1e1e;
}
.cid-t53Sn4hu0p .card-title {
  margin-bottom: 0.3rem;
  color: #000000;
}
.cid-t53Sn4hu0p .card-img {
  margin: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-t53Sn4hu0p .img-icon {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t53Sn4hu0p .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-t53Sn4hu0p H2 {
  color: #000000;
}
.cid-t53Sn4hu0p .mbr-text,
.cid-t53Sn4hu0p .social-links {
  color: #000000;
}
.cid-t53PWqczNB {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/mbr-1920x1238.jpg");
}
.cid-t53PWqczNB .video-wrapper iframe {
  width: 100%;
}
.cid-t53PWqczNB .mbr-section-title,
.cid-t53PWqczNB .mbr-section-subtitle,
.cid-t53PWqczNB .mbr-text {
  text-align: center;
}
.cid-t53PWqczNB .mbr-section-title {
  color: #faff1e;
}
.cid-t53TIx1MHj {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/mbr-491x306.jpg");
}
.cid-t53TIx1MHj .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t53TIx1MHj .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-t53TIx1MHj .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-t53TLliuJq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-936x410.jpg");
}
.cid-t53TLliuJq H1 {
  color: #e43f3f;
}
.cid-t53TLliuJq .mbr-text,
.cid-t53TLliuJq .mbr-section-btn {
  color: #000000;
}
@keyframes line {
  from {
    transform: translateY(4px);
  }
  50% {
    transform: translateY(-4px);
  }
  to {
    transform: translateY(4px);
  }
}
.cid-t53TLliuJq .img1 {
  width: 90%;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  border-radius: 10px;
}
.cid-t53TLliuJq .relative {
  position: relative;
}
.cid-t53TLliuJq .img2 {
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  position: absolute;
  width: 60%;
  top: 4rem;
  left: 1rem;
  border-radius: 10px;
  animation: line 3s ease-in-out infinite;
}
@media (max-width: 576px) {
  .cid-t53TLliuJq .img1 {
    width: 100%;
  }
}
.cid-t53TLliuJq H3 {
  color: #4479d9;
}
.cid-t53VATleqb {
  padding-top: 40px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/restaurant-delivery-consumer-1-2000x700.jpg");
}
.cid-t53VATleqb .mbr-overlay {
  background: linear-gradient(90deg, #000000, #b2ccd2);
}
.cid-t53VATleqb .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-t53VATleqb .text-content {
  padding-right: 1.5rem;
}
.cid-t53VATleqb .mbr-text,
.cid-t53VATleqb .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-t53VATleqb .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(159, 125, 96, 0.3);
  box-shadow: 0px 0px 30px rgba(159, 125, 96, 0.3);
  border-radius: .25rem;
}
.cid-t53VATleqb .counter-container {
  padding: 1rem 0;
  position: relative;
}
.cid-t53VATleqb .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-t53VATleqb .counter-container ul li {
  margin-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-t53VATleqb .main-row {
    margin: 0;
  }
  .cid-t53VATleqb .mbr-section-title,
  .cid-t53VATleqb .mbr-text,
  .cid-t53VATleqb .list,
  .cid-t53VATleqb .mbr-section-btn {
    text-align: center !important;
  }
  .cid-t53VATleqb .text-content {
    padding: 0;
  }
}
.cid-t53VATleqb .list UL {
  text-align: right;
}
.cid-t53VATleqb .mbr-section-title {
  color: #e43f3f;
}
.cid-t53VE0GpcR {
  padding-top: 45px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/background1-2.jpg");
}
.cid-t53VE0GpcR h2 {
  width: fit-content;
  display: inline-block;
  position: relative;
}
.cid-t53VE0GpcR h2:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-t53VE0GpcR .cover {
  width: 250px;
  margin: auto;
  padding-bottom: 1rem;
}
.cid-t53VE0GpcR .mbr-figure {
  z-index: 2;
  padding: 8rem 2rem;
}
.cid-t53VE0GpcR .card {
  overflow: hidden;
  height: 100%;
}
.cid-t53VE0GpcR .card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../../assets/images/mbr-1920x960.png");
  filter: blur(10px);
  background-size: cover;
  z-index: 1;
}
@media (max-width: 767px) {
  .cid-t53VE0GpcR .cover {
    width: 100%;
  }
}
.cid-t53VE0GpcR H3 {
  color: #faff1e;
}
.cid-t53VE0GpcR H4 {
  color: #232323;
}
.cid-t53VI8Dv8u {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t53VI8Dv8u img {
  width: 90%;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .cid-t53VI8Dv8u img {
    width: 100%;
  }
}
.cid-t53VI8Dv8u .btn span {
  order: 0;
  margin-right: 0.6rem;
  margin-left: 0;
}
.cid-t53VI8Dv8u .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.4rem;
}
.cid-t53VI8Dv8u .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-t53VI8Dv8u .counter-container ul li:before {
  position: absolute;
  top: -5px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000000;
  background-color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  content: "✓";
}
.cid-t53VI8Dv8u .mbr-text,
.cid-t53VI8Dv8u .mbr-section-btn {
  color: #777777;
}
.cid-t53VI8Dv8u .mbr-section-subtitle {
  color: #777777;
}
.cid-t53VI8Dv8u .mbr-list {
  color: #000000;
}
.cid-t53VJoKqVI {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-t53VJoKqVI .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-t53VJoKqVI .counter-container ul li {
  margin-bottom: 1rem;
  position: relative;
}
.cid-t53VJoKqVI .counter-container ul li:before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #6592e6;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
  line-height: 1.2;
}
.cid-t53VJoKqVI .mbr-text {
  color: #000000;
}
.cid-t53VLZbyXh {
  padding-top: 30px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/bestoppmaster-1-414x563.png");
}
.cid-t53VLZbyXh .nav-tabs .nav-item.open .nav-link:focus,
.cid-t53VLZbyXh .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-t53VLZbyXh .nav-tabs {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: 1px solid lightgray;
}
.cid-t53VLZbyXh .nav-tabs .nav-item {
  padding: .5rem;
}
.cid-t53VLZbyXh .first {
  margin-left: -24px;
}
.cid-t53VLZbyXh .nav-tabs .nav-link {
  color: #cccccc;
  font-style: normal;
  font-weight: 500;
  transition: all .5s;
  border: none;
}
.cid-t53VLZbyXh .nav-tabs .nav-link:hover {
  cursor: pointer;
  color: #57468b;
}
.cid-t53VLZbyXh .nav-tabs .nav-link.active {
  font-weight: 500;
  color: #57468b;
  font-style: normal;
}
.cid-t53VLZbyXh P {
  color: #000000;
}
.cid-t53VLZbyXh H2 {
  color: #57468b;
}
@media (max-width: 576px) {
  .cid-t53VLZbyXh .nav-tabs {
    flex-direction: column;
    justify-content: center;
  }
  .cid-t53VLZbyXh .mbr-text,
  .cid-t53VLZbyXh .nav-link {
    text-align: center;
  }
}
.cid-t04YPnZCwp {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sCbXZaIbMI.popup-builder {
  background-color: #ffffff;
}
.cid-sCbXZaIbMI.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sCbXZaIbMI.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sCbXZaIbMI .modal-content,
.cid-sCbXZaIbMI .modal-dialog {
  height: auto;
}
.cid-sCbXZaIbMI .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sCbXZaIbMI .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sCbXZaIbMI .form-wrapper .mbr-form .form-group,
  .cid-sCbXZaIbMI .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sCbXZaIbMI .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sCbXZaIbMI .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-sCbXZaIbMI .mbr-text {
  text-align: center;
}
.cid-sCbXZaIbMI .pt-0 {
  padding-top: 0 !important;
}
.cid-sCbXZaIbMI .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sCbXZaIbMI .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sCbXZaIbMI .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sCbXZaIbMI .modal-open {
  overflow: hidden;
}
.cid-sCbXZaIbMI .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sCbXZaIbMI .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sCbXZaIbMI .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sCbXZaIbMI .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-sCbXZaIbMI .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sCbXZaIbMI .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sCbXZaIbMI .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sCbXZaIbMI .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-sCbXZaIbMI .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sCbXZaIbMI .modal-backdrop.fade {
  opacity: 0;
}
.cid-sCbXZaIbMI .modal-backdrop.show {
  opacity: .5;
}
.cid-sCbXZaIbMI .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-sCbXZaIbMI .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sCbXZaIbMI .modal-header .close:hover {
  opacity: 1;
}
.cid-sCbXZaIbMI .modal-header .close:focus {
  outline: none;
}
.cid-sCbXZaIbMI .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sCbXZaIbMI .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-sCbXZaIbMI .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-sCbXZaIbMI .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sCbXZaIbMI .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sCbXZaIbMI .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sCbXZaIbMI .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sCbXZaIbMI .modal-sm {
    max-width: 300px;
  }
  .cid-sCbXZaIbMI .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sCbXZaIbMI .modal-lg,
  .cid-sCbXZaIbMI .modal-xl {
    max-width: 800px;
  }
  .cid-sCbXZaIbMI .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sCbXZaIbMI .modal-xl {
    max-width: 1140px;
  }
  .cid-sCbXZaIbMI .container {
    max-width: 1140px;
  }
}
.cid-sCbXZaIbMI .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sCbXZaIbMI .container {
    max-width: 720px;
  }
}
.cid-sCbXZaIbMI .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sCbXZaIbMI .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-sCbXZaIbMI .form-group {
  margin-bottom: 1rem;
}
.cid-sCbXZaIbMI .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sCbXZaIbMI .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sCbXZaIbMI .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-sSeKMlf10Q {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/mbr-1920x1301.jpg");
}
.cid-sSeKMlf10Q .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sSeKMlf10Q .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sSeKMlf10Q .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sSeKMlf10Q .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 1rem;
}
.cid-sSeKMlf10Q .media-container-row .foot-menu li {
  padding: 0 1.5rem 1rem 1.5rem;
}
.cid-sSeKMlf10Q .media-container-row .foot-menu li:hover {
  color: #3e97d1;
}
.cid-sSeKMlf10Q .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sSeKMlf10Q .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sSeKMlf10Q .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sSeKMlf10Q .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sSeKMlf10Q .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sSeKMlf10Q .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sSeKMlf10Q .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sSeKMlf10Q .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sSeKMlf10Q .media-container-row .row-copirayt p {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sSeKMlf10Q .foot-menu {
    display: flex;
    flex-direction: column;
  }
}
.cid-sSeKMlf10Q .media-container-row .mbr-text {
  color: #c8c8c8;
}
.cid-t84xd9XBif.popup-builder {
  background-color: #ffffff;
}
.cid-t84xd9XBif.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-t84xd9XBif.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-t84xd9XBif .modal-content,
.cid-t84xd9XBif .modal-dialog {
  height: auto;
}
.cid-t84xd9XBif .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-t84xd9XBif .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-t84xd9XBif .form-wrapper .mbr-form .form-group,
  .cid-t84xd9XBif .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-t84xd9XBif .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-t84xd9XBif .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-t84xd9XBif .mbr-text {
  text-align: center;
}
.cid-t84xd9XBif .pt-0 {
  padding-top: 0 !important;
}
.cid-t84xd9XBif .pb-0 {
  padding-bottom: 0 !important;
}
.cid-t84xd9XBif .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-t84xd9XBif .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-t84xd9XBif .modal-open {
  overflow: hidden;
}
.cid-t84xd9XBif .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-t84xd9XBif .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-t84xd9XBif .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-t84xd9XBif .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-t84xd9XBif .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-t84xd9XBif .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-t84xd9XBif .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-t84xd9XBif .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-t84xd9XBif .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-t84xd9XBif .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-t84xd9XBif .modal-backdrop.fade {
  opacity: 0;
}
.cid-t84xd9XBif .modal-backdrop.show {
  opacity: .5;
}
.cid-t84xd9XBif .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-t84xd9XBif .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-t84xd9XBif .modal-header {
    padding: 1rem;
  }
}
.cid-t84xd9XBif .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-t84xd9XBif .modal-header .close svg {
  fill: #353535;
}
.cid-t84xd9XBif .modal-header .close:hover {
  opacity: 1;
}
.cid-t84xd9XBif .modal-header .close:focus {
  outline: none;
}
.cid-t84xd9XBif .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-t84xd9XBif .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-t84xd9XBif .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t84xd9XBif .modal-body {
    padding: 1rem;
  }
}
.cid-t84xd9XBif .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-t84xd9XBif .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t84xd9XBif .modal-footer {
    padding: 1rem;
  }
}
.cid-t84xd9XBif .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-t84xd9XBif .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-t84xd9XBif .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-t84xd9XBif .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-t84xd9XBif .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-t84xd9XBif .modal-lg,
  .cid-t84xd9XBif .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-t84xd9XBif .modal-xl {
    max-width: 1140px;
  }
}
.cid-t84xd9XBif .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-t84xd9XBif .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-t84xd9XBif .form-group {
  margin-bottom: 1rem;
}
.cid-t84xd9XBif .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-t84xd9XBif .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-t84xd9XBif .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-t84xd9XBif .mbr-section-btn {
  margin: 0;
}
.cid-t84xd9XBif .mbr-section-btn .btn {
  margin: 0;
}
.cid-sqHvdPqyBX .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-sqHvdPqyBX .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-sqHvdPqyBX .nav-item:focus,
.cid-sqHvdPqyBX .nav-link:focus {
  outline: none;
}
.cid-sqHvdPqyBX .text-white:hover,
.cid-sqHvdPqyBX .text-white:active,
.cid-sqHvdPqyBX .text-white:focus {
  color: white!important;
}
.cid-sqHvdPqyBX .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #000000;
}
.cid-sqHvdPqyBX .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-sqHvdPqyBX .navbar.opened {
  transition: all .3s;
  background: #000000 !important;
}
.cid-sqHvdPqyBX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sqHvdPqyBX .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-sqHvdPqyBX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sqHvdPqyBX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sqHvdPqyBX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sqHvdPqyBX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sqHvdPqyBX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sqHvdPqyBX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sqHvdPqyBX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sqHvdPqyBX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sqHvdPqyBX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sqHvdPqyBX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sqHvdPqyBX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sqHvdPqyBX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sqHvdPqyBX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sqHvdPqyBX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sqHvdPqyBX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sqHvdPqyBX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sqHvdPqyBX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sqHvdPqyBX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sqHvdPqyBX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sqHvdPqyBX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sqHvdPqyBX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sqHvdPqyBX .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-sqHvdPqyBX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sqHvdPqyBX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sqHvdPqyBX .section {
  position: relative;
  overflow: visible!important;
}
.cid-sqHvdPqyBX .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-sqHvdPqyBX .dropdown-item:hover {
  color: black!important;
}
.cid-sqHvdPqyBX .dropdown-menu {
  background-color: white!important;
}
.cid-sqHvdPqyBX .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-sqHvdPqyBX .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-sqHvdPqyBX .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-sqHvdPqyBX .nav-item .nav-link {
    position: relative;
  }
}
.cid-sqHvdPqyBX .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-sqHvdPqyBX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sqHvdPqyBX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-sqHvdPqyBX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sqHvdPqyBX .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-sqHvdPqyBX .collapsed {
  flex-direction: row!important;
}
.cid-sqHvdPqyBX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sqHvdPqyBX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sqHvdPqyBX .navbar-caption {
  font-weight: 600!important;
}
.cid-sqHvdPqyBX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sqHvdPqyBX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sqHvdPqyBX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sqHvdPqyBX .dropdown-item.active,
.cid-sqHvdPqyBX .dropdown-item:active {
  background-color: transparent;
}
.cid-sqHvdPqyBX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sqHvdPqyBX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sqHvdPqyBX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sqHvdPqyBX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-sqHvdPqyBX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sqHvdPqyBX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sqHvdPqyBX .navbar-buttons {
  text-align: center;
}
.cid-sqHvdPqyBX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sqHvdPqyBX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #54e43f;
}
.cid-sqHvdPqyBX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sqHvdPqyBX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sqHvdPqyBX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sqHvdPqyBX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sqHvdPqyBX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sqHvdPqyBX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sqHvdPqyBX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sqHvdPqyBX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sqHvdPqyBX .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sqHvdPqyBX .nav-link {
  font-weight: 600!important;
}
.cid-sqHvdPqyBX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqHvdPqyBX .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sqHvdPqyBX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-sqHvdPqyBX .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sqHvdPqyBX .navbar {
    height: 77px;
  }
  .cid-sqHvdPqyBX .navbar.opened {
    height: auto;
  }
  .cid-sqHvdPqyBX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sCQZ7fmfUZ {
  padding-top: 120px;
  padding-bottom: 60px;
  background: #03426a;
}
.cid-sCQZ7fmfUZ .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-sCQZ7fmfUZ .video-block {
    width: 100% !important;
  }
  .cid-sCQZ7fmfUZ .btn {
    margin: 0.5rem 0.5rem;
  }
}
.cid-sCQZ7fmfUZ .underline {
  margin-top: -0.5rem;
  margin-bottom: 1rem;
}
.cid-sCQZ7fmfUZ .underline .line {
  width: 3rem;
  height: 2px;
  background: #ffaa40;
  display: inline-block;
}
.cid-sCQZ7fmfUZ .row {
  margin-top: 1rem;
}
.cid-sCQZ7fmfUZ .mbr-section-subtitle {
  margin-bottom: 1rem;
  color: #ffcd40;
}
.cid-sCQZ7fmfUZ .mbr-section-title,
.cid-sCQZ7fmfUZ .underline {
  color: #ffda73;
}
.cid-sUUVhMv0gR {
  padding-top: 15px;
  padding-bottom: 60px;
  background: #03426a;
}
.cid-sUUVhMv0gR .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-sUUVhMv0gR .video-block {
    width: 100% !important;
  }
  .cid-sUUVhMv0gR .btn {
    margin: 0.5rem 0.5rem;
  }
}
.cid-sUUVhMv0gR .underline {
  margin-top: -0.5rem;
  margin-bottom: 1rem;
}
.cid-sUUVhMv0gR .underline .line {
  width: 3rem;
  height: 2px;
  background: #ffaa40;
  display: inline-block;
}
.cid-sUUVhMv0gR .row {
  margin-top: 1rem;
}
.cid-sUUVhMv0gR .mbr-section-subtitle {
  margin-bottom: 1rem;
  color: #ffcd40;
}
.cid-sUUVhMv0gR .mbr-section-title,
.cid-sUUVhMv0gR .underline {
  color: #ffda73;
}
.cid-sC7PeOAHMl {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-sC7PeOAHMl .mbr-overlay {
  background: #fafafa;
  opacity: 0.5;
}
.cid-sC7PeOAHMl img,
.cid-sC7PeOAHMl .item-img {
  width: 100%;
}
.cid-sC7PeOAHMl .item:focus,
.cid-sC7PeOAHMl span:focus {
  outline: none;
}
.cid-sC7PeOAHMl .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sC7PeOAHMl .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sC7PeOAHMl .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sC7PeOAHMl .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sC7PeOAHMl .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sC7PeOAHMl .mbr-section-title {
  color: #232323;
}
.cid-sC7PeOAHMl .mbr-text,
.cid-sC7PeOAHMl .mbr-section-btn {
  text-align: left;
}
.cid-sC7PeOAHMl .item-title {
  text-align: left;
}
.cid-sC7PeOAHMl .item-subtitle {
  text-align: center;
}
.cid-sUAOCaT6mn {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/amazingwoman-819x860.png");
}
.cid-sUAOCaT6mn .mbr-media {
  position: relative;
  width: 100%;
  display: flex;
}
.cid-sUAOCaT6mn .mbr-media img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.cid-sUAOCaT6mn .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-sUAOCaT6mn .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  background: #ffffff;
  padding: 10px;
  display: flex;
  justify-content: center;
  min-width: 65px;
  min-height: 65px;
  border-radius: 50%;
  align-items: center;
}
.cid-sUAOCaT6mn .icon-wrap a:hover {
  background-image: none !important;
}
.cid-sUAOCaT6mn .icon-wrap span {
  margin-left: 5px;
}
.cid-sUAOCaT6mn .box {
  height: 450px;
  display: flex;
}
@media (max-width: 767px) {
  .cid-sUAOCaT6mn .box {
    height: 200px;
  }
}
.cid-sUAOCaT6mn .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sUAOCaT6mn .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sUAOCaT6mn .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sUAOCaT6mn .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;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  border: 2px solid #fff;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sUAOCaT6mn .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sUAOCaT6mn .col-text {
  display: flex;
  align-items: center;
  padding: 0 90px;
}
@media (max-width: 991px) {
  .cid-sUAOCaT6mn .col-text {
    padding: 50px 0.75rem 0;
  }
}
.cid-sUAOCaT6mn .mbr-section-subtitle {
  color: #000000;
  padding-top: 12px;
}
.cid-sUAOCaT6mn .item-container {
  width: 100%;
}
.cid-sUAOCaT6mn .item {
  display: flex;
  margin-top: 32px;
  text-align: left;
}
.cid-sUAOCaT6mn .item:first-child {
  margin-top: 0;
}
@media (max-width: 767px) {
  .cid-sUAOCaT6mn .item {
    flex-direction: column;
    text-align: center;
  }
}
.cid-sUAOCaT6mn .icon-box {
  background: #0057fc;
  width: 40px;
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 24px;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-sUAOCaT6mn .icon-box {
    margin: 0 auto 24px;
  }
}
.cid-sUAOCaT6mn .text-box {
  flex-grow: 1;
}
.cid-sUAOCaT6mn .number-text {
  color: #ffffff;
}
.cid-sUAOCaT6mn .icon-text {
  color: #e43f3f;
}
.cid-sUAOCaT6mn .icon-title {
  color: #4479d9;
}
.cid-sUAOCaT6mn .mbr-section-title {
  color: #e43f3f;
}
.cid-sqK9wKNIFG {
  padding-top: 45px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/mbr-1622x1080.jpg");
}
.cid-sqK9wKNIFG .row {
  margin-left: -5rem;
}
.cid-sqK9wKNIFG .slider-text-two {
  background: rgba(255, 255, 255, 0.8) none repeat scroll 0 0;
  display: inline-block;
  outline: 1px solid rgba(0, 0, 0, 0.2);
  outline-offset: -15px;
  padding: 65px 50px;
  position: relative;
}
.cid-sqK9wKNIFG .mbr-section-title,
.cid-sqK9wKNIFG .mbr-section-subtitle {
  color: #232323;
}
.cid-sqK9wKNIFG .mbr-section-subtitle span {
  font-weight: bold;
}
.cid-sqK9wKNIFG .mbr-text {
  color: #232323;
  font-weight: 100;
}
.cid-sqK9wKNIFG .mbr-section-btn {
  color: white;
}
@media (max-width: 767px) {
  .cid-sqK9wKNIFG .row {
    margin-left: -15px;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sqK9wKNIFG .slider-text-two {
    outline: 15px solid rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.2);
  }
}
.cid-sqYXHs7Ro5 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #03426a;
}
.cid-sqYXHs7Ro5 .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-sqYXHs7Ro5 .video-block {
    width: 100% !important;
  }
  .cid-sqYXHs7Ro5 .btn {
    margin: 0.5rem 0.5rem;
  }
}
.cid-sqYXHs7Ro5 .underline {
  margin-top: -0.5rem;
  margin-bottom: 1rem;
}
.cid-sqYXHs7Ro5 .underline .line {
  width: 3rem;
  height: 2px;
  background: #ffaa40;
  display: inline-block;
}
.cid-sqYXHs7Ro5 .row {
  margin-top: 1rem;
}
.cid-sqYXHs7Ro5 .mbr-section-subtitle {
  margin-bottom: 1rem;
  color: #ffcd40;
}
.cid-sqYXHs7Ro5 .mbr-section-title,
.cid-sqYXHs7Ro5 .underline {
  color: #ffda73;
}
.cid-sqZ0LihZbc {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/mbr-1920x1279.jpg");
}
.cid-sqZ0LihZbc .row {
  margin-left: -5rem;
}
.cid-sqZ0LihZbc .slider-text-two {
  background: rgba(255, 255, 255, 0.8) none repeat scroll 0 0;
  display: inline-block;
  outline: 1px solid rgba(0, 0, 0, 0.2);
  outline-offset: -15px;
  padding: 65px 50px;
  position: relative;
}
.cid-sqZ0LihZbc .mbr-section-title,
.cid-sqZ0LihZbc .mbr-section-subtitle {
  color: #232323;
}
.cid-sqZ0LihZbc .mbr-section-subtitle span {
  font-weight: bold;
}
.cid-sqZ0LihZbc .mbr-text {
  color: #232323;
  font-weight: 100;
}
.cid-sqZ0LihZbc .mbr-section-btn {
  color: white;
}
@media (max-width: 767px) {
  .cid-sqZ0LihZbc .row {
    margin-left: -15px;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sqZ0LihZbc .slider-text-two {
    outline: 15px solid rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.2);
  }
}
.cid-sCF0vtrhxu {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/mbr-1920x1920.jpg");
}
.cid-sCF0vtrhxu .row {
  margin-left: -5rem;
}
.cid-sCF0vtrhxu .slider-text-two {
  background: rgba(255, 255, 255, 0.8) none repeat scroll 0 0;
  display: inline-block;
  outline: 1px solid rgba(0, 0, 0, 0.2);
  outline-offset: -15px;
  padding: 65px 50px;
  position: relative;
}
.cid-sCF0vtrhxu .mbr-section-title,
.cid-sCF0vtrhxu .mbr-section-subtitle {
  color: #232323;
}
.cid-sCF0vtrhxu .mbr-section-subtitle span {
  font-weight: bold;
}
.cid-sCF0vtrhxu .mbr-text {
  color: #232323;
  font-weight: 100;
}
.cid-sCF0vtrhxu .mbr-section-btn {
  color: white;
}
@media (max-width: 767px) {
  .cid-sCF0vtrhxu .row {
    margin-left: -15px;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sCF0vtrhxu .slider-text-two {
    outline: 15px solid rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.2);
  }
}
.cid-sr6JzfIEho {
  padding-top: 45px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-1920x1320.jpg");
}
.cid-sr6JzfIEho .mbr-overlay {
  background: linear-gradient(90deg, #d6173f, #4284df);
}
.cid-sr6JzfIEho h3 {
  color: #ffffff;
  font-weight: 300;
}
.cid-sr6JzfIEho p {
  color: #ffffff;
}
.cid-sr6JzfIEho h2 {
  color: #ffffff;
}
.cid-sr6JzfIEho .text-content {
  padding: 2rem 0rem;
  background-color: #2c1616;
}
.cid-sr6JzfIEho .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-sr6JzfIEho .media-container-row {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .cid-sr6JzfIEho .mbr-text {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-sr6JzfIEho .text-content {
    margin-bottom: 2rem;
  }
}
.cid-sr6JzfIEho P {
  color: #faff1e;
}
.cid-sr6JzW1MUI {
  padding-top: 45px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/background1-2.jpg");
}
.cid-sr6JzW1MUI h2 {
  width: fit-content;
  display: inline-block;
  position: relative;
}
.cid-sr6JzW1MUI h2:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-sr6JzW1MUI .cover {
  width: 250px;
  margin: auto;
  padding-bottom: 1rem;
}
.cid-sr6JzW1MUI .mbr-figure {
  z-index: 2;
  padding: 8rem 2rem;
}
.cid-sr6JzW1MUI .card {
  overflow: hidden;
  height: 100%;
}
.cid-sr6JzW1MUI .card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../../assets/images/maverik-baloon-600x400.jpg");
  filter: blur(10px);
  background-size: cover;
  z-index: 1;
}
@media (max-width: 767px) {
  .cid-sr6JzW1MUI .cover {
    width: 100%;
  }
}
.cid-sr6JzW1MUI H3 {
  color: #e43f3f;
}
.cid-sr6JXiM5Nb {
  overflow: hidden !important;
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/mbr-1920x1279.jpg");
}
.cid-sr6JXiM5Nb .container-fluid {
  padding: 0 5rem;
}
.cid-sr6JXiM5Nb .animated-element {
  color: #efefef;
}
.cid-sr6JXiM5Nb .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-sr6JXiM5Nb .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-sr6JXiM5Nb .container-fluid {
    padding: 0 1rem;
  }
}
.cid-sr6JXiM5Nb .mbr-section-title DIV {
  text-align: center;
}
.cid-sr6JXiM5Nb .mbr-section-subtitle,
.cid-sr6JXiM5Nb .mbr-section-btn {
  text-align: right;
}
.cid-sChUd1mNA5 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/mbr-1920x1301.jpg");
}
.cid-sChUd1mNA5 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sChUd1mNA5 .row {
    flex-direction: column-reverse;
  }
  .cid-sChUd1mNA5 .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-sChUd1mNA5 .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sChUd1mNA5 .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-sChUd1mNA5 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sChUd1mNA5 .mbr-text,
.cid-sChUd1mNA5 .mbr-section-btn {
  color: #000000;
}
.cid-sChUdCsnW1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/mbr-1920x1091.jpg");
}
.cid-sChUdCsnW1 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sChUdCsnW1 .row {
    flex-direction: column-reverse;
  }
  .cid-sChUdCsnW1 .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-sChUdCsnW1 .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sChUdCsnW1 .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-sChUdCsnW1 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sChUdCsnW1 .mbr-text,
.cid-sChUdCsnW1 .mbr-section-btn {
  color: #000000;
}
.cid-sCFhQ44P8J {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/mbr-1-1920x1091.jpg");
}
.cid-sCFhQ44P8J .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-sCFhQ44P8J .text-wrapper {
    padding: 0 3rem 0 0;
  }
}
@media (max-width: 768px) {
  .cid-sCFhQ44P8J .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sCFhQ44P8J .mbr-img-wrap {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-sCFhQ44P8J .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sCFhQ44P8J .image-wrapper img {
  vertical-align: middle;
  width: 100%;
  object-fit: cover;
}
.cid-sCFhQ44P8J .mbr-section-tag {
  color: #000000;
  margin-bottom: 7px;
}
.cid-sCFhQ44P8J .mbr-section-btn {
  margin-top: 1.625rem;
}
.cid-sCFhQ44P8J .mbr-section-bottom {
  border-style: solid;
  border-width: 2px 0px 0px 0px;
  border-color: #232323;
}
.cid-sCFhQ44P8J .bottom-text {
  margin-top: 2rem;
  margin-bottom: 0.625rem;
  color: #073b4c;
}
.cid-sCFhQ44P8J .bottom-title {
  margin-top: 1.5625rem;
  margin-bottom: 1.5625rem;
  color: #f23801;
}
.cid-sCFhQ44P8J .list {
  list-style: none;
  padding-left: 0;
  color: #55b4d4;
}
.cid-sCFhQ44P8J .list li {
  position: relative;
  margin: 0 0 0.625rem;
}
.cid-sCFhQ44P8J .list li::before {
  content: "–";
  display: inline-block;
  margin-right: 1rem;
}
.cid-sCFhQ44P8J .mbr-section-subtitle {
  margin-bottom: 10px;
  color: #0f7699;
}
.cid-sCFhQ44P8J .mbr-section-text {
  margin-bottom: 2rem;
  color: #000000;
}
.cid-sCFhQ44P8J .mbr-section-title {
  margin-bottom: 1rem;
  color: #54e43f;
}
.cid-sCFhQ44P8J .mbr-section-title b:last-child,
.cid-sCFhQ44P8J .mbr-section-title strong:last-child {
  color: #f23801;
}
.cid-sUAX0iKusj {
  padding-top: 30px;
  padding-bottom: 60px;
  background: #0e0e0e;
  background: linear-gradient(#0e0e0e, #03426a);
}
.cid-sUAX0iKusj .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-sUAX0iKusj .video-block {
  margin: auto;
}
@media (max-width: 767px) {
  .cid-sUAX0iKusj .video-block {
    width: 100% !important;
  }
}
.cid-sUAX0iKusj .mbr-section-title {
  color: #e6c63b;
}
.cid-sSjYCQRpHH {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-491x306.jpg");
  overflow: hidden;
}
.cid-sSjYCQRpHH svg {
  fill: #4479d9 !important;
  pointer-events: none;
}
.cid-sSjYCQRpHH #e2_shape {
  fill: #4479d9 !important;
}
.cid-sSjYCQRpHH .mbr-section-title.display-1 {
  line-height: 1.24;
}
.cid-sSjYCQRpHH .mbr-text {
  font-weight: 300;
}
.cid-sSjYCQRpHH .mbr-text.display-5 {
  font-size: 24px;
  line-height: 1.416;
}
.cid-sSjYCQRpHH .btn-white {
  color: #404040 !important;
}
.cid-sSjYCQRpHH .btn.display-4 {
  font-size: 14px;
  line-height: 1;
  padding: 21px 30px 20px;
}
.cid-sSjYCQRpHH .btn.display-4 .mbr-iconfont {
  font-size: 0.9rem;
  margin-right: 5px;
}
@media (max-width: 991px) {
  .cid-sSjYCQRpHH .img-wrap {
    display: none;
  }
}
@media (max-width: 768px) {
  .cid-sSjYCQRpHH {
    padding: 30px;
  }
  .cid-sSjYCQRpHH svg {
    display: none;
  }
}
.cid-sSjYBlvsmu {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-1-1920x1281.jpg");
}
.cid-sSjYBlvsmu .mbr-overlay {
  background: #000000;
  opacity: 0.3;
}
.cid-sSjYBlvsmu img,
.cid-sSjYBlvsmu .item-img {
  width: 100%;
}
.cid-sSjYBlvsmu .item:focus,
.cid-sSjYBlvsmu span:focus {
  outline: none;
}
.cid-sSjYBlvsmu .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sSjYBlvsmu .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #232323;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sSjYBlvsmu .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-sSjYBlvsmu .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sSjYBlvsmu .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-sSjYBlvsmu .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-sSjYBlvsmu .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sSjYBlvsmu .mbr-section-title {
  color: #54e43f;
}
.cid-sSjYBlvsmu .mbr-text,
.cid-sSjYBlvsmu .mbr-section-btn {
  text-align: left;
  color: #faff1e;
}
.cid-sSjYBlvsmu .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-sSjYBlvsmu .item-subtitle {
  text-align: left;
}
.cid-sSjYBlvsmu .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sUASYfrcbW {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #000000;
}
.cid-sUASYfrcbW .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-sUASYfrcbW .video-block {
    width: 100% !important;
  }
  .cid-sUASYfrcbW .btn {
    margin: 0.5rem 0.5rem;
  }
}
.cid-sUASYfrcbW .underline {
  margin-top: -0.5rem;
  margin-bottom: 1rem;
}
.cid-sUASYfrcbW .underline .line {
  width: 3rem;
  height: 2px;
  background: #ffaa40;
  display: inline-block;
}
.cid-sUASYfrcbW .row {
  margin-top: 1rem;
}
.cid-sUASYfrcbW .mbr-section-subtitle {
  margin-bottom: 1rem;
  color: #ffcd40;
}
.cid-sUASYfrcbW .mbr-section-title,
.cid-sUASYfrcbW .underline {
  color: #ffda73;
}
.cid-sSeKMlf10Q {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/mbr-1920x1301.jpg");
}
.cid-sSeKMlf10Q .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sSeKMlf10Q .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sSeKMlf10Q .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sSeKMlf10Q .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 1rem;
}
.cid-sSeKMlf10Q .media-container-row .foot-menu li {
  padding: 0 1.5rem 1rem 1.5rem;
}
.cid-sSeKMlf10Q .media-container-row .foot-menu li:hover {
  color: #3e97d1;
}
.cid-sSeKMlf10Q .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sSeKMlf10Q .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sSeKMlf10Q .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sSeKMlf10Q .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sSeKMlf10Q .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sSeKMlf10Q .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sSeKMlf10Q .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sSeKMlf10Q .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sSeKMlf10Q .media-container-row .row-copirayt p {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sSeKMlf10Q .foot-menu {
    display: flex;
    flex-direction: column;
  }
}
.cid-sSeKMlf10Q .media-container-row .mbr-text {
  color: #c8c8c8;
}
.cid-t4MX9SmxFO.popup-builder {
  background-color: #ffffff;
}
.cid-t4MX9SmxFO.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-t4MX9SmxFO.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-t4MX9SmxFO .modal-content,
.cid-t4MX9SmxFO .modal-dialog {
  height: auto;
}
.cid-t4MX9SmxFO .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-t4MX9SmxFO .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-t4MX9SmxFO .form-wrapper .mbr-form .form-group,
  .cid-t4MX9SmxFO .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-t4MX9SmxFO .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-t4MX9SmxFO .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-t4MX9SmxFO .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-t4MX9SmxFO .pt-0 {
  padding-top: 0 !important;
}
.cid-t4MX9SmxFO .pb-0 {
  padding-bottom: 0 !important;
}
.cid-t4MX9SmxFO .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-t4MX9SmxFO .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-t4MX9SmxFO .modal-open {
  overflow: hidden;
}
.cid-t4MX9SmxFO .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-t4MX9SmxFO .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-t4MX9SmxFO .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-t4MX9SmxFO .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-t4MX9SmxFO .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-t4MX9SmxFO .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-t4MX9SmxFO .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-t4MX9SmxFO .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-t4MX9SmxFO .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-t4MX9SmxFO .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-t4MX9SmxFO .modal-backdrop.fade {
  opacity: 0;
}
.cid-t4MX9SmxFO .modal-backdrop.show {
  opacity: .5;
}
.cid-t4MX9SmxFO .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-t4MX9SmxFO .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-t4MX9SmxFO .modal-header {
    padding: 1rem;
  }
}
.cid-t4MX9SmxFO .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-t4MX9SmxFO .modal-header .close svg {
  fill: #353535;
}
.cid-t4MX9SmxFO .modal-header .close:hover {
  opacity: 1;
}
.cid-t4MX9SmxFO .modal-header .close:focus {
  outline: none;
}
.cid-t4MX9SmxFO .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-t4MX9SmxFO .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-t4MX9SmxFO .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t4MX9SmxFO .modal-body {
    padding: 1rem;
  }
}
.cid-t4MX9SmxFO .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-t4MX9SmxFO .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t4MX9SmxFO .modal-footer {
    padding: 1rem;
  }
}
.cid-t4MX9SmxFO .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-t4MX9SmxFO .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-t4MX9SmxFO .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-t4MX9SmxFO .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-t4MX9SmxFO .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-t4MX9SmxFO .modal-lg,
  .cid-t4MX9SmxFO .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-t4MX9SmxFO .modal-xl {
    max-width: 1140px;
  }
}
.cid-t4MX9SmxFO .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-t4MX9SmxFO .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-t4MX9SmxFO .form-group {
  margin-bottom: 1rem;
}
.cid-t4MX9SmxFO .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-t4MX9SmxFO .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-t4MX9SmxFO .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-t4MX9SmxFO .mbr-section-btn {
  margin: 0;
}
.cid-t4MX9SmxFO .mbr-section-btn .btn {
  margin: 0;
}
.cid-sqHvdPqyBX .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-sqHvdPqyBX .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-sqHvdPqyBX .nav-item:focus,
.cid-sqHvdPqyBX .nav-link:focus {
  outline: none;
}
.cid-sqHvdPqyBX .text-white:hover,
.cid-sqHvdPqyBX .text-white:active,
.cid-sqHvdPqyBX .text-white:focus {
  color: white!important;
}
.cid-sqHvdPqyBX .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #000000;
}
.cid-sqHvdPqyBX .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-sqHvdPqyBX .navbar.opened {
  transition: all .3s;
  background: #000000 !important;
}
.cid-sqHvdPqyBX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sqHvdPqyBX .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-sqHvdPqyBX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sqHvdPqyBX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sqHvdPqyBX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sqHvdPqyBX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sqHvdPqyBX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sqHvdPqyBX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sqHvdPqyBX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sqHvdPqyBX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sqHvdPqyBX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sqHvdPqyBX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sqHvdPqyBX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sqHvdPqyBX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sqHvdPqyBX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sqHvdPqyBX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sqHvdPqyBX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sqHvdPqyBX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sqHvdPqyBX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sqHvdPqyBX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sqHvdPqyBX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sqHvdPqyBX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sqHvdPqyBX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sqHvdPqyBX .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-sqHvdPqyBX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sqHvdPqyBX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sqHvdPqyBX .section {
  position: relative;
  overflow: visible!important;
}
.cid-sqHvdPqyBX .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-sqHvdPqyBX .dropdown-item:hover {
  color: black!important;
}
.cid-sqHvdPqyBX .dropdown-menu {
  background-color: white!important;
}
.cid-sqHvdPqyBX .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-sqHvdPqyBX .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-sqHvdPqyBX .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-sqHvdPqyBX .nav-item .nav-link {
    position: relative;
  }
}
.cid-sqHvdPqyBX .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-sqHvdPqyBX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sqHvdPqyBX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-sqHvdPqyBX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sqHvdPqyBX .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-sqHvdPqyBX .collapsed {
  flex-direction: row!important;
}
.cid-sqHvdPqyBX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sqHvdPqyBX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sqHvdPqyBX .navbar-caption {
  font-weight: 600!important;
}
.cid-sqHvdPqyBX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sqHvdPqyBX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sqHvdPqyBX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sqHvdPqyBX .dropdown-item.active,
.cid-sqHvdPqyBX .dropdown-item:active {
  background-color: transparent;
}
.cid-sqHvdPqyBX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sqHvdPqyBX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sqHvdPqyBX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sqHvdPqyBX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-sqHvdPqyBX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sqHvdPqyBX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sqHvdPqyBX .navbar-buttons {
  text-align: center;
}
.cid-sqHvdPqyBX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sqHvdPqyBX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #54e43f;
}
.cid-sqHvdPqyBX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sqHvdPqyBX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sqHvdPqyBX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sqHvdPqyBX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sqHvdPqyBX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sqHvdPqyBX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sqHvdPqyBX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sqHvdPqyBX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sqHvdPqyBX .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sqHvdPqyBX .nav-link {
  font-weight: 600!important;
}
.cid-sqHvdPqyBX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqHvdPqyBX .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sqHvdPqyBX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-sqHvdPqyBX .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sqHvdPqyBX .navbar {
    height: 77px;
  }
  .cid-sqHvdPqyBX .navbar.opened {
    height: auto;
  }
  .cid-sqHvdPqyBX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t1WRxnyxnl {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1619x1080.jpg");
}
.cid-t1WRxnyxnl .mbr-overlay {
  background: linear-gradient(90deg, #6441a5, #2a0845);
}
.cid-t1WRxnyxnl .media-container-row img {
  -webkit-transition: transform 0.4s cubic-bezier(0.38, 3, 0.57, 1.6);
  -moz-transition: transform 0.4s cubic-bezier(0.38, 3, 0.57, 1.6);
  transition: transform 0.4s cubic-bezier(0.38, 3, 0.57, 1.6);
}
.cid-t1WRxnyxnl .media-container-row:hover img {
  -webkit-transform: translate3d(0, -5px, 0);
  -moz-transform: translate3d(0, -5px, 0);
  transform: translate3d(0, -5px, 0);
}
@media (min-width: 992px) {
  .cid-t1WRxnyxnl .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-t1WRxnyxnl .mbr-figure {
    padding-top: 3rem;
  }
}
@media (max-width: 991px) {
  .cid-t1WRxnyxnl {
    text-align: center !important;
  }
}
.cid-sObmuYNrrM {
  padding-top: 75px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/partnership-clear-490x346.png");
}
.cid-sObmuYNrrM .title-block {
  justify-content: space-between;
}
.cid-sObmuYNrrM .mbr-section-subtitle {
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 5px;
  color: #ffffff;
}
.cid-sObmuYNrrM .mbr-section-title {
  margin-bottom: 60px;
  font-weight: 700;
}
.cid-sObmuYNrrM .card-wrapper {
  width: auto;
  max-width: 100%;
  border-radius: 30px;
  padding: 60px 40px 30px;
  margin: 0 30px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.15) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 20px 40px 0 rgba(216, 227, 235, 0.15);
}
.cid-sObmuYNrrM .card-title {
  font-weight: 700;
  padding: 43px 0 0;
  color: #1d1d1f;
  text-align: left;
}
.cid-sObmuYNrrM .title {
  font-weight: 700;
  margin-bottom: 50px;
  text-align: left;
  color: #ffffff;
}
.cid-sObmuYNrrM .subtitle {
  font-weight: 700;
  margin-top: 30px;
  text-align: left;
  color: #e6c63b;
}
.cid-sObmuYNrrM .text {
  margin-top: 10px;
  font-weight: 500;
  text-align: left;
  color: #faff1e;
}
@media (min-width: 575px) and (max-width: 990px) {
  .cid-sObmuYNrrM .col-12:nth-child(3) {
    padding-top: 35px;
  }
  .cid-sObmuYNrrM .card-wrapper {
    margin: 20px;
    padding: 60px 30px 40px;
  }
}
@media (min-width: 970px) and (max-width: 1100px) {
  .cid-sObmuYNrrM .card-wrapper {
    margin: 10px;
  }
}
@media (max-width: 574px) {
  .cid-sObmuYNrrM .col-12 {
    padding-top: 35px;
  }
  .cid-sObmuYNrrM .col-12:first-child {
    padding-top: 0px;
  }
  .cid-sObmuYNrrM .card-wrapper {
    margin: 10px;
    padding: 60px 30px 40px;
  }
}
.cid-sObmuYNrrM H3 {
  color: #e43f3f;
}
.cid-sOboN5pk8h {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/mbr-1622x1080.jpg");
}
.cid-sOboN5pk8h .card1 {
  background-image: url("../../../assets/images/grocery-howitworks-993x621.jpg");
  background-size: cover;
  background-position: center;
}
.cid-sOboN5pk8h .card2 {
  background-image: url("../../../assets/images/pos-2-1-889x562.jpg");
  background-size: cover;
  background-position: center;
}
.cid-sOboN5pk8h .card3 {
  background-image: url("../../../assets/images/mbr-1622x1080.jpg");
  background-size: cover;
  background-position: center;
}
.cid-sOboN5pk8h .item-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.cid-sOboN5pk8h .text {
  width: 100%;
  padding: 30% 10%;
  z-index: 10;
}
.cid-sOboN5pk8h .mbr-iconfont {
  display: block;
  font-size: 73px;
  color: #ffffff;
  height: 100%;
  padding-bottom: 18px;
}
.cid-sOboN5pk8h .l2 {
  color: #ffffff;
  margin-bottom: 48px;
}
.cid-sOboN5pk8h .l1 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 10px;
}
.cid-sOboN5pk8h .btn-secondary,
.cid-sOboN5pk8h .btn-secondary:hover {
  color: #1d2024 !important;
}
.cid-sOboN5pk8h .features-image {
  margin-top: 30px;
}
.cid-sOboN5pk8h .features-image:nth-of-type(1) {
  margin-top: 0px;
}
.cid-sOboN5pk8h .features-image:nth-of-type(2) {
  margin-top: 0px;
}
.cid-sOboN5pk8h .features-image:nth-of-type(3) {
  margin-top: 0px;
}
@media (max-width: 990px) {
  .cid-sOboN5pk8h .features-image:nth-of-type(3) {
    margin-top: 30px;
  }
}
@media (max-width: 690px) {
  .cid-sOboN5pk8h .features-image:nth-of-type(2) {
    margin-top: 30px;
  }
  .cid-sOboN5pk8h .text {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-sOboN5pk8h .btn {
  margin: 0 13px;
}
.cid-sObul26lrB {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-sObul26lrB .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-sObul26lrB .card {
    margin-bottom: 2rem!important;
  }
  .cid-sObul26lrB .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sObul26lrB .link-wrap {
    align-items: center;
  }
}
.cid-sObul26lrB .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sObrOWsIaC {
  padding-top: 135px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/man.jpg");
}
.cid-sObrOWsIaC .mbr-iconfont2 {
  color: #e9204f;
}
.cid-sObrOWsIaC .mbr-iconfont {
  font-size: 3rem;
  transition: 0.7s;
}
.cid-sObrOWsIaC .card-inner {
  background-color: #1b1b1b;
  transition: 0.7s;
  z-index: 10;
}
.cid-sObrOWsIaC .btn {
  margin-left: 0rem;
}
.cid-sObrOWsIaC .row {
  padding-bottom: 8rem;
}
.cid-sObrOWsIaC .link {
  margin: 0;
  color: #f9f295;
}
.cid-sObrOWsIaC .card-title {
  position: relative;
  margin-bottom: 1.3rem;
  padding-bottom: 0.5rem;
}
.cid-sObrOWsIaC .card-title:after {
  position: absolute;
  content: '';
  bottom: 0px;
  left: 0;
  right: 0;
  width: 40px;
  height: 2px;
  background: #e9204f;
  transition: 0.7s;
}
.cid-sObrOWsIaC .card-img {
  margin-bottom: 3.2rem;
}
.cid-sObrOWsIaC .link a {
  position: relative;
  letter-spacing: 2px;
}
.cid-sObrOWsIaC .card:hover .card-inner {
  background-color: #e9204f;
  box-shadow: 0px 10px 50px 10px rgba(0, 0, 0, 0.3);
}
.cid-sObrOWsIaC .card:hover .mbr-iconfont {
  color: #ffffff !important;
}
.cid-sObrOWsIaC .card:hover .card-title:after {
  background: #ffffff;
}
.cid-sObrOWsIaC .media-container-row {
  align-items: flex-end;
}
.cid-sObrOWsIaC .mbr-section-title {
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .cid-sObrOWsIaC .card {
    padding: 0;
    margin-bottom: 2rem;
  }
  .cid-sObrOWsIaC .card-inner {
    padding: 3rem 1rem;
  }
}
@media (min-width: 767px) {
  .cid-sObrOWsIaC .card-inner {
    padding: 3.4rem 2.5rem 3.6rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-sObrOWsIaC .card {
    margin-bottom: 2rem;
  }
  .cid-sObrOWsIaC .row {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sObrOWsIaC .row {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.cid-sObrOWsIaC .card {
  position: relative;
}
.cid-sObrOWsIaC .card-3::after {
  content: "";
  background-color: #e9204f;
  height: 70px;
  width: 97%;
  position: absolute;
  bottom: -20px;
  z-index: 1;
}
.cid-sObrOWsIaC .card:first-child .card-inner {
  background-color: #e9204f;
}
.cid-sObrOWsIaC .card:first-child .card-inner .mbr-iconfont1 {
  color: #ffffff;
}
.cid-sObrOWsIaC .card:first-child .card-inner .card-title:after {
  background: #ffffff;
}
.cid-sObrOWsIaC .card:first-child .card-inner:hover .mbr-iconfont1 {
  color: #ffffff !important;
}
.cid-sObrOWsIaC .card:first-child .card-inner:hover .card-title:after {
  background: #ffffff;
}
.cid-sObrOWsIaC .block-title,
.cid-sObrOWsIaC .mbr-section-title,
.cid-sObrOWsIaC .line,
.cid-sObrOWsIaC .mbr-section-btn {
  color: #ffe161;
}
.cid-sObrOWsIaC .mbr-maintext,
.cid-sObrOWsIaC .mbr-section-btn {
  color: #54e43f;
}
.cid-sObrOWsIaC H3 {
  color: #ffffff;
}
.cid-t4HpIe6Grk {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/mbr-491x246.png");
}
.cid-t4HpIe6Grk p {
  line-height: 1.6;
}
.cid-t4HpIe6Grk .card-box {
  width: -webkit-fill-available;
}
.cid-t4HpIe6Grk .card-img span {
  font-size: 96px;
  padding: 0.6rem;
  margin: 0 1rem;
  border-radius: 8px;
}
.cid-t4HpIe6Grk .card-img .img1 {
  color: #57468b !important;
}
.cid-t4HpIe6Grk .card-img .img2 {
  color: #5580ff !important;
}
.cid-t4HpIe6Grk .card-img .img3 {
  color: #ff8a73 !important;
}
.cid-t4HpIe6Grk .card-img .img4 {
  color: #ff8a73 !important;
}
.cid-t4HpIe6Grk .card-img .img5 {
  color: #bfceff !important;
}
.cid-t4HpIe6Grk .card-img .img6 {
  color: #57468b !important;
}
.cid-t4HpIe6Grk .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-t4HpIe6Grk .card-wrapper {
  display: flex;
  flex-direction: row;
}
.cid-t4HpIe6Grk .card {
  height: 100%;
  margin: auto;
}
.cid-t4HpIe6Grk img {
  width: 100%;
  heigth: auto;
}
.cid-t4HpIe6Grk .card-title1 {
  color: #000000;
}
.cid-t4HpIe6Grk .mbr-text1 {
  color: #000000;
  text-align: left;
}
.cid-t4HpIe6Grk .card-title2 {
  color: #000000;
}
.cid-t4HpIe6Grk .mbr-text2 {
  color: #000000;
}
@media (max-width: 576px) {
  .cid-t4HpIe6Grk .card-wrapper {
    flex-direction: column;
    align-items: center;
    padding: 1rem 0 0 0!important;
  }
  .cid-t4HpIe6Grk .card-img {
    order: 1;
  }
  .cid-t4HpIe6Grk .card-box {
    order: 2;
  }
}
.cid-sYK54WEWXP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/pos-2-1-889x562.jpg");
}
.cid-sYK54WEWXP .mbr-section-title {
  color: #e43f3f;
}
.cid-sYK54WEWXP .mbr-text,
.cid-sYK54WEWXP .mbr-section-btn {
  color: #000000;
}
.cid-sSeKMlf10Q {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/mbr-1920x1301.jpg");
}
.cid-sSeKMlf10Q .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sSeKMlf10Q .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sSeKMlf10Q .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sSeKMlf10Q .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 1rem;
}
.cid-sSeKMlf10Q .media-container-row .foot-menu li {
  padding: 0 1.5rem 1rem 1.5rem;
}
.cid-sSeKMlf10Q .media-container-row .foot-menu li:hover {
  color: #3e97d1;
}
.cid-sSeKMlf10Q .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sSeKMlf10Q .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sSeKMlf10Q .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sSeKMlf10Q .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sSeKMlf10Q .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sSeKMlf10Q .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sSeKMlf10Q .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sSeKMlf10Q .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sSeKMlf10Q .media-container-row .row-copirayt p {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sSeKMlf10Q .foot-menu {
    display: flex;
    flex-direction: column;
  }
}
.cid-sSeKMlf10Q .media-container-row .mbr-text {
  color: #c8c8c8;
}
.cid-t4MMPfB8u2.popup-builder {
  background-color: #ffffff;
}
.cid-t4MMPfB8u2.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-t4MMPfB8u2.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-t4MMPfB8u2 .modal-content,
.cid-t4MMPfB8u2 .modal-dialog {
  height: auto;
}
.cid-t4MMPfB8u2 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-t4MMPfB8u2 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-t4MMPfB8u2 .form-wrapper .mbr-form .form-group,
  .cid-t4MMPfB8u2 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-t4MMPfB8u2 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-t4MMPfB8u2 .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-t4MMPfB8u2 .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-t4MMPfB8u2 .pt-0 {
  padding-top: 0 !important;
}
.cid-t4MMPfB8u2 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-t4MMPfB8u2 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-t4MMPfB8u2 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-t4MMPfB8u2 .modal-open {
  overflow: hidden;
}
.cid-t4MMPfB8u2 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-t4MMPfB8u2 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-t4MMPfB8u2 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-t4MMPfB8u2 .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-t4MMPfB8u2 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-t4MMPfB8u2 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-t4MMPfB8u2 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-t4MMPfB8u2 .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-t4MMPfB8u2 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-t4MMPfB8u2 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-t4MMPfB8u2 .modal-backdrop.fade {
  opacity: 0;
}
.cid-t4MMPfB8u2 .modal-backdrop.show {
  opacity: .5;
}
.cid-t4MMPfB8u2 .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-t4MMPfB8u2 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-t4MMPfB8u2 .modal-header {
    padding: 1rem;
  }
}
.cid-t4MMPfB8u2 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-t4MMPfB8u2 .modal-header .close svg {
  fill: #353535;
}
.cid-t4MMPfB8u2 .modal-header .close:hover {
  opacity: 1;
}
.cid-t4MMPfB8u2 .modal-header .close:focus {
  outline: none;
}
.cid-t4MMPfB8u2 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-t4MMPfB8u2 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-t4MMPfB8u2 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t4MMPfB8u2 .modal-body {
    padding: 1rem;
  }
}
.cid-t4MMPfB8u2 .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-t4MMPfB8u2 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t4MMPfB8u2 .modal-footer {
    padding: 1rem;
  }
}
.cid-t4MMPfB8u2 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-t4MMPfB8u2 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-t4MMPfB8u2 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-t4MMPfB8u2 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-t4MMPfB8u2 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-t4MMPfB8u2 .modal-lg,
  .cid-t4MMPfB8u2 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-t4MMPfB8u2 .modal-xl {
    max-width: 1140px;
  }
}
.cid-t4MMPfB8u2 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-t4MMPfB8u2 .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-t4MMPfB8u2 .form-group {
  margin-bottom: 1rem;
}
.cid-t4MMPfB8u2 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-t4MMPfB8u2 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-t4MMPfB8u2 .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-t4MMPfB8u2 .mbr-section-btn {
  margin: 0;
}
.cid-t4MMPfB8u2 .mbr-section-btn .btn {
  margin: 0;
}
.cid-sqHvdPqyBX .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-sqHvdPqyBX .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-sqHvdPqyBX .nav-item:focus,
.cid-sqHvdPqyBX .nav-link:focus {
  outline: none;
}
.cid-sqHvdPqyBX .text-white:hover,
.cid-sqHvdPqyBX .text-white:active,
.cid-sqHvdPqyBX .text-white:focus {
  color: white!important;
}
.cid-sqHvdPqyBX .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #000000;
}
.cid-sqHvdPqyBX .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-sqHvdPqyBX .navbar.opened {
  transition: all .3s;
  background: #000000 !important;
}
.cid-sqHvdPqyBX .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sqHvdPqyBX .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-sqHvdPqyBX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sqHvdPqyBX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sqHvdPqyBX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sqHvdPqyBX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sqHvdPqyBX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sqHvdPqyBX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sqHvdPqyBX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sqHvdPqyBX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sqHvdPqyBX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sqHvdPqyBX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sqHvdPqyBX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sqHvdPqyBX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sqHvdPqyBX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sqHvdPqyBX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sqHvdPqyBX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sqHvdPqyBX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sqHvdPqyBX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sqHvdPqyBX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sqHvdPqyBX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sqHvdPqyBX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sqHvdPqyBX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sqHvdPqyBX .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-sqHvdPqyBX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sqHvdPqyBX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sqHvdPqyBX .section {
  position: relative;
  overflow: visible!important;
}
.cid-sqHvdPqyBX .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-sqHvdPqyBX .dropdown-item:hover {
  color: black!important;
}
.cid-sqHvdPqyBX .dropdown-menu {
  background-color: white!important;
}
.cid-sqHvdPqyBX .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-sqHvdPqyBX .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-sqHvdPqyBX .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-sqHvdPqyBX .nav-item .nav-link {
    position: relative;
  }
}
.cid-sqHvdPqyBX .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-sqHvdPqyBX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sqHvdPqyBX .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-sqHvdPqyBX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sqHvdPqyBX .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-sqHvdPqyBX .collapsed {
  flex-direction: row!important;
}
.cid-sqHvdPqyBX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sqHvdPqyBX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sqHvdPqyBX .navbar-caption {
  font-weight: 600!important;
}
.cid-sqHvdPqyBX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sqHvdPqyBX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sqHvdPqyBX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sqHvdPqyBX .dropdown-item.active,
.cid-sqHvdPqyBX .dropdown-item:active {
  background-color: transparent;
}
.cid-sqHvdPqyBX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sqHvdPqyBX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sqHvdPqyBX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sqHvdPqyBX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-sqHvdPqyBX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sqHvdPqyBX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sqHvdPqyBX .navbar-buttons {
  text-align: center;
}
.cid-sqHvdPqyBX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sqHvdPqyBX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #54e43f;
}
.cid-sqHvdPqyBX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sqHvdPqyBX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sqHvdPqyBX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sqHvdPqyBX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sqHvdPqyBX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sqHvdPqyBX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sqHvdPqyBX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sqHvdPqyBX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sqHvdPqyBX .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sqHvdPqyBX .nav-link {
  font-weight: 600!important;
}
.cid-sqHvdPqyBX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqHvdPqyBX .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sqHvdPqyBX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-sqHvdPqyBX .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sqHvdPqyBX .navbar {
    height: 77px;
  }
  .cid-sqHvdPqyBX .navbar.opened {
    height: auto;
  }
  .cid-sqHvdPqyBX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sSpMdu85wH {
  padding-top: 7rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1-1920x1275.jpg");
}
.cid-sSpMdu85wH .video-wrapper iframe {
  width: 100%;
}
.cid-sSpMdu85wH .mbr-section-title,
.cid-sSpMdu85wH .mbr-section-subtitle,
.cid-sSpMdu85wH .mbr-text {
  text-align: center;
}
.cid-sSpMdu85wH .mbr-text {
  color: #ffffff;
}
.cid-sSpMdu85wH .mbr-section-subtitle {
  color: #faff1e;
}
.cid-sSjZGTQ032 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-491x306.jpg");
  overflow: hidden;
}
.cid-sSjZGTQ032 svg {
  fill: #4479d9 !important;
  pointer-events: none;
}
.cid-sSjZGTQ032 #e2_shape {
  fill: #4479d9 !important;
}
.cid-sSjZGTQ032 .mbr-section-title.display-1 {
  line-height: 1.24;
}
.cid-sSjZGTQ032 .mbr-text {
  font-weight: 300;
}
.cid-sSjZGTQ032 .mbr-text.display-5 {
  font-size: 24px;
  line-height: 1.416;
}
.cid-sSjZGTQ032 .btn-white {
  color: #404040 !important;
}
.cid-sSjZGTQ032 .btn.display-4 {
  font-size: 14px;
  line-height: 1;
  padding: 21px 30px 20px;
}
.cid-sSjZGTQ032 .btn.display-4 .mbr-iconfont {
  font-size: 0.9rem;
  margin-right: 5px;
}
@media (max-width: 991px) {
  .cid-sSjZGTQ032 .img-wrap {
    display: none;
  }
}
@media (max-width: 768px) {
  .cid-sSjZGTQ032 {
    padding: 30px;
  }
  .cid-sSjZGTQ032 svg {
    display: none;
  }
}
.cid-t5fq6nXqsS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background9.jpg");
}
.cid-t5fq6nXqsS .mbr-fallback-image.disabled {
  display: none;
}
.cid-t5fq6nXqsS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t5hJMXK81v {
  padding-top: 0px;
  padding-bottom: 0px;
  overflow: hidden;
  background: #ffffff;
}
@media (min-width: 1330px) {
  .cid-t5hJMXK81v .container {
    max-width: 1330px !important;
  }
}
.cid-t5hJMXK81v .content-wrap {
  background-color: #ebd2b4;
}
.cid-t5hJMXK81v .card-wrap {
  margin-top: 5rem;
  margin-bottom: 5rem;
  padding: 5rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-t5hJMXK81v .card-wrap {
    width: calc(100% + 10rem);
    margin-left: 46px;
  }
}
@media (max-width: 767px) {
  .cid-t5hJMXK81v .card-wrap {
    margin-top: 0;
    margin-bottom: 0;
    padding: 48px 20px 48px 20px;
  }
}
.cid-t5hJMXK81v .img-wrap {
  height: 100%;
}
.cid-t5hJMXK81v .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-t5hJMXK81v .mbr-section-subtitle {
  animation-delay: .2s;
}
.cid-t5hJMXK81v .mbr-section-btn {
  margin-top: 2rem;
  margin-bottom: -0.25rem;
  animation-delay: .4s;
}
.cid-t5hJMXK81v [class*="col"] {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
@media (min-width: 992px) {
  .cid-t5hJMXK81v .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.cid-t5hJMXK81v .mbr-section-subtitle,
.cid-t5hJMXK81v .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-t5hJMXK81v H1 {
  text-align: left;
  color: #000000;
}
.cid-t5hJNKYzMa {
  background: #ffd1ba;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-t5hJNKYzMa .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-t5hJNKYzMa .video-block {
    width: 100% !important;
  }
}
.cid-sSjXvhvxgp {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/mbr-2-1920x1277.jpg");
}
.cid-sSjXvhvxgp .mbr-overlay {
  background: #ffffff;
  opacity: 0.8;
}
@media (max-width: 991px) {
  .cid-sSjXvhvxgp .text-wrapper {
    padding-top: 30px;
  }
}
.cid-sSjXvhvxgp .mbr-text {
  margin-bottom: 20.4px;
}
.cid-sSjXvhvxgp .mbr-text,
.cid-sSjXvhvxgp .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-sSjXvhvxgp .mbr-section-subtitle {
  color: #c61600;
  text-align: left;
}
.cid-sSjXvhvxgp .section-subtext {
  color: #e43f3f;
  text-align: left;
}
.cid-t53q2uxsj2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #98dee8;
}
.cid-t53q2uxsj2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-t53q2uxsj2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t53q2uxsj2 ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-t53q2uxsj2 li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-t53q2uxsj2 ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #faff1e;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-t53q2uxsj2 .list {
  color: #000000;
}
.cid-sUUznsl1YV {
  padding-top: 90px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/amazingwoman810-810x851.png");
}
.cid-sUUznsl1YV .intro-body {
  vertical-align: middle;
}
.cid-sUUznsl1YV .mbr-section-title {
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}
.cid-sUUznsl1YV .text {
  color: white;
  letter-spacing: 0.03em;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.cid-sUUznsl1YV .signature {
  transform: rotate(-3deg);
  color: #faff1e;
}
.cid-sUUznsl1YV .mbr-text {
  width: 100%;
  height: auto;
}
.cid-sUUznsl1YV .video {
  text-align: center;
  vertical-align: middle;
  margin-top: 0;
}
@media (max-width: 1199px) {
  .cid-sUUznsl1YV .video {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
}
@media (max-width: 991px) {
  .cid-sUUznsl1YV .row {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cid-sUUznsl1YV .content,
  .cid-sUUznsl1YV .video {
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
.cid-sSqFjT4cxd {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/man.jpg");
}
.cid-sSqFjT4cxd .mbr-media {
  position: relative;
}
.cid-sSqFjT4cxd .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-sSqFjT4cxd .box {
  min-height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
}
@media (max-width: 767px) {
  .cid-sSqFjT4cxd .box {
    min-height: 300px;
  }
}
.cid-sSqFjT4cxd .icon-wrap {
  position: relative;
  margin: auto;
  width: 100px;
  height: 100px;
  background: #ffffff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sSqFjT4cxd .icon-wrap a {
  height: 20px;
}
.cid-sSqFjT4cxd .icon-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: #ffffff;
  opacity: 0.8;
  border-radius: 50%;
  animation-duration: 1s;
  animation-name: icons;
  animation-iteration-count: infinite;
  z-index: 1;
}
@keyframes icons {
  from {
    width: 100px;
    height: 100px;
    opacity: 0.8;
  }
  to {
    width: 160px;
    height: 160px;
    opacity: 0;
  }
}
.cid-sSqFjT4cxd .mbr-media span {
  font-size: 1.5rem;
  transition: all 0.2s;
  z-index: 2;
  padding-left: 4px;
  position: relative;
  color: #5e71db;
}
.cid-sSqFjT4cxd .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sSqFjT4cxd .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sSqFjT4cxd .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sSqFjT4cxd .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-sSqFjT4cxd .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sSqFjT4cxd .mbr-section-title {
  color: #ffffff;
}
.cid-sSeKMlf10Q {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/mbr-1920x1301.jpg");
}
.cid-sSeKMlf10Q .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sSeKMlf10Q .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sSeKMlf10Q .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sSeKMlf10Q .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 1rem;
}
.cid-sSeKMlf10Q .media-container-row .foot-menu li {
  padding: 0 1.5rem 1rem 1.5rem;
}
.cid-sSeKMlf10Q .media-container-row .foot-menu li:hover {
  color: #3e97d1;
}
.cid-sSeKMlf10Q .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sSeKMlf10Q .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sSeKMlf10Q .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sSeKMlf10Q .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sSeKMlf10Q .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sSeKMlf10Q .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sSeKMlf10Q .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sSeKMlf10Q .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sSeKMlf10Q .media-container-row .row-copirayt p {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sSeKMlf10Q .foot-menu {
    display: flex;
    flex-direction: column;
  }
}
.cid-sSeKMlf10Q .media-container-row .mbr-text {
  color: #c8c8c8;
}
.cid-t4MJBV6Fqz.popup-builder {
  background-color: #ffffff;
}
.cid-t4MJBV6Fqz.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-t4MJBV6Fqz.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-t4MJBV6Fqz .modal-content,
.cid-t4MJBV6Fqz .modal-dialog {
  height: auto;
}
.cid-t4MJBV6Fqz .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-t4MJBV6Fqz .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-t4MJBV6Fqz .form-wrapper .mbr-form .form-group,
  .cid-t4MJBV6Fqz .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-t4MJBV6Fqz .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-t4MJBV6Fqz .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-t4MJBV6Fqz .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-t4MJBV6Fqz .pt-0 {
  padding-top: 0 !important;
}
.cid-t4MJBV6Fqz .pb-0 {
  padding-bottom: 0 !important;
}
.cid-t4MJBV6Fqz .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-t4MJBV6Fqz .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-t4MJBV6Fqz .modal-open {
  overflow: hidden;
}
.cid-t4MJBV6Fqz .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-t4MJBV6Fqz .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-t4MJBV6Fqz .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-t4MJBV6Fqz .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-t4MJBV6Fqz .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-t4MJBV6Fqz .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-t4MJBV6Fqz .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-t4MJBV6Fqz .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-t4MJBV6Fqz .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-t4MJBV6Fqz .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-t4MJBV6Fqz .modal-backdrop.fade {
  opacity: 0;
}
.cid-t4MJBV6Fqz .modal-backdrop.show {
  opacity: .5;
}
.cid-t4MJBV6Fqz .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-t4MJBV6Fqz .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-t4MJBV6Fqz .modal-header {
    padding: 1rem;
  }
}
.cid-t4MJBV6Fqz .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-t4MJBV6Fqz .modal-header .close svg {
  fill: #353535;
}
.cid-t4MJBV6Fqz .modal-header .close:hover {
  opacity: 1;
}
.cid-t4MJBV6Fqz .modal-header .close:focus {
  outline: none;
}
.cid-t4MJBV6Fqz .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-t4MJBV6Fqz .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-t4MJBV6Fqz .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t4MJBV6Fqz .modal-body {
    padding: 1rem;
  }
}
.cid-t4MJBV6Fqz .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-t4MJBV6Fqz .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t4MJBV6Fqz .modal-footer {
    padding: 1rem;
  }
}
.cid-t4MJBV6Fqz .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-t4MJBV6Fqz .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-t4MJBV6Fqz .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-t4MJBV6Fqz .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-t4MJBV6Fqz .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-t4MJBV6Fqz .modal-lg,
  .cid-t4MJBV6Fqz .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-t4MJBV6Fqz .modal-xl {
    max-width: 1140px;
  }
}
.cid-t4MJBV6Fqz .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-t4MJBV6Fqz .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-t4MJBV6Fqz .form-group {
  margin-bottom: 1rem;
}
.cid-t4MJBV6Fqz .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-t4MJBV6Fqz .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-t4MJBV6Fqz .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-t4MJBV6Fqz .mbr-section-btn {
  margin: 0;
}
.cid-t4MJBV6Fqz .mbr-section-btn .btn {
  margin: 0;
}
.cid-sYHlapjuXo .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-sYHlapjuXo .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-sYHlapjuXo .nav-item:focus,
.cid-sYHlapjuXo .nav-link:focus {
  outline: none;
}
.cid-sYHlapjuXo .text-white:hover,
.cid-sYHlapjuXo .text-white:active,
.cid-sYHlapjuXo .text-white:focus {
  color: white!important;
}
.cid-sYHlapjuXo .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #000000;
}
.cid-sYHlapjuXo .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-sYHlapjuXo .navbar.opened {
  transition: all .3s;
  background: #000000 !important;
}
.cid-sYHlapjuXo .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sYHlapjuXo .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-sYHlapjuXo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sYHlapjuXo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sYHlapjuXo .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sYHlapjuXo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sYHlapjuXo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sYHlapjuXo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sYHlapjuXo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sYHlapjuXo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sYHlapjuXo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sYHlapjuXo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sYHlapjuXo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sYHlapjuXo .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sYHlapjuXo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sYHlapjuXo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sYHlapjuXo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sYHlapjuXo .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sYHlapjuXo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sYHlapjuXo .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sYHlapjuXo .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sYHlapjuXo .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sYHlapjuXo .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sYHlapjuXo .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-sYHlapjuXo .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sYHlapjuXo .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sYHlapjuXo .section {
  position: relative;
  overflow: visible!important;
}
.cid-sYHlapjuXo .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-sYHlapjuXo .dropdown-item:hover {
  color: black!important;
}
.cid-sYHlapjuXo .dropdown-menu {
  background-color: white!important;
}
.cid-sYHlapjuXo .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-sYHlapjuXo .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-sYHlapjuXo .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-sYHlapjuXo .nav-item .nav-link {
    position: relative;
  }
}
.cid-sYHlapjuXo .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-sYHlapjuXo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sYHlapjuXo .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-sYHlapjuXo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sYHlapjuXo .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-sYHlapjuXo .collapsed {
  flex-direction: row!important;
}
.cid-sYHlapjuXo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sYHlapjuXo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sYHlapjuXo .navbar-caption {
  font-weight: 600!important;
}
.cid-sYHlapjuXo .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sYHlapjuXo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sYHlapjuXo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sYHlapjuXo .dropdown-item.active,
.cid-sYHlapjuXo .dropdown-item:active {
  background-color: transparent;
}
.cid-sYHlapjuXo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sYHlapjuXo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sYHlapjuXo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sYHlapjuXo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-sYHlapjuXo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sYHlapjuXo ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sYHlapjuXo .navbar-buttons {
  text-align: center;
}
.cid-sYHlapjuXo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sYHlapjuXo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #54e43f;
}
.cid-sYHlapjuXo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sYHlapjuXo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sYHlapjuXo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sYHlapjuXo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sYHlapjuXo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sYHlapjuXo nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sYHlapjuXo nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sYHlapjuXo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sYHlapjuXo .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sYHlapjuXo .nav-link {
  font-weight: 600!important;
}
.cid-sYHlapjuXo a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sYHlapjuXo .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sYHlapjuXo .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-sYHlapjuXo .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sYHlapjuXo .navbar {
    height: 77px;
  }
  .cid-sYHlapjuXo .navbar.opened {
    height: auto;
  }
  .cid-sYHlapjuXo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sYHlarqCfd {
  padding-top: 105px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/mbr-3-1920x1280.jpg");
}
.cid-sYHlarqCfd .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #232323;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #ffffff none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-sYHlarqCfd .content-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-sYHlarqCfd .photo-split {
  padding: 0;
}
.cid-sYHlarqCfd .photo-split img {
  width: 100%;
}
.cid-sYHlarqCfd .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-sYHlarqCfd .counter-container ul {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sYHlarqCfd .counter-container ul li {
  margin-bottom: .5rem;
  list-style: ✓;
}
.cid-sYHlarqCfd .counter-container ul li:before {
  color: #ffbc00;
  display: inline-block;
  content: '✓';
  text-align: center;
  line-height: 1.5em;
  transition: all .2s;
  width: 25px;
  height: 25px;
}
.cid-sYHlarqCfd .wrap-block {
  padding: 3rem 3rem;
}
.cid-sYHlarqCfd .wrap-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-sYHlarqCfd .wrap-block ul li {
  display: inline-block;
}
.cid-sYHlarqCfd .wrap-block ul li span {
  text-align: center;
}
.cid-sYHlarqCfd .social-media {
  margin-top: 1.5em;
  padding: 0;
}
.cid-sYHlarqCfd .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-sYHlarqCfd .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-sYHlarqCfd .mbr-list,
.cid-sYHlarqCfd .social-media ul {
  text-align: left;
}
@media (max-width: 500px) {
  .cid-sYHlarqCfd .wrap-block {
    padding: 3rem 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sYHlarqCfd .mbr-section-title,
  .cid-sYHlarqCfd .mbr-section-subtitle,
  .cid-sYHlarqCfd .mbr-text {
    text-align: center !important;
  }
  .cid-sYHlarqCfd .social-list {
    text-align: center !important;
  }
}
.cid-sYHlarqCfd .mbr-section-subtitle {
  color: #ffe161;
}
.cid-t5gfNVVziR {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #98dee8;
}
.cid-t5gfNVVziR .mbr-fallback-image.disabled {
  display: none;
}
.cid-t5gfNVVziR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t5gfNVVziR ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-t5gfNVVziR li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-t5gfNVVziR ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #faff1e;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-t5gfNVVziR .list {
  color: #000000;
}
.cid-t5fsHv8SLq {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #98dee8;
}
.cid-t5fsHv8SLq .mbr-fallback-image.disabled {
  display: none;
}
.cid-t5fsHv8SLq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t5fsHv8SLq ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-t5fsHv8SLq li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-t5fsHv8SLq ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #faff1e;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-t5fsHv8SLq .list {
  color: #000000;
}
.cid-sYHlase3KO {
  padding-top: 30px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-1920x1271.jpg");
}
.cid-sYHlase3KO .mbr-iconfont {
  color: #8d97ad;
}
.cid-sYHlase3KO .mbr-iconfont:hover {
  color: #188ef4 !important;
}
.cid-sYHlase3KO .mbr-text {
  margin: 1.5rem 0;
  color: #8d97ad;
}
.cid-sYHlase3KO .mbr-section-subtitle {
  color: #1e1e1e;
}
.cid-sYHlase3KO .card-title {
  margin-bottom: 0.3rem;
  color: #000000;
}
.cid-sYHlase3KO .card-img {
  margin: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-sYHlase3KO .img-icon {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sYHlase3KO .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-sYHlase3KO H2 {
  color: #000000;
}
.cid-sYHlase3KO .mbr-text,
.cid-sYHlase3KO .social-links {
  color: #000000;
}
.cid-sYHlauVmXq {
  padding-top: 45px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/background1-2.jpg");
}
.cid-sYHlauVmXq h2 {
  width: fit-content;
  display: inline-block;
  position: relative;
}
.cid-sYHlauVmXq h2:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-sYHlauVmXq .cover {
  width: 250px;
  margin: auto;
  padding-bottom: 1rem;
}
.cid-sYHlauVmXq .mbr-figure {
  z-index: 2;
  padding: 8rem 2rem;
}
.cid-sYHlauVmXq .card {
  overflow: hidden;
  height: 100%;
}
.cid-sYHlauVmXq .card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../../assets/images/mbr-1920x960.png");
  filter: blur(10px);
  background-size: cover;
  z-index: 1;
}
@media (max-width: 767px) {
  .cid-sYHlauVmXq .cover {
    width: 100%;
  }
}
.cid-sYHlauVmXq H3 {
  color: #faff1e;
}
.cid-sYHlavk85I {
  padding-top: 90px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/mbr-936x410.jpg");
}
.cid-sYHlavk85I .row {
  margin-left: -5rem;
}
.cid-sYHlavk85I .slider-text-two {
  background: rgba(255, 255, 255, 0.8) none repeat scroll 0 0;
  display: inline-block;
  outline: 1px solid rgba(0, 0, 0, 0.2);
  outline-offset: -15px;
  padding: 65px 50px;
  position: relative;
}
.cid-sYHlavk85I .mbr-section-title,
.cid-sYHlavk85I .mbr-section-subtitle {
  color: #232323;
}
.cid-sYHlavk85I .mbr-section-subtitle span {
  font-weight: bold;
}
.cid-sYHlavk85I .mbr-text {
  color: #232323;
  font-weight: 100;
}
.cid-sYHlavk85I .mbr-section-btn {
  color: white;
}
@media (max-width: 767px) {
  .cid-sYHlavk85I .row {
    margin-left: -15px;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sYHlavk85I .slider-text-two {
    outline: 15px solid rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.2);
  }
}
.cid-sYHlayRuLU {
  padding-top: 40px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/background4.jpg");
}
.cid-sYHlayRuLU .mbr-overlay {
  background: linear-gradient(90deg, #bbbbbb, #b2ccd2);
}
.cid-sYHlayRuLU .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-sYHlayRuLU .text-content {
  padding-right: 1.5rem;
}
.cid-sYHlayRuLU .mbr-text,
.cid-sYHlayRuLU .mbr-section-btn {
  color: #e43f3f;
  text-align: right;
}
.cid-sYHlayRuLU .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(159, 125, 96, 0.3);
  box-shadow: 0px 0px 30px rgba(159, 125, 96, 0.3);
  border-radius: .25rem;
}
.cid-sYHlayRuLU .counter-container {
  padding: 1rem 0;
  position: relative;
}
.cid-sYHlayRuLU .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-sYHlayRuLU .counter-container ul li {
  margin-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-sYHlayRuLU .main-row {
    margin: 0;
  }
  .cid-sYHlayRuLU .mbr-section-title,
  .cid-sYHlayRuLU .mbr-text,
  .cid-sYHlayRuLU .list,
  .cid-sYHlayRuLU .mbr-section-btn {
    text-align: center !important;
  }
  .cid-sYHlayRuLU .text-content {
    padding: 0;
  }
}
.cid-sYHlayRuLU .list UL {
  text-align: left;
}
.cid-sYHlayRuLU .mbr-section-title {
  color: #000000;
}
.cid-sYHlaANGka {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/mbr-1920x1301.jpg");
}
.cid-sYHlaANGka .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sYHlaANGka .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sYHlaANGka .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sYHlaANGka .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 1rem;
}
.cid-sYHlaANGka .media-container-row .foot-menu li {
  padding: 0 1.5rem 1rem 1.5rem;
}
.cid-sYHlaANGka .media-container-row .foot-menu li:hover {
  color: #3e97d1;
}
.cid-sYHlaANGka .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sYHlaANGka .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sYHlaANGka .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sYHlaANGka .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sYHlaANGka .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sYHlaANGka .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sYHlaANGka .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sYHlaANGka .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sYHlaANGka .media-container-row .row-copirayt p {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sYHlaANGka .foot-menu {
    display: flex;
    flex-direction: column;
  }
}
.cid-sYHlaANGka .media-container-row .mbr-text {
  color: #c8c8c8;
}
.cid-t59JKIRDJk.popup-builder {
  background-color: #ffffff;
}
.cid-t59JKIRDJk.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-t59JKIRDJk.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-t59JKIRDJk .modal-content,
.cid-t59JKIRDJk .modal-dialog {
  height: auto;
}
.cid-t59JKIRDJk .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-t59JKIRDJk .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-t59JKIRDJk .form-wrapper .mbr-form .form-group,
  .cid-t59JKIRDJk .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-t59JKIRDJk .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-t59JKIRDJk .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-t59JKIRDJk .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-t59JKIRDJk .pt-0 {
  padding-top: 0 !important;
}
.cid-t59JKIRDJk .pb-0 {
  padding-bottom: 0 !important;
}
.cid-t59JKIRDJk .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-t59JKIRDJk .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-t59JKIRDJk .modal-open {
  overflow: hidden;
}
.cid-t59JKIRDJk .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-t59JKIRDJk .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-t59JKIRDJk .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-t59JKIRDJk .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-t59JKIRDJk .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-t59JKIRDJk .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-t59JKIRDJk .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-t59JKIRDJk .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-t59JKIRDJk .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-t59JKIRDJk .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-t59JKIRDJk .modal-backdrop.fade {
  opacity: 0;
}
.cid-t59JKIRDJk .modal-backdrop.show {
  opacity: .5;
}
.cid-t59JKIRDJk .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-t59JKIRDJk .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-t59JKIRDJk .modal-header {
    padding: 1rem;
  }
}
.cid-t59JKIRDJk .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-t59JKIRDJk .modal-header .close svg {
  fill: #353535;
}
.cid-t59JKIRDJk .modal-header .close:hover {
  opacity: 1;
}
.cid-t59JKIRDJk .modal-header .close:focus {
  outline: none;
}
.cid-t59JKIRDJk .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-t59JKIRDJk .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-t59JKIRDJk .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t59JKIRDJk .modal-body {
    padding: 1rem;
  }
}
.cid-t59JKIRDJk .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-t59JKIRDJk .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t59JKIRDJk .modal-footer {
    padding: 1rem;
  }
}
.cid-t59JKIRDJk .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-t59JKIRDJk .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-t59JKIRDJk .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-t59JKIRDJk .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-t59JKIRDJk .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-t59JKIRDJk .modal-lg,
  .cid-t59JKIRDJk .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-t59JKIRDJk .modal-xl {
    max-width: 1140px;
  }
}
.cid-t59JKIRDJk .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-t59JKIRDJk .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-t59JKIRDJk .form-group {
  margin-bottom: 1rem;
}
.cid-t59JKIRDJk .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-t59JKIRDJk .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-t59JKIRDJk .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-t59JKIRDJk .mbr-section-btn {
  margin: 0;
}
.cid-t59JKIRDJk .mbr-section-btn .btn {
  margin: 0;
}
.cid-sYHlapjuXo .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-sYHlapjuXo .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-sYHlapjuXo .nav-item:focus,
.cid-sYHlapjuXo .nav-link:focus {
  outline: none;
}
.cid-sYHlapjuXo .text-white:hover,
.cid-sYHlapjuXo .text-white:active,
.cid-sYHlapjuXo .text-white:focus {
  color: white!important;
}
.cid-sYHlapjuXo .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #000000;
}
.cid-sYHlapjuXo .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-sYHlapjuXo .navbar.opened {
  transition: all .3s;
  background: #000000 !important;
}
.cid-sYHlapjuXo .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sYHlapjuXo .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-sYHlapjuXo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sYHlapjuXo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sYHlapjuXo .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sYHlapjuXo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sYHlapjuXo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sYHlapjuXo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sYHlapjuXo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sYHlapjuXo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sYHlapjuXo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sYHlapjuXo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sYHlapjuXo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sYHlapjuXo .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sYHlapjuXo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sYHlapjuXo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sYHlapjuXo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sYHlapjuXo .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sYHlapjuXo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sYHlapjuXo .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sYHlapjuXo .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sYHlapjuXo .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sYHlapjuXo .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sYHlapjuXo .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-sYHlapjuXo .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sYHlapjuXo .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sYHlapjuXo .section {
  position: relative;
  overflow: visible!important;
}
.cid-sYHlapjuXo .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-sYHlapjuXo .dropdown-item:hover {
  color: black!important;
}
.cid-sYHlapjuXo .dropdown-menu {
  background-color: white!important;
}
.cid-sYHlapjuXo .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-sYHlapjuXo .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-sYHlapjuXo .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-sYHlapjuXo .nav-item .nav-link {
    position: relative;
  }
}
.cid-sYHlapjuXo .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-sYHlapjuXo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sYHlapjuXo .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-sYHlapjuXo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sYHlapjuXo .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-sYHlapjuXo .collapsed {
  flex-direction: row!important;
}
.cid-sYHlapjuXo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sYHlapjuXo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sYHlapjuXo .navbar-caption {
  font-weight: 600!important;
}
.cid-sYHlapjuXo .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sYHlapjuXo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sYHlapjuXo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sYHlapjuXo .dropdown-item.active,
.cid-sYHlapjuXo .dropdown-item:active {
  background-color: transparent;
}
.cid-sYHlapjuXo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sYHlapjuXo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sYHlapjuXo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sYHlapjuXo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-sYHlapjuXo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sYHlapjuXo ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sYHlapjuXo .navbar-buttons {
  text-align: center;
}
.cid-sYHlapjuXo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sYHlapjuXo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #54e43f;
}
.cid-sYHlapjuXo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sYHlapjuXo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sYHlapjuXo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sYHlapjuXo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sYHlapjuXo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sYHlapjuXo nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sYHlapjuXo nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sYHlapjuXo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sYHlapjuXo .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sYHlapjuXo .nav-link {
  font-weight: 600!important;
}
.cid-sYHlapjuXo a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sYHlapjuXo .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sYHlapjuXo .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-sYHlapjuXo .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sYHlapjuXo .navbar {
    height: 77px;
  }
  .cid-sYHlapjuXo .navbar.opened {
    height: auto;
  }
  .cid-sYHlapjuXo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t54hCngfYQ {
  padding-top: 135px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/home-banner-images-1440x666.jpg");
}
.cid-t54hCngfYQ .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #232323;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #ffffff none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-t54hCngfYQ .content-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-t54hCngfYQ .photo-split {
  padding: 0;
}
.cid-t54hCngfYQ .photo-split img {
  width: 100%;
}
.cid-t54hCngfYQ .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-t54hCngfYQ .counter-container ul {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-t54hCngfYQ .counter-container ul li {
  margin-bottom: .5rem;
  list-style: ✓;
}
.cid-t54hCngfYQ .counter-container ul li:before {
  color: #ffbc00;
  display: inline-block;
  content: '✓';
  text-align: center;
  line-height: 1.5em;
  transition: all .2s;
  width: 25px;
  height: 25px;
}
.cid-t54hCngfYQ .wrap-block {
  padding: 3rem 3rem;
}
.cid-t54hCngfYQ .wrap-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-t54hCngfYQ .wrap-block ul li {
  display: inline-block;
}
.cid-t54hCngfYQ .wrap-block ul li span {
  text-align: center;
}
.cid-t54hCngfYQ .social-media {
  margin-top: 1.5em;
  padding: 0;
}
.cid-t54hCngfYQ .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-t54hCngfYQ .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-t54hCngfYQ .mbr-list,
.cid-t54hCngfYQ .social-media ul {
  text-align: left;
}
@media (max-width: 500px) {
  .cid-t54hCngfYQ .wrap-block {
    padding: 3rem 1rem;
  }
}
@media (max-width: 767px) {
  .cid-t54hCngfYQ .mbr-section-title,
  .cid-t54hCngfYQ .mbr-section-subtitle,
  .cid-t54hCngfYQ .mbr-text {
    text-align: center !important;
  }
  .cid-t54hCngfYQ .social-list {
    text-align: center !important;
  }
}
.cid-t54hCngfYQ .mbr-section-subtitle {
  color: #ffe161;
}
.cid-t54hGyAdPS {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1080.jpg");
}
.cid-t54hGyAdPS .video-wrapper iframe {
  width: 100%;
}
.cid-t54hGyAdPS .mbr-section-title,
.cid-t54hGyAdPS .mbr-section-subtitle,
.cid-t54hGyAdPS .mbr-text {
  text-align: center;
}
.cid-t54hGyAdPS .mbr-section-title {
  color: #e43f3f;
}
.cid-t54hGyAdPS .mbr-section-subtitle {
  color: #2299aa;
}
.cid-sYHlaANGka {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/mbr-1920x1301.jpg");
}
.cid-sYHlaANGka .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sYHlaANGka .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sYHlaANGka .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sYHlaANGka .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 1rem;
}
.cid-sYHlaANGka .media-container-row .foot-menu li {
  padding: 0 1.5rem 1rem 1.5rem;
}
.cid-sYHlaANGka .media-container-row .foot-menu li:hover {
  color: #3e97d1;
}
.cid-sYHlaANGka .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sYHlaANGka .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sYHlaANGka .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sYHlaANGka .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sYHlaANGka .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sYHlaANGka .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sYHlaANGka .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sYHlaANGka .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sYHlaANGka .media-container-row .row-copirayt p {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sYHlaANGka .foot-menu {
    display: flex;
    flex-direction: column;
  }
}
.cid-sYHlaANGka .media-container-row .mbr-text {
  color: #c8c8c8;
}
.cid-t59JKIRGH0.popup-builder {
  background-color: #ffffff;
}
.cid-t59JKIRGH0.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-t59JKIRGH0.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-t59JKIRGH0 .modal-content,
.cid-t59JKIRGH0 .modal-dialog {
  height: auto;
}
.cid-t59JKIRGH0 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-t59JKIRGH0 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-t59JKIRGH0 .form-wrapper .mbr-form .form-group,
  .cid-t59JKIRGH0 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-t59JKIRGH0 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-t59JKIRGH0 .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-t59JKIRGH0 .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-t59JKIRGH0 .pt-0 {
  padding-top: 0 !important;
}
.cid-t59JKIRGH0 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-t59JKIRGH0 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-t59JKIRGH0 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-t59JKIRGH0 .modal-open {
  overflow: hidden;
}
.cid-t59JKIRGH0 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-t59JKIRGH0 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-t59JKIRGH0 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-t59JKIRGH0 .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-t59JKIRGH0 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-t59JKIRGH0 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-t59JKIRGH0 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-t59JKIRGH0 .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-t59JKIRGH0 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-t59JKIRGH0 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-t59JKIRGH0 .modal-backdrop.fade {
  opacity: 0;
}
.cid-t59JKIRGH0 .modal-backdrop.show {
  opacity: .5;
}
.cid-t59JKIRGH0 .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-t59JKIRGH0 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-t59JKIRGH0 .modal-header {
    padding: 1rem;
  }
}
.cid-t59JKIRGH0 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-t59JKIRGH0 .modal-header .close svg {
  fill: #353535;
}
.cid-t59JKIRGH0 .modal-header .close:hover {
  opacity: 1;
}
.cid-t59JKIRGH0 .modal-header .close:focus {
  outline: none;
}
.cid-t59JKIRGH0 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-t59JKIRGH0 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-t59JKIRGH0 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t59JKIRGH0 .modal-body {
    padding: 1rem;
  }
}
.cid-t59JKIRGH0 .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-t59JKIRGH0 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t59JKIRGH0 .modal-footer {
    padding: 1rem;
  }
}
.cid-t59JKIRGH0 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-t59JKIRGH0 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-t59JKIRGH0 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-t59JKIRGH0 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-t59JKIRGH0 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-t59JKIRGH0 .modal-lg,
  .cid-t59JKIRGH0 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-t59JKIRGH0 .modal-xl {
    max-width: 1140px;
  }
}
.cid-t59JKIRGH0 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-t59JKIRGH0 .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-t59JKIRGH0 .form-group {
  margin-bottom: 1rem;
}
.cid-t59JKIRGH0 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-t59JKIRGH0 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-t59JKIRGH0 .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-t59JKIRGH0 .mbr-section-btn {
  margin: 0;
}
.cid-t59JKIRGH0 .mbr-section-btn .btn {
  margin: 0;
}
.cid-sYHlapjuXo .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-sYHlapjuXo .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-sYHlapjuXo .nav-item:focus,
.cid-sYHlapjuXo .nav-link:focus {
  outline: none;
}
.cid-sYHlapjuXo .text-white:hover,
.cid-sYHlapjuXo .text-white:active,
.cid-sYHlapjuXo .text-white:focus {
  color: white!important;
}
.cid-sYHlapjuXo .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #000000;
}
.cid-sYHlapjuXo .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-sYHlapjuXo .navbar.opened {
  transition: all .3s;
  background: #000000 !important;
}
.cid-sYHlapjuXo .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sYHlapjuXo .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-sYHlapjuXo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sYHlapjuXo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sYHlapjuXo .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sYHlapjuXo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sYHlapjuXo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sYHlapjuXo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sYHlapjuXo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sYHlapjuXo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sYHlapjuXo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sYHlapjuXo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sYHlapjuXo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sYHlapjuXo .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sYHlapjuXo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sYHlapjuXo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sYHlapjuXo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sYHlapjuXo .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sYHlapjuXo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sYHlapjuXo .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sYHlapjuXo .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sYHlapjuXo .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sYHlapjuXo .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sYHlapjuXo .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-sYHlapjuXo .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sYHlapjuXo .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sYHlapjuXo .section {
  position: relative;
  overflow: visible!important;
}
.cid-sYHlapjuXo .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-sYHlapjuXo .dropdown-item:hover {
  color: black!important;
}
.cid-sYHlapjuXo .dropdown-menu {
  background-color: white!important;
}
.cid-sYHlapjuXo .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-sYHlapjuXo .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-sYHlapjuXo .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-sYHlapjuXo .nav-item .nav-link {
    position: relative;
  }
}
.cid-sYHlapjuXo .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-sYHlapjuXo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sYHlapjuXo .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-sYHlapjuXo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sYHlapjuXo .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-sYHlapjuXo .collapsed {
  flex-direction: row!important;
}
.cid-sYHlapjuXo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sYHlapjuXo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sYHlapjuXo .navbar-caption {
  font-weight: 600!important;
}
.cid-sYHlapjuXo .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sYHlapjuXo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sYHlapjuXo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sYHlapjuXo .dropdown-item.active,
.cid-sYHlapjuXo .dropdown-item:active {
  background-color: transparent;
}
.cid-sYHlapjuXo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sYHlapjuXo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sYHlapjuXo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sYHlapjuXo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-sYHlapjuXo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sYHlapjuXo ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sYHlapjuXo .navbar-buttons {
  text-align: center;
}
.cid-sYHlapjuXo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sYHlapjuXo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #54e43f;
}
.cid-sYHlapjuXo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sYHlapjuXo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sYHlapjuXo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sYHlapjuXo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sYHlapjuXo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sYHlapjuXo nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sYHlapjuXo nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sYHlapjuXo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sYHlapjuXo .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sYHlapjuXo .nav-link {
  font-weight: 600!important;
}
.cid-sYHlapjuXo a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sYHlapjuXo .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sYHlapjuXo .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-sYHlapjuXo .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sYHlapjuXo .navbar {
    height: 77px;
  }
  .cid-sYHlapjuXo .navbar.opened {
    height: auto;
  }
  .cid-sYHlapjuXo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t54jtL2e0m {
  padding-top: 120px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/home-banner-images-1440x666.jpg");
}
.cid-t54jtL2e0m .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #232323;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #ffffff none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-t54jtL2e0m .content-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-t54jtL2e0m .photo-split {
  padding: 0;
}
.cid-t54jtL2e0m .photo-split img {
  width: 100%;
}
.cid-t54jtL2e0m .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-t54jtL2e0m .counter-container ul {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-t54jtL2e0m .counter-container ul li {
  margin-bottom: .5rem;
  list-style: ✓;
}
.cid-t54jtL2e0m .counter-container ul li:before {
  color: #ffbc00;
  display: inline-block;
  content: '✓';
  text-align: center;
  line-height: 1.5em;
  transition: all .2s;
  width: 25px;
  height: 25px;
}
.cid-t54jtL2e0m .wrap-block {
  padding: 3rem 3rem;
}
.cid-t54jtL2e0m .wrap-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-t54jtL2e0m .wrap-block ul li {
  display: inline-block;
}
.cid-t54jtL2e0m .wrap-block ul li span {
  text-align: center;
}
.cid-t54jtL2e0m .social-media {
  margin-top: 1.5em;
  padding: 0;
}
.cid-t54jtL2e0m .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-t54jtL2e0m .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-t54jtL2e0m .mbr-list,
.cid-t54jtL2e0m .social-media ul {
  text-align: left;
}
@media (max-width: 500px) {
  .cid-t54jtL2e0m .wrap-block {
    padding: 3rem 1rem;
  }
}
@media (max-width: 767px) {
  .cid-t54jtL2e0m .mbr-section-title,
  .cid-t54jtL2e0m .mbr-section-subtitle,
  .cid-t54jtL2e0m .mbr-text {
    text-align: center !important;
  }
  .cid-t54jtL2e0m .social-list {
    text-align: center !important;
  }
}
.cid-t54jtL2e0m .mbr-section-subtitle {
  color: #ffe161;
}
.cid-t54m9WaGas {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #141414;
}
.cid-t54m9WaGas .mbr-media {
  position: relative;
}
.cid-t54m9WaGas .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-t54m9WaGas .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-t54m9WaGas .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-t54m9WaGas .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-t54m9WaGas .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-t54m9WaGas .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-t54m9WaGas .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-t54m9WaGas .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-t54m9WaGas .mbr-section-title {
  color: #FFFFFF;
}
.cid-t54m9WaGas .mbr-section-subtitle {
  color: #FFFFFF;
}
.cid-t54n0ZC5ha {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-t54n0ZC5ha .mbr-fallback-image.disabled {
  display: none;
}
.cid-t54n0ZC5ha .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t54n0ZC5ha ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-t54n0ZC5ha li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-t54n0ZC5ha ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #faff1e;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-t54n0ZC5ha .list {
  color: #ffffff;
}
.cid-t54n0ZC5ha H3 {
  color: #54e43f;
}
.cid-sYHlaANGka {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/mbr-1920x1301.jpg");
}
.cid-sYHlaANGka .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sYHlaANGka .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sYHlaANGka .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sYHlaANGka .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 1rem;
}
.cid-sYHlaANGka .media-container-row .foot-menu li {
  padding: 0 1.5rem 1rem 1.5rem;
}
.cid-sYHlaANGka .media-container-row .foot-menu li:hover {
  color: #3e97d1;
}
.cid-sYHlaANGka .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sYHlaANGka .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sYHlaANGka .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sYHlaANGka .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sYHlaANGka .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sYHlaANGka .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sYHlaANGka .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sYHlaANGka .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sYHlaANGka .media-container-row .row-copirayt p {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sYHlaANGka .foot-menu {
    display: flex;
    flex-direction: column;
  }
}
.cid-sYHlaANGka .media-container-row .mbr-text {
  color: #c8c8c8;
}
.cid-t59JKIR1Nr.popup-builder {
  background-color: #ffffff;
}
.cid-t59JKIR1Nr.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-t59JKIR1Nr.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-t59JKIR1Nr .modal-content,
.cid-t59JKIR1Nr .modal-dialog {
  height: auto;
}
.cid-t59JKIR1Nr .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-t59JKIR1Nr .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-t59JKIR1Nr .form-wrapper .mbr-form .form-group,
  .cid-t59JKIR1Nr .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-t59JKIR1Nr .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-t59JKIR1Nr .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-t59JKIR1Nr .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-t59JKIR1Nr .pt-0 {
  padding-top: 0 !important;
}
.cid-t59JKIR1Nr .pb-0 {
  padding-bottom: 0 !important;
}
.cid-t59JKIR1Nr .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-t59JKIR1Nr .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-t59JKIR1Nr .modal-open {
  overflow: hidden;
}
.cid-t59JKIR1Nr .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-t59JKIR1Nr .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-t59JKIR1Nr .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-t59JKIR1Nr .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-t59JKIR1Nr .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-t59JKIR1Nr .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-t59JKIR1Nr .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-t59JKIR1Nr .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-t59JKIR1Nr .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-t59JKIR1Nr .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-t59JKIR1Nr .modal-backdrop.fade {
  opacity: 0;
}
.cid-t59JKIR1Nr .modal-backdrop.show {
  opacity: .5;
}
.cid-t59JKIR1Nr .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-t59JKIR1Nr .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-t59JKIR1Nr .modal-header {
    padding: 1rem;
  }
}
.cid-t59JKIR1Nr .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-t59JKIR1Nr .modal-header .close svg {
  fill: #353535;
}
.cid-t59JKIR1Nr .modal-header .close:hover {
  opacity: 1;
}
.cid-t59JKIR1Nr .modal-header .close:focus {
  outline: none;
}
.cid-t59JKIR1Nr .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-t59JKIR1Nr .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-t59JKIR1Nr .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t59JKIR1Nr .modal-body {
    padding: 1rem;
  }
}
.cid-t59JKIR1Nr .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-t59JKIR1Nr .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t59JKIR1Nr .modal-footer {
    padding: 1rem;
  }
}
.cid-t59JKIR1Nr .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-t59JKIR1Nr .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-t59JKIR1Nr .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-t59JKIR1Nr .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-t59JKIR1Nr .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-t59JKIR1Nr .modal-lg,
  .cid-t59JKIR1Nr .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-t59JKIR1Nr .modal-xl {
    max-width: 1140px;
  }
}
.cid-t59JKIR1Nr .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-t59JKIR1Nr .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-t59JKIR1Nr .form-group {
  margin-bottom: 1rem;
}
.cid-t59JKIR1Nr .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-t59JKIR1Nr .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-t59JKIR1Nr .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-t59JKIR1Nr .mbr-section-btn {
  margin: 0;
}
.cid-t59JKIR1Nr .mbr-section-btn .btn {
  margin: 0;
}
.cid-sYHlapjuXo .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-sYHlapjuXo .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-sYHlapjuXo .nav-item:focus,
.cid-sYHlapjuXo .nav-link:focus {
  outline: none;
}
.cid-sYHlapjuXo .text-white:hover,
.cid-sYHlapjuXo .text-white:active,
.cid-sYHlapjuXo .text-white:focus {
  color: white!important;
}
.cid-sYHlapjuXo .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #000000;
}
.cid-sYHlapjuXo .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-sYHlapjuXo .navbar.opened {
  transition: all .3s;
  background: #000000 !important;
}
.cid-sYHlapjuXo .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sYHlapjuXo .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-sYHlapjuXo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sYHlapjuXo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sYHlapjuXo .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sYHlapjuXo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sYHlapjuXo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sYHlapjuXo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sYHlapjuXo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sYHlapjuXo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sYHlapjuXo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sYHlapjuXo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sYHlapjuXo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sYHlapjuXo .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sYHlapjuXo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sYHlapjuXo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sYHlapjuXo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sYHlapjuXo .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sYHlapjuXo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sYHlapjuXo .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sYHlapjuXo .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sYHlapjuXo .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sYHlapjuXo .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sYHlapjuXo .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-sYHlapjuXo .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sYHlapjuXo .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sYHlapjuXo .section {
  position: relative;
  overflow: visible!important;
}
.cid-sYHlapjuXo .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-sYHlapjuXo .dropdown-item:hover {
  color: black!important;
}
.cid-sYHlapjuXo .dropdown-menu {
  background-color: white!important;
}
.cid-sYHlapjuXo .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-sYHlapjuXo .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-sYHlapjuXo .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-sYHlapjuXo .nav-item .nav-link {
    position: relative;
  }
}
.cid-sYHlapjuXo .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-sYHlapjuXo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sYHlapjuXo .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-sYHlapjuXo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sYHlapjuXo .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-sYHlapjuXo .collapsed {
  flex-direction: row!important;
}
.cid-sYHlapjuXo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sYHlapjuXo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sYHlapjuXo .navbar-caption {
  font-weight: 600!important;
}
.cid-sYHlapjuXo .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sYHlapjuXo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sYHlapjuXo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sYHlapjuXo .dropdown-item.active,
.cid-sYHlapjuXo .dropdown-item:active {
  background-color: transparent;
}
.cid-sYHlapjuXo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sYHlapjuXo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sYHlapjuXo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sYHlapjuXo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-sYHlapjuXo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sYHlapjuXo ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sYHlapjuXo .navbar-buttons {
  text-align: center;
}
.cid-sYHlapjuXo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sYHlapjuXo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #54e43f;
}
.cid-sYHlapjuXo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sYHlapjuXo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sYHlapjuXo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sYHlapjuXo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sYHlapjuXo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sYHlapjuXo nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sYHlapjuXo nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sYHlapjuXo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sYHlapjuXo .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sYHlapjuXo .nav-link {
  font-weight: 600!important;
}
.cid-sYHlapjuXo a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sYHlapjuXo .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sYHlapjuXo .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-sYHlapjuXo .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sYHlapjuXo .navbar {
    height: 77px;
  }
  .cid-sYHlapjuXo .navbar.opened {
    height: auto;
  }
  .cid-sYHlapjuXo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t5rj1Aahk6 {
  padding-top: 8rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t5rj1Aahk6 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-t5rj1Aahk6 .image-wrapper {
    display: none;
  }
}
.cid-t5rj1Aahk6 .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-t5rj1Aahk6 .label-text {
  width: 100%;
  padding: 9px 0;
  margin-bottom: 12px;
}
.cid-t5rj1Aahk6 .label {
  padding: 9px 18px;
  background: #ffdd0f;
  border-radius: 20px;
}
.cid-t5rj1Aahk6 .mbr-section-title {
  margin-bottom: 12px;
}
.cid-t5rj1Aahk6 .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 22px;
}
.cid-t5rj1Aahk6 .link-wrap {
  margin-top: 18px;
  width: 100%;
}
@media (max-width: 575px) {
  .cid-t5rj1Aahk6 .link-wrap {
    display: flex;
    justify-content: center;
  }
}
.cid-t5rj1Aahk6 .link-wrap a {
  position: relative;
  padding: 0 !important;
}
.cid-t5rj1Aahk6 .link-wrap a:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-t5rj1Aahk6 .link-wrap a:before {
  content: '';
  position: absolute;
  color: currentColor;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: 1px;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-t5rj1Aahk6 .btn-container {
  width: 100%;
}
@media (max-width: 575px) {
  .cid-t5rj1Aahk6 .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t5rj1Aahk6 .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-t5rj1Aahk6 .mbr-text,
.cid-t5rj1Aahk6 .mbr-section-btn {
  color: #000000;
}
.cid-t5rkFi6mfO {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #2299aa;
}
.cid-t5rkFi6mfO .mbr-fallback-image.disabled {
  display: none;
}
.cid-t5rkFi6mfO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t5rkFi6mfO .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-t5rkFi6mfO .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-t5rkFi6mfO .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-t5rkFi6mfO .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-t5rkFi6mfO .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-t5rkFi6mfO .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-t5rkFi6mfO .carousel-control,
.cid-t5rkFi6mfO .close {
  background: #1b1b1b;
}
.cid-t5rkFi6mfO .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-t5rkFi6mfO .carousel-control-prev span {
  margin-right: 5px;
}
.cid-t5rkFi6mfO .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-t5rkFi6mfO .carousel-control-next span {
  margin-left: 5px;
}
.cid-t5rkFi6mfO .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-t5rkFi6mfO .close::before {
  content: '\e91a';
}
.cid-t5rkFi6mfO .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-t5rkFi6mfO .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-t5rkFi6mfO .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t5rkFi6mfO .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-t5rkFi6mfO .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-t5rkFi6mfO .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-t5rkFi6mfO .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-t5rkFi6mfO .carousel-indicators li.active,
.cid-t5rkFi6mfO .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-t5rkFi6mfO .carousel-indicators li::after,
.cid-t5rkFi6mfO .carousel-indicators li::before {
  content: none;
}
.cid-t5rkFi6mfO .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-t5rkFi6mfO .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-t5rkFi6mfO .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-t5rkFi6mfO .carousel-indicators {
    display: none;
  }
}
.cid-t5rkFi6mfO .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-t5rkFi6mfO .carousel-inner > .active {
  display: block;
}
.cid-t5rkFi6mfO .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t5rkFi6mfO .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t5rkFi6mfO .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-t5rkFi6mfO .carousel-control,
  .cid-t5rkFi6mfO .carousel-indicators,
  .cid-t5rkFi6mfO .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-t5rkFi6mfO .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-t5rkFi6mfO .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-t5rkFi6mfO .carousel-indicators .active,
.cid-t5rkFi6mfO .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-t5rkFi6mfO .carousel-indicators .active {
  background: #fff;
}
.cid-t5rkFi6mfO .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-t5rkFi6mfO .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-t5rkFi6mfO .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-t5rkFi6mfO .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-t5rkFi6mfO .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-t5rkFi6mfO .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-t5rkFi6mfO .carousel {
  width: 100%;
}
.cid-t5rkFi6mfO .modal-backdrop.in {
  opacity: 0.8;
}
.cid-t5rkFi6mfO .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-t5rkFi6mfO .modal.fade .modal-dialog,
.cid-t5rkFi6mfO .modal.in .modal-dialog {
  transform: none;
}
.cid-t5rkFi6mfO .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-t5rkFi6mfO H6 {
  text-align: center;
}
.cid-t5rm8Lfp01 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #2299aa;
}
.cid-t5rm8Lfp01 .mbr-fallback-image.disabled {
  display: none;
}
.cid-t5rm8Lfp01 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t5rm8Lfp01 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-t5rm8Lfp01 .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-t5rm8Lfp01 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-t5rm8Lfp01 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-t5rm8Lfp01 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-t5rm8Lfp01 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-t5rm8Lfp01 .carousel-control,
.cid-t5rm8Lfp01 .close {
  background: #1b1b1b;
}
.cid-t5rm8Lfp01 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-t5rm8Lfp01 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-t5rm8Lfp01 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-t5rm8Lfp01 .carousel-control-next span {
  margin-left: 5px;
}
.cid-t5rm8Lfp01 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-t5rm8Lfp01 .close::before {
  content: '\e91a';
}
.cid-t5rm8Lfp01 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-t5rm8Lfp01 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-t5rm8Lfp01 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t5rm8Lfp01 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-t5rm8Lfp01 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-t5rm8Lfp01 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-t5rm8Lfp01 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-t5rm8Lfp01 .carousel-indicators li.active,
.cid-t5rm8Lfp01 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-t5rm8Lfp01 .carousel-indicators li::after,
.cid-t5rm8Lfp01 .carousel-indicators li::before {
  content: none;
}
.cid-t5rm8Lfp01 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-t5rm8Lfp01 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-t5rm8Lfp01 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-t5rm8Lfp01 .carousel-indicators {
    display: none;
  }
}
.cid-t5rm8Lfp01 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-t5rm8Lfp01 .carousel-inner > .active {
  display: block;
}
.cid-t5rm8Lfp01 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t5rm8Lfp01 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t5rm8Lfp01 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-t5rm8Lfp01 .carousel-control,
  .cid-t5rm8Lfp01 .carousel-indicators,
  .cid-t5rm8Lfp01 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-t5rm8Lfp01 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-t5rm8Lfp01 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-t5rm8Lfp01 .carousel-indicators .active,
.cid-t5rm8Lfp01 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-t5rm8Lfp01 .carousel-indicators .active {
  background: #fff;
}
.cid-t5rm8Lfp01 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-t5rm8Lfp01 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-t5rm8Lfp01 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-t5rm8Lfp01 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-t5rm8Lfp01 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-t5rm8Lfp01 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-t5rm8Lfp01 .carousel {
  width: 100%;
}
.cid-t5rm8Lfp01 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-t5rm8Lfp01 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-t5rm8Lfp01 .modal.fade .modal-dialog,
.cid-t5rm8Lfp01 .modal.in .modal-dialog {
  transform: none;
}
.cid-t5rm8Lfp01 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-t5rm8Lfp01 H6 {
  text-align: center;
}
.cid-t5rKuaByF1 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background13.jpg");
}
.cid-t5rKuaByF1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-t5rKuaByF1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t5rKuaByF1 .mbr-text,
.cid-t5rKuaByF1 .mbr-section-btn {
  color: #000000;
}
.cid-sYHlaANGka {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/mbr-1920x1301.jpg");
}
.cid-sYHlaANGka .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sYHlaANGka .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sYHlaANGka .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sYHlaANGka .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 1rem;
}
.cid-sYHlaANGka .media-container-row .foot-menu li {
  padding: 0 1.5rem 1rem 1.5rem;
}
.cid-sYHlaANGka .media-container-row .foot-menu li:hover {
  color: #3e97d1;
}
.cid-sYHlaANGka .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sYHlaANGka .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sYHlaANGka .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sYHlaANGka .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sYHlaANGka .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sYHlaANGka .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sYHlaANGka .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sYHlaANGka .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sYHlaANGka .media-container-row .row-copirayt p {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sYHlaANGka .foot-menu {
    display: flex;
    flex-direction: column;
  }
}
.cid-sYHlaANGka .media-container-row .mbr-text {
  color: #c8c8c8;
}
