.btn {
  border-width: 2px;
}
body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3.8rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 4.75rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.0625rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-7 {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- 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: 3.04rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.66rem;
    font-size: calc( 1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.68rem;
    font-size: calc( 0.9475rem + (0.85 - 0.9475) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.9475rem + (0.85 - 0.9475) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    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))));
  }
  .display-7 {
    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))));
  }
}
/* 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: #4479d9 !important;
}
.bg-success {
  background-color: #365c9a !important;
}
.bg-info {
  background-color: #e96188 !important;
}
.bg-warning {
  background-color: #fac769 !important;
}
.bg-danger {
  background-color: #b2ccd2 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #4479d9 !important;
  border-color: #4479d9 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #2150a5 !important;
  border-color: #2150a5 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2150a5 !important;
  border-color: #2150a5 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ca4336 !important;
  border-color: #ca4336 !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: #862c23 !important;
  border-color: #862c23 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #862c23 !important;
  border-color: #862c23 !important;
}
.btn-info,
.btn-info:active {
  background-color: #e96188 !important;
  border-color: #e96188 !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: #d61e52 !important;
  border-color: #d61e52 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #d61e52 !important;
  border-color: #d61e52 !important;
}
.btn-success,
.btn-success:active {
  background-color: #365c9a !important;
  border-color: #365c9a !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: #1f365a !important;
  border-color: #1f365a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #1f365a !important;
  border-color: #1f365a !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #fac769 !important;
  border-color: #fac769 !important;
  color: #614003 !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: #f7a815 !important;
  border-color: #f7a815 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614003 !important;
  background-color: #f7a815 !important;
  border-color: #f7a815 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #b2ccd2 !important;
  border-color: #b2ccd2 !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: #7ba8b2 !important;
  border-color: #7ba8b2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #7ba8b2 !important;
  border-color: #7ba8b2 !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: #4479d9;
  color: #4479d9;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2150a5 !important;
  background-color: transparent!important;
  border-color: #2150a5 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #4479d9 !important;
  border-color: #4479d9 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ca4336;
  color: #ca4336;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #862c23 !important;
  background-color: transparent!important;
  border-color: #862c23 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ca4336 !important;
  border-color: #ca4336 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #e96188;
  color: #e96188;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #d61e52 !important;
  background-color: transparent!important;
  border-color: #d61e52 !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #e96188 !important;
  border-color: #e96188 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #365c9a;
  color: #365c9a;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #1f365a !important;
  background-color: transparent!important;
  border-color: #1f365a !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #365c9a !important;
  border-color: #365c9a !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #fac769;
  color: #fac769;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #f7a815 !important;
  background-color: transparent!important;
  border-color: #f7a815 !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614003 !important;
  background-color: #fac769 !important;
  border-color: #fac769 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #b2ccd2;
  color: #b2ccd2;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #7ba8b2 !important;
  background-color: transparent!important;
  border-color: #7ba8b2 !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b2ccd2 !important;
  border-color: #b2ccd2 !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: #4479d9 !important;
}
.text-secondary {
  color: #ca4336 !important;
}
.text-success {
  color: #365c9a !important;
}
.text-info {
  color: #e96188 !important;
}
.text-warning {
  color: #fac769 !important;
}
.text-danger {
  color: #b2ccd2 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #1f4a98 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #7a2820 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #1c2f4e !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #c81c4d !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #f5a208 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #72a1ac !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: #4479d9;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #e96188;
}
.alert-warning {
  background-color: #fac769;
}
.alert-danger {
  background-color: #b2ccd2;
}
.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: #4479d9;
  border-color: #4479d9;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #4479d9;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #eef2fb;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #7e9ed2;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.0625rem;
}
.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: #4479d9 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.0625rem;
}
blockquote {
  border-color: #4479d9;
}
/* 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: #4479d9;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #4479d9;
}
.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: #4479d9;
  border-bottom-color: #4479d9;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #4479d9 !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: #ca4336 !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='%234479d9' %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-rzBdwvh61V .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  color: #4479d9;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 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-rzBdwvh61V .nav-item,
.cid-rzBdwvh61V .nav-link,
.cid-rzBdwvh61V .navbar-caption {
  font-weight: normal;
}
.cid-rzBdwvh61V .nav-item:focus,
.cid-rzBdwvh61V .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rzBdwvh61V .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rzBdwvh61V .nav-item .nav-link {
    position: relative;
  }
  .cid-rzBdwvh61V .nav-item .nav-link:before {
    content: "";
    position: absolute;
    z-index: -2;
    left: 0;
    right: 100%;
    bottom: -0.2em;
    background: #4479d9;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .cid-rzBdwvh61V .nav-item .nav-link:hover::before {
    right: 0;
  }
  .cid-rzBdwvh61V .nav-item.open .nav-link::before {
    right: 1.667em;
  }
}
.cid-rzBdwvh61V .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-rzBdwvh61V .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rzBdwvh61V .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rzBdwvh61V .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rzBdwvh61V .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rzBdwvh61V .dropdown .dropdown-menu .dropdown-item .soc-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-rzBdwvh61V .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rzBdwvh61V .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rzBdwvh61V .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #000000;
}
.cid-rzBdwvh61V .navbar.opened {
  transition: all .3s;
  background: #000000 !important;
}
.cid-rzBdwvh61V .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rzBdwvh61V .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rzBdwvh61V .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rzBdwvh61V .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rzBdwvh61V .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 8rem);
  }
}
.cid-rzBdwvh61V .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rzBdwvh61V .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rzBdwvh61V .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rzBdwvh61V .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-rzBdwvh61V .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rzBdwvh61V .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rzBdwvh61V .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rzBdwvh61V .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rzBdwvh61V .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rzBdwvh61V .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rzBdwvh61V .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rzBdwvh61V .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rzBdwvh61V .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-rzBdwvh61V .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rzBdwvh61V .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rzBdwvh61V .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rzBdwvh61V .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rzBdwvh61V .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rzBdwvh61V .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rzBdwvh61V .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-rzBdwvh61V .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rzBdwvh61V .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rzBdwvh61V .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-rzBdwvh61V .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rzBdwvh61V .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rzBdwvh61V .dropdown-item.active,
.cid-rzBdwvh61V .dropdown-item:active {
  background-color: transparent;
}
.cid-rzBdwvh61V .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rzBdwvh61V .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rzBdwvh61V .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rzBdwvh61V .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:before {
  left: 1.667em;
  bottom: 0.467em;
}
.cid-rzBdwvh61V .nav-dropdown .link.dropdown-toggle[aria-expanded="true"]:hover:before {
  right: 1.667em;
}
.cid-rzBdwvh61V .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-rzBdwvh61V .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rzBdwvh61V .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rzBdwvh61V ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rzBdwvh61V .navbar-buttons {
  text-align: center;
}
.cid-rzBdwvh61V button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rzBdwvh61V button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rzBdwvh61V button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rzBdwvh61V button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rzBdwvh61V button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rzBdwvh61V button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rzBdwvh61V nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rzBdwvh61V nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rzBdwvh61V nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rzBdwvh61V nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rzBdwvh61V .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rzBdwvh61V a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rzBdwvh61V .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #e96188;
  display: inline-flex;
}
.cid-rzBdwvh61V .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-rzBdwvh61V .soc-item {
  margin: .5rem .3rem;
}
.cid-rzBdwvh61V .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rzBdwvh61V a.nav-link,
.cid-rzBdwvh61V a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-rzBdwvh61V a.nav-link .mbr-iconfont-btn,
.cid-rzBdwvh61V a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-rzBdwvh61V a.nav-link:hover .mbr-iconfont-btn,
.cid-rzBdwvh61V a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-rzBdwvh61V a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rzBdwvh61V .navbar {
    height: 77px;
  }
  .cid-rzBdwvh61V .navbar.opened {
    height: auto;
  }
  .cid-rzBdwvh61V .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sBKQNptPrl {
  padding-top: 120px;
  background-image: url("../../../assets/images/mbr-1920x1202.jpg");
}
.cid-sBKQNptPrl .container {
  margin-bottom: 15%;
}
.cid-sBKQNptPrl .content-container .btn-bgr {
  z-index: 0;
}
.cid-sBKQNptPrl .container-boxes {
  padding-bottom: 90px;
  position: relative;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: stretch;
  align-items: stretch;
  background-color: #000000;
}
.cid-sBKQNptPrl .icon-block-top span {
  background-color: #4479d9;
  padding: 1.5rem;
  position: absolute;
  border-radius: 50%;
  margin-top: -2.5rem;
  top: 0;
  font-size: 1.8rem;
  width: 78px;
  height: 78px;
}
.cid-sBKQNptPrl .box-item {
  position: relative;
  box-shadow: #d2d2d2 0px 0px 15px;
  border-radius: 3px;
  margin-right: 1.5rem;
  width: 29%;
  padding: 2.5rem;
}
.cid-sBKQNptPrl .box-item:first-child {
  background-color: #fafafa;
  margin-top: -150px;
}
.cid-sBKQNptPrl .box-item:nth-child(2) {
  background-color: #efefef;
}
.cid-sBKQNptPrl .box-item:last-child {
  background-color: #fafafa;
  margin-right: 0;
}
.cid-sBKQNptPrl .box-item-text,
.cid-sBKQNptPrl .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-sBKQNptPrl .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.cid-sBKQNptPrl .box-list li {
  border-bottom: 1px solid;
  padding: 10px 0 5px;
}
.cid-sBKQNptPrl .box-list li:last-child {
  border-bottom: none;
}
.cid-sBKQNptPrl .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-sBKQNptPrl .media-content {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
@media (min-width: 992px) {
  .cid-sBKQNptPrl .box-item {
    margin-top: -150px;
    max-width: 400px;
  }
}
@media (max-width: 767px) {
  .cid-sBKQNptPrl .p-descr {
    margin-bottom: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sBKQNptPrl .box-item {
    margin-bottom: 4rem;
    margin-right: 0;
    margin-top: 0;
    width: 90%;
  }
  .cid-sBKQNptPrl .box-item:last-child {
    margin-bottom: 0;
  }
  .cid-sBKQNptPrl .content-container {
    -webkit-flex-basis: 90%;
    flex-basis: 90%;
  }
  .cid-sBKQNptPrl .box-item:first-child {
    margin-top: -100px;
  }
}
.cid-sBKQNptPrl .mbr-text {
  color: #efefef;
}
.cid-sBKQNptPrl H1 {
  color: #ffffff;
}
.cid-sBKQDg3Cfx {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #000000;
}
.cid-sBKQDg3Cfx .text-content .btn-bgr {
  z-index: 0;
}
.cid-sBKQDg3Cfx .mbr-overlay {
  background: #000000;
}
.cid-sBKQDg3Cfx .text-content {
  padding: 2rem 0rem;
  background-color: #fafafa;
}
.cid-sBKQDg3Cfx .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-sBKQDg3Cfx .media-container-row {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .cid-sBKQDg3Cfx .mbr-text {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-sBKQDg3Cfx .text-content {
    margin-bottom: 2rem;
  }
}
.cid-qIp0qVn2Fg {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/redd-angelo-32872-1200x800.jpg");
}
.cid-qIp0qVn2Fg .row-element,
.cid-qIp0qVn2Fg .image-element {
  padding: 0;
}
.cid-qIp0qVn2Fg .image-element {
  display: flex;
  justify-content: center;
}
.cid-qIp0qVn2Fg .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qIp0qVn2Fg .text-content {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-qIp0qVn2Fg .text-content {
    padding: 2rem 1rem;
  }
  .cid-qIp0qVn2Fg .mbr-title,
  .cid-qIp0qVn2Fg .mbr-text,
  .cid-qIp0qVn2Fg .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qIp0qVn2Fg .mbr-text,
.cid-qIp0qVn2Fg .mbr-section-btn {
  color: #000000;
}
.cid-qIp0qVn2Fg .mbr-title {
  color: #e96188;
}
.cid-sBKUVGVNr7 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sBKUVGVNr7 img,
.cid-sBKUVGVNr7 .item-img {
  width: 100%;
}
.cid-sBKUVGVNr7 .item:focus,
.cid-sBKUVGVNr7 span:focus {
  outline: none;
}
.cid-sBKUVGVNr7 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sBKUVGVNr7 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sBKUVGVNr7 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sBKUVGVNr7 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sBKUVGVNr7 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sBKUVGVNr7 .mbr-section-title {
  color: #232323;
}
.cid-sBKUVGVNr7 .mbr-text,
.cid-sBKUVGVNr7 .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-sBKUVGVNr7 .item-title {
  text-align: center;
  color: #ffffff;
}
.cid-sBKUVGVNr7 .item-subtitle {
  text-align: center;
}
.cid-qIoZwj9I6L {
  padding-top: 120px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/mbr-1920x800.jpg");
}
.cid-qIoZwj9I6L .title {
  position: relative;
  display: flex;
  align-items: center;
}
.cid-qIoZwj9I6L .title .num {
  flex-shrink: 0;
  position: absolute;
  z-index: 0;
  font-size: 4rem;
  width: 100%;
}
.cid-qIoZwj9I6L .title .card-title {
  z-index: 1;
  width: 100%;
}
.cid-qIoZwj9I6L .card-text {
  margin-top: 2rem;
  color: #ffffff;
}
.cid-qIoZwj9I6L .card-box {
  margin-bottom: 1rem;
}
.cid-qIoZwj9I6L .num {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-qIoZwj9I6L .num,
  .cid-qIoZwj9I6L .card-title,
  .cid-qIoZwj9I6L .mbr-text,
  .cid-qIoZwj9I6L .mbr-title,
  .cid-qIoZwj9I6L .mbr-section-subtitle,
  .cid-qIoZwj9I6L .mbr-section-btn {
    text-align: center !important;
  }
  .cid-qIoZwj9I6L .content-column {
    margin-bottom: 2rem;
  }
}
.cid-qIoZwj9I6L .mbr-section-text,
.cid-qIoZwj9I6L .mbr-section-btn {
  color: #ffffff;
}
.cid-qIoZwj9I6L .card-title,
.cid-qIoZwj9I6L .card-img {
  color: #ffffff;
}
.cid-sBL2CS6HYX {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-2-1920x1280.jpg");
}
.cid-sBL2CS6HYX .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sBL2CS6HYX .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-sBL2CS6HYX .carousel-item .wrap-img {
  text-align: center;
}
.cid-sBL2CS6HYX .carousel-item .wrap-img img {
  max-height: 150px;
  width: auto;
  max-width: 100%;
}
.cid-sBL2CS6HYX .carousel-control {
  transition: all .3s;
  opacity: 1;
  background-color: #444444;
  color: #ffffff;
  position: absolute;
  width: 40px;
  height: 40px;
  top: 26%;
  margin-top: 2rem;
  border-width: 1px;
}
.cid-sBL2CS6HYX .carousel-control.carousel-control-prev {
  left: 29px;
}
.cid-sBL2CS6HYX .carousel-control.carousel-control-prev:hover {
  left: 15px;
}
.cid-sBL2CS6HYX .carousel-control.carousel-control-next {
  right: 29px;
}
.cid-sBL2CS6HYX .carousel-control.carousel-control-next:hover {
  right: 15px;
}
.cid-sBL2CS6HYX .carousel-control .mbr-iconfont {
  font-size: 1rem;
}
.cid-sBL2CS6HYX .carousel-control:hover {
  background-color: #4479d9;
}
@media (max-width: 767px) {
  .cid-sBL2CS6HYX .carousel-control {
    display: none;
  }
  .cid-sBL2CS6HYX .mbr-section-title {
    padding-bottom: 0;
  }
  .cid-sBL2CS6HYX .slider-clients {
    padding: 2rem 1rem;
  }
}
.cid-sBL2CS6HYX .cloneditem-1,
.cid-sBL2CS6HYX .cloneditem-2,
.cid-sBL2CS6HYX .cloneditem-3,
.cid-sBL2CS6HYX .cloneditem-4,
.cid-sBL2CS6HYX .cloneditem-5 {
  display: none;
}
.cid-sBL2CS6HYX .col-lg-15 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  -webkit-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  position: relative;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px;
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sBL2CS6HYX .col-lg-15 {
    -ms-flex: 0 0 20%;
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    width: 20%;
  }
  .cid-sBL2CS6HYX .carousel-inner.slides2 > .carousel-item.active.carousel-item-right,
  .cid-sBL2CS6HYX .carousel-inner.slides2 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);
  }
  .cid-sBL2CS6HYX .carousel-inner.slides2 > .carousel-item.active.carousel-item-left,
  .cid-sBL2CS6HYX .carousel-inner.slides2 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
  .cid-sBL2CS6HYX .carousel-inner.slides2 > .carousel-item.carousel-item-left,
  .cid-sBL2CS6HYX .carousel-inner.slides2 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-sBL2CS6HYX .carousel-inner.slides2 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-sBL2CS6HYX .carousel-inner.slides2 .cloneditem-1,
  .cid-sBL2CS6HYX .carousel-inner.slides2 .cloneditem-2,
  .cid-sBL2CS6HYX .carousel-inner.slides2 .cloneditem-3 {
    display: block;
  }
  .cid-sBL2CS6HYX .carousel-inner.slides3 > .carousel-item.active.carousel-item-right,
  .cid-sBL2CS6HYX .carousel-inner.slides3 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(33.333333%, 0, 0);
    transform: translate3d(33.333333%, 0, 0);
  }
  .cid-sBL2CS6HYX .carousel-inner.slides3 > .carousel-item.active.carousel-item-left,
  .cid-sBL2CS6HYX .carousel-inner.slides3 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-33.333333%, 0, 0);
    transform: translate3d(-33.333333%, 0, 0);
  }
  .cid-sBL2CS6HYX .carousel-inner.slides3 > .carousel-item.carousel-item-left,
  .cid-sBL2CS6HYX .carousel-inner.slides3 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-sBL2CS6HYX .carousel-inner.slides3 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-sBL2CS6HYX .carousel-inner.slides3 .cloneditem-1,
  .cid-sBL2CS6HYX .carousel-inner.slides3 .cloneditem-2,
  .cid-sBL2CS6HYX .carousel-inner.slides3 .cloneditem-3 {
    display: block;
  }
  .cid-sBL2CS6HYX .carousel-inner.slides4 > .carousel-item.active.carousel-item-right,
  .cid-sBL2CS6HYX .carousel-inner.slides4 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(25%, 0, 0);
    transform: translate3d(25%, 0, 0);
  }
  .cid-sBL2CS6HYX .carousel-inner.slides4 > .carousel-item.active.carousel-item-left,
  .cid-sBL2CS6HYX .carousel-inner.slides4 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-25%, 0, 0);
    transform: translate3d(-25%, 0, 0);
  }
  .cid-sBL2CS6HYX .carousel-inner.slides4 > .carousel-item.carousel-item-left,
  .cid-sBL2CS6HYX .carousel-inner.slides4 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-sBL2CS6HYX .carousel-inner.slides4 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-sBL2CS6HYX .carousel-inner.slides4 .cloneditem-1,
  .cid-sBL2CS6HYX .carousel-inner.slides4 .cloneditem-2,
  .cid-sBL2CS6HYX .carousel-inner.slides4 .cloneditem-3 {
    display: block;
  }
  .cid-sBL2CS6HYX .carousel-inner.slides5 > .carousel-item.active.carousel-item-right,
  .cid-sBL2CS6HYX .carousel-inner.slides5 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0);
  }
  .cid-sBL2CS6HYX .carousel-inner.slides5 > .carousel-item.active.carousel-item-left,
  .cid-sBL2CS6HYX .carousel-inner.slides5 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-20%, 0, 0);
    transform: translate3d(-20%, 0, 0);
  }
  .cid-sBL2CS6HYX .carousel-inner.slides5 > .carousel-item.carousel-item-left,
  .cid-sBL2CS6HYX .carousel-inner.slides5 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-sBL2CS6HYX .carousel-inner.slides5 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-sBL2CS6HYX .carousel-inner.slides5 .cloneditem-1,
  .cid-sBL2CS6HYX .carousel-inner.slides5 .cloneditem-2,
  .cid-sBL2CS6HYX .carousel-inner.slides5 .cloneditem-3,
  .cid-sBL2CS6HYX .carousel-inner.slides5 .cloneditem-4 {
    display: block;
  }
  .cid-sBL2CS6HYX .carousel-inner.slides6 > .carousel-item.active.carousel-item-right,
  .cid-sBL2CS6HYX .carousel-inner.slides6 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(16.666667%, 0, 0);
    transform: translate3d(16.666667%, 0, 0);
  }
  .cid-sBL2CS6HYX .carousel-inner.slides6 > .carousel-item.active.carousel-item-left,
  .cid-sBL2CS6HYX .carousel-inner.slides6 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-16.666667%, 0, 0);
    transform: translate3d(-16.666667%, 0, 0);
  }
  .cid-sBL2CS6HYX .carousel-inner.slides6 > .carousel-item.carousel-item-left,
  .cid-sBL2CS6HYX .carousel-inner.slides6 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-sBL2CS6HYX .carousel-inner.slides6 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-sBL2CS6HYX .carousel-inner.slides6 .cloneditem-1,
  .cid-sBL2CS6HYX .carousel-inner.slides6 .cloneditem-2,
  .cid-sBL2CS6HYX .carousel-inner.slides6 .cloneditem-3,
  .cid-sBL2CS6HYX .carousel-inner.slides6 .cloneditem-4,
  .cid-sBL2CS6HYX .carousel-inner.slides6 .cloneditem-5 {
    display: block;
  }
}
.cid-sBL2CS6HYX .mbr-section-title {
  margin: 0;
}
.cid-sBL2CS6HYX .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-sBL2CS6HYX .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-sBL2CS6HYX .slider-clients {
  background: rgba(255, 255, 255, 0.8) none repeat scroll 0 0;
  outline: 1px solid rgba(0, 0, 0, 0.2);
  outline-offset: -15px;
  padding: 65px 50px;
  position: relative;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sBL2CS6HYX .slider-clients {
    outline: 15px solid rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.2);
  }
  .cid-sBL2CS6HYX .carousel-control-prev {
    left: 15px !important;
  }
  .cid-sBL2CS6HYX .carousel-control-prev:hover {
    left: 0 !important;
  }
  .cid-sBL2CS6HYX .carousel-control-next {
    right: 15px !important;
  }
  .cid-sBL2CS6HYX .carousel-control-next:hover {
    right: 0 !important;
  }
}
.cid-sBLsIvLR2a {
  overflow: hidden !important;
  padding-top: 60px;
  padding-bottom: 60px;
  background: linear-gradient(to right, #000000 0%, #000000 60%, #4479d9 60%, #4479d9 100%);
}
.cid-sBLsIvLR2a .animated-element {
  color: #efefef;
}
.cid-sBLsIvLR2a .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (min-width: 992px) {
  .cid-sBLsIvLR2a .img-block {
    padding-left: 2rem;
  }
}
@media (max-width: 768px) {
  .cid-sBLsIvLR2a {
    background: #4479d9;
  }
}
.cid-sBLsIvLR2a .mbr-section-subtitle {
  color: #cccccc;
}
.cid-sBLsIvLR2a .mbr-text,
.cid-sBLsIvLR2a .mbr-section-btn {
  color: #efefef;
}
.cid-sBL1mZs7DK {
  overflow: hidden !important;
  padding-top: 30px;
  padding-bottom: 45px;
  background: linear-gradient(to right, #4479d9 0%, #4479d9 30%, #000000 30%, #000000 100%);
}
.cid-sBL1mZs7DK .animated-element {
  color: #efefef;
}
.cid-sBL1mZs7DK .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (min-width: 992px) {
  .cid-sBL1mZs7DK .img-block {
    padding-right: 2rem;
  }
}
@media (max-width: 768px) {
  .cid-sBL1mZs7DK {
    background: #000000;
  }
}
.cid-sBL1mZs7DK .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-sBL1mZs7DK .mbr-text,
.cid-sBL1mZs7DK .mbr-section-btn {
  color: #efefef;
  text-align: center;
}
.cid-sBL1mZs7DK .mbr-section-title {
  text-align: center;
}
.cid-sBKQwC4aLZ {
  background-image: url("../../../assets/images/mbr-1809x1018.jpg");
}
.cid-sBKQwC4aLZ .column-content {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #ffffff;
  width: 100%;
  float: right;
  position: relative;
}
.cid-sBKQwC4aLZ .text-content .btn-bgr {
  z-index: 0;
}
.cid-sBKQwC4aLZ .mbr-overlay {
  background: linear-gradient(#d6173f -10%, #00113e 75%);
}
.cid-sBKQwC4aLZ .container-full-width {
  position: relative;
}
.cid-sBKQwC4aLZ .text-content {
  width: 100%;
  padding: 0 30px;
  margin: 0 auto;
}
.cid-sBKQwC4aLZ .layer {
  display: none;
  height: 101%;
  position: absolute;
  right: 49.9%;
  top: 0;
  bottom: 0;
}
.cid-sBKQwC4aLZ .layer path {
  fill: #ffffff;
}
@media (min-width: 576px) {
  .cid-sBKQwC4aLZ .text-content {
    width: 540px;
  }
  .cid-sBKQwC4aLZ .column-content {
    width: 100%;
  }
  .cid-sBKQwC4aLZ .layer {
    display: none;
  }
}
@media (min-width: 768px) {
  .cid-sBKQwC4aLZ .text-content {
    width: 720px;
  }
}
@media (min-width: 992px) {
  .cid-sBKQwC4aLZ .text-content {
    width: 480px;
    margin: 0;
  }
  .cid-sBKQwC4aLZ .column-content {
    width: 50%;
  }
  .cid-sBKQwC4aLZ .layer {
    display: block;
  }
}
@media (min-width: 1200px) {
  .cid-sBKQwC4aLZ .text-content {
    width: 570px;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sBKQwC4aLZ .container-full-width .layer {
    right: 2.6rem;
    height: 33rem;
  }
  .cid-sBKQwC4aLZ .column-content {
    height: 33rem;
  }
}
.cid-sBKQwC4aLZ .mbr-text,
.cid-sBKQwC4aLZ .mbr-section-btn {
  color: #767676;
}
.cid-qIpcXer6tV {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/mbr-3-1920x1280.jpg");
}
.cid-qIpcXer6tV .mbr-section-title {
  text-align: center;
}
.cid-qIpcXer6tV .mbr-section-subtitle {
  text-align: center;
}
.cid-sBL2FFivXo {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sBKPVnLCNR {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-sBKPVnLCNR .content {
    text-align: center;
  }
  .cid-sBKPVnLCNR .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sBKPVnLCNR .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-sBKPVnLCNR .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sBKPVnLCNR .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-sBKPVnLCNR .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sBKPVnLCNR .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-sBKPVnLCNR .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-sBKPVnLCNR .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-sBKPVnLCNR .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sBKPVnLCNR .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sBKPVnLCNR .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sBKPVnLCNR .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-sBKPVnLCNR P {
  text-align: center;
}
.cid-sBKPVnLCNR .copyright > p {
  text-align: center;
}
.cid-sBKPVnLCNR H5 {
  text-align: center;
}
.cid-sBLukZwwIe {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-sBLukZwwIe .mbr-section-subtitle {
  color: #767676;
}
.cid-sBLukZwwIe ul.list-inline {
  margin: 0;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sBLukZwwIe ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-sBLukZwwIe ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-sBLukZwwIe ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-sBLukZwwIe .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-sBLukZwwIe .mbr-section-title {
  color: #bbbbbb;
}
