@import url(https://fonts.googleapis.com/css?family=Montserrat:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap);





body {
  font-family: Montserrat;
}
.display-1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
}
.display-1 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
}
.display-2 > .mbr-iconfont {
  font-size: 2.88rem;
}
.display-4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
}
.display-5 > .mbr-iconfont {
  font-size: 1.92rem;
}
.display-7 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.6rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((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.4 * (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: 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.8rem 2rem;
  border-radius: 0.25rem;
}
.btn-sm {
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
}
.btn-md {
  padding: 0.8rem 2rem;
  border-radius: 0.25rem;
}
.btn-lg {
  padding: 0.8rem 2rem;
  border-radius: 0.25rem;
}
.bg-primary {
  background-color: #ff4f7b !important;
}
.bg-success {
  background-color: #1dc9cb !important;
}
.bg-info {
  background-color: #188ef4 !important;
}
.bg-warning {
  background-color: #c1c1c1 !important;
}
.bg-danger {
  background-color: #444444 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #ff4f7b !important;
  border-color: #ff4f7b !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #ff0242 !important;
  border-color: #ff0242 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #ff0242 !important;
  border-color: #ff0242 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #2bdc9d !important;
  border-color: #2bdc9d !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #1aa071 !important;
  border-color: #1aa071 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #1aa071 !important;
  border-color: #1aa071 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #188ef4 !important;
  border-color: #188ef4 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #0966b7 !important;
  border-color: #0966b7 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #0966b7 !important;
  border-color: #0966b7 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #1dc9cb !important;
  border-color: #1dc9cb !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #138788 !important;
  border-color: #138788 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #138788 !important;
  border-color: #138788 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #9b9b9b !important;
  border-color: #9b9b9b !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #9b9b9b !important;
  border-color: #9b9b9b !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #444444 !important;
  border-color: #444444 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  transition: all .5s;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  transition: all .5s;
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none !important;
  border-color: #e8003a !important;
  color: #e8003a !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #ff4f7b !important;
  border-color: #ff4f7b !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff4f7b !important;
  border-color: #ff4f7b !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none !important;
  border-color: #178a61 !important;
  color: #178a61 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #2bdc9d !important;
  border-color: #2bdc9d !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #2bdc9d !important;
  border-color: #2bdc9d !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none !important;
  border-color: #08589e !important;
  color: #08589e !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #188ef4 !important;
  border-color: #188ef4 !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #188ef4 !important;
  border-color: #188ef4 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none !important;
  border-color: #107172 !important;
  color: #107172 !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #1dc9cb !important;
  border-color: #1dc9cb !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #1dc9cb !important;
  border-color: #1dc9cb !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none !important;
  border-color: #8e8e8e !important;
  color: #8e8e8e !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !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,
.btn-danger-outline.active {
  background: none !important;
  border-color: #111111 !important;
  color: #111111 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #444444 !important;
  border-color: #444444 !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,
.btn-black-outline.active {
  background: none !important;
  border-color: #000000 !important;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #ff4f7b !important;
}
.text-secondary {
  color: #2bdc9d !important;
}
.text-success {
  color: #1dc9cb !important;
}
.text-info {
  color: #188ef4 !important;
}
.text-warning {
  color: #c1c1c1 !important;
}
.text-danger {
  color: #444444 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #e8003a !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #178a61 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #107172 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #08589e !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #8e8e8e !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #111111 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #1dc9cb;
}
.alert-info {
  background-color: #188ef4;
}
.alert-warning {
  background-color: #c1c1c1;
}
.alert-danger {
  background-color: #444444;
}
.mbr-section-btn a.btn:hover,
.mbr-section-btn a.btn:focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ff4f7b;
  border-color: #ff4f7b;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ff4f7b;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #bef5f6;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #dbedfd;
}
.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_wraper {
  opacity: 0 !important;
}
.mbr-arrow-up a {
  width: 61px;
  height: 61px;
}
#scrollToTop a {
  background: #188ef4;
}
#scrollToTop a i:before {
  content: '';
  position: absolute;
  height: 40%;
  top: 25%;
  background: #ffffff;
  width: 3%;
  left: calc(50% - 1px);
}
#scrollToTop a i:after {
  content: '';
  position: absolute;
  display: block;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  width: 40%;
  height: 40%;
  left: 30%;
  bottom: 30%;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.mbr-arrow i {
  color: #188ef4;
}
.form-control {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
blockquote {
  border-color: #ff4f7b;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Social block */
.btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: 2px solid #c0a375;
  border-color: #ff4f7b;
  color: #232323;
  cursor: pointer;
}
.btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.btn-social:hover {
  color: #fff;
  background: #ff4f7b;
}
.btn-social + .btn {
  margin-left: .1rem;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ff4f7b;
  color: #ffffff;
}
.jq-number__spin {
  background-color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #ff4f7b;
  border-bottom-color: #ff4f7b;
}
.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: #ff4f7b !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #2bdc9d !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%;
}
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='%23ff4f7b' %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;
}
.cid-rM6WSY2gQR .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -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-rM6WSY2gQR .nav-item,
.cid-rM6WSY2gQR .nav-link,
.cid-rM6WSY2gQR .navbar-caption {
  font-weight: normal;
}
.cid-rM6WSY2gQR .nav-item:focus,
.cid-rM6WSY2gQR .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rM6WSY2gQR .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-rM6WSY2gQR .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  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-rM6WSY2gQR .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rM6WSY2gQR .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rM6WSY2gQR .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-rM6WSY2gQR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rM6WSY2gQR .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-rM6WSY2gQR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rM6WSY2gQR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rM6WSY2gQR .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #000000;
}
.cid-rM6WSY2gQR .navbar.opened {
  transition: all .3s;
  background: #000000 !important;
}
.cid-rM6WSY2gQR .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-rM6WSY2gQR .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rM6WSY2gQR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rM6WSY2gQR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rM6WSY2gQR .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rM6WSY2gQR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rM6WSY2gQR .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-rM6WSY2gQR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rM6WSY2gQR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rM6WSY2gQR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rM6WSY2gQR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rM6WSY2gQR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rM6WSY2gQR .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rM6WSY2gQR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rM6WSY2gQR .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-rM6WSY2gQR .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rM6WSY2gQR .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rM6WSY2gQR .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rM6WSY2gQR .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rM6WSY2gQR .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rM6WSY2gQR .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rM6WSY2gQR .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-rM6WSY2gQR .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rM6WSY2gQR .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rM6WSY2gQR .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-rM6WSY2gQR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rM6WSY2gQR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rM6WSY2gQR .dropdown-item.active,
.cid-rM6WSY2gQR .dropdown-item:active {
  background-color: transparent;
}
.cid-rM6WSY2gQR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rM6WSY2gQR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rM6WSY2gQR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-rM6WSY2gQR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rM6WSY2gQR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rM6WSY2gQR ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rM6WSY2gQR .navbar-buttons {
  text-align: center;
}
.cid-rM6WSY2gQR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rM6WSY2gQR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rM6WSY2gQR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rM6WSY2gQR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rM6WSY2gQR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rM6WSY2gQR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rM6WSY2gQR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rM6WSY2gQR nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rM6WSY2gQR nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rM6WSY2gQR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rM6WSY2gQR .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rM6WSY2gQR a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rM6WSY2gQR .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-rM6WSY2gQR .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-rM6WSY2gQR .soc-item {
  margin: .5rem .3rem;
}
.cid-rM6WSY2gQR .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;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rM6WSY2gQR .navbar {
    height: 77px;
  }
  .cid-rM6WSY2gQR .navbar.opened {
    height: auto;
  }
  .cid-rM6WSY2gQR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rM700XZ7Zz {
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-rM700XZ7Zz .mbr-text,
.cid-rM700XZ7Zz .typed-text,
.cid-rM700XZ7Zz .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-rM700XZ7Zz .btn {
  margin-left: 4px !important;
}
.cid-rM700XZ7Zz .animated-element {
  color: #ffbc00;
}
.cid-rM700XZ7Zz .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #ffbc00;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-rM700XZ7Zz .mbr-section-subtitle {
  text-align: right;
}
.cid-rMv3I78wPh {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-rMv3I78wPh .content-slider {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-rMv3I78wPh .modal-body .close {
  background: #1b1b1b;
}
.cid-rMv3I78wPh .modal-body .close span {
  font-style: normal;
}
.cid-rMv3I78wPh .content-slider-wrap {
  width: 100%;
}
.cid-rMv3I78wPh .carousel-inner > .active,
.cid-rMv3I78wPh .carousel-inner > .next,
.cid-rMv3I78wPh .carousel-inner > .prev {
  display: -webkit-flex;
}
.cid-rMv3I78wPh .carousel-control .icon-next,
.cid-rMv3I78wPh .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-rMv3I78wPh .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-rMv3I78wPh .mbr-iconfont {
  color: black;
  font-size: 1.2rem!important;
  font-weight: 600;
}
@media (max-width: 767px) {
  .cid-rMv3I78wPh .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-rMv3I78wPh .content-slider-wrap {
    width: 100%!important;
  }
}
.cid-rMv3I78wPh .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-rMv3I78wPh .boxed-slider > div {
  position: relative;
}
.cid-rMv3I78wPh .container img {
  width: 100%;
}
.cid-rMv3I78wPh .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-rMv3I78wPh .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-rMv3I78wPh .mbr-table-cell {
  padding: 0;
}
.cid-rMv3I78wPh .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-rMv3I78wPh .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-align-items: center;
}
.cid-rMv3I78wPh .mbr-overlay {
  z-index: 1;
}
.cid-rMv3I78wPh .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-rMv3I78wPh .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 576px) {
  .cid-rMv3I78wPh .carousel-item .container {
    width: 100%;
  }
}
.cid-rMv3I78wPh .carousel-item-next.carousel-item-left,
.cid-rMv3I78wPh .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-rMv3I78wPh .active.carousel-item-right,
.cid-rMv3I78wPh .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-rMv3I78wPh .active.carousel-item-left,
.cid-rMv3I78wPh .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.cid-rMv3I78wPh .mbr-slider .carousel-control {
  top: 50%;
  width: 40px;
  height: 40px;
  margin-top: -1.5rem;
  font-size: 35px;
  border-radius: 6px;
  background-color: white;
  transition: all .3s;
}
.cid-rMv3I78wPh .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rMv3I78wPh .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rMv3I78wPh .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .cid-rMv3I78wPh .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-rMv3I78wPh .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-rMv3I78wPh .mbr-slider .carousel-indicators li {
  max-width: 15px;
  height: 10px;
  width: 10px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-rMv3I78wPh .mbr-slider .carousel-indicators li.active,
.cid-rMv3I78wPh .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-rMv3I78wPh .mbr-slider .carousel-indicators li::after,
.cid-rMv3I78wPh .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-rMv3I78wPh .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-rMv3I78wPh .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-rMv3I78wPh .mbr-slider > .container img {
  width: 100%;
}
.cid-rMv3I78wPh .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-rMv3I78wPh .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-rMv3I78wPh .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-rMv3I78wPh .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-rMv3I78wPh .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-rMv3I78wPh .carousel-item .container.container-slide {
  position: initial;
  width: auto;
  min-height: 0;
}
.cid-rMv3I78wPh .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-rMv3I78wPh .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-rMv3I78wPh .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-rMv3I78wPh .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-rMv3I78wPh .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-rMv3I78wPh .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-rMv3I78wPh .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-rMv3I78wPh .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}
.cid-rMv3I78wPh .carousel-inner {
  height: 100%;
}
.cid-rMv3I78wPh .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}
.cid-rMv3I78wPh .image_wrapper {
  height: 700px;
  width: 100%;
  position: relative;
  display: inline-block;
}
.cid-rMv3I78wPh .image_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-rMv3I78wPh .carousel-item .container-slide {
  text-align: center;
}
.cid-rNsD6YGNgJ {
  padding-top: 45px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/mbr-1-1920x1280.jpg");
}
.cid-rNsD6YGNgJ .mbr-overlay {
  background: #000000;
}
.cid-rNsD6YGNgJ H1 {
  text-align: center;
}
.cid-rM7iUf9Q3r {
  padding-top: 0px;
  background-color: #000000;
}
.cid-rM7iUf9Q3r .container {
  margin-bottom: 15%;
}
.cid-rM7iUf9Q3r .content-container .btn-bgr {
  z-index: 0;
}
.cid-rM7iUf9Q3r .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: #efefef;
}
.cid-rM7iUf9Q3r .icon-block-top span {
  background-color: #172eca;
  padding: 1.5rem;
  position: absolute;
  border-radius: 50%;
  margin-top: -2.5rem;
  top: 0;
  font-size: 1.8rem;
  width: 78px;
  height: 78px;
}
.cid-rM7iUf9Q3r .box-item {
  position: relative;
  box-shadow: #d2d2d2 0px 0px 15px;
  border-radius: 3px;
  margin-right: 1.5rem;
  width: 29%;
  padding: 2.5rem;
}
.cid-rM7iUf9Q3r .box-item:first-child {
  background-color: #ffffff;
  margin-top: -150px;
}
.cid-rM7iUf9Q3r .box-item:nth-child(2) {
  background-color: #ffffff;
}
.cid-rM7iUf9Q3r .box-item:last-child {
  background-color: #ffffff;
  margin-right: 0;
}
.cid-rM7iUf9Q3r .box-item-text,
.cid-rM7iUf9Q3r .mbr-section-btn {
  color: #8d97ad;
}
.cid-rM7iUf9Q3r .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.cid-rM7iUf9Q3r .box-list li {
  border-bottom: 1px solid;
  padding: 10px 0 5px;
}
.cid-rM7iUf9Q3r .box-list li:last-child {
  border-bottom: none;
}
.cid-rM7iUf9Q3r .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-rM7iUf9Q3r .media-content {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-rM7iUf9Q3r .mbr-section-btn {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}
.cid-rM7iUf9Q3r .mbr-section-btn > .btn-underline {
  padding: .5rem;
}
@media (min-width: 992px) {
  .cid-rM7iUf9Q3r .box-item {
    margin-top: -150px;
    max-width: 400px;
  }
}
@media (max-width: 767px) {
  .cid-rM7iUf9Q3r .p-descr {
    margin-bottom: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rM7iUf9Q3r .box-item {
    margin-bottom: 4rem;
    margin-right: 0;
    margin-top: 0;
    width: 90%;
  }
  .cid-rM7iUf9Q3r .box-item:last-child {
    margin-bottom: 0;
  }
  .cid-rM7iUf9Q3r .content-container {
    -webkit-flex-basis: 90%;
    flex-basis: 90%;
  }
  .cid-rM7iUf9Q3r .box-item:first-child {
    margin-top: -100px;
  }
}
.cid-rM7iUf9Q3r .mbr-text {
  color: #efefef;
}
.cid-rM7iUf9Q3r H1 {
  color: #ffffff;
}
.cid-rMuk3Na08z {
  padding-top: 45px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/mbr-1-1920x1280.jpg");
}
.cid-rMuk3Na08z .mbr-overlay {
  background: #000000;
}
.cid-rMuk3Na08z H1 {
  text-align: center;
}
.cid-rMuiMyUJ5N {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1-1920x1280.jpg");
}
.cid-rMuiMyUJ5N .mbr-overlay {
  background: #000000;
  background: linear-gradient(to right, #000000, #04367c);
}
.cid-rMuiMyUJ5N .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rMuiMyUJ5N .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-rMuiMyUJ5N .carousel-item .wrap-img {
  text-align: center;
}
.cid-rMuiMyUJ5N .carousel-item .wrap-img img {
  max-height: 150px;
  width: auto;
  max-width: 100%;
}
.cid-rMuiMyUJ5N .carousel-controls {
  position: absolute;
  width: 100%;
  top: 0;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.cid-rMuiMyUJ5N .carousel-controls .carousel-control {
  z-index: 2;
  background: transparent;
  position: static;
  width: 40px;
  height: 40px;
  margin-top: 2rem;
  color: #ffffff;
  font-weight: bold;
}
.cid-rMuiMyUJ5N .carousel-controls .carousel-control.carousel-control-prev {
  left: auto;
  margin-right: 20px;
  margin-left: 0;
}
.cid-rMuiMyUJ5N .carousel-controls .carousel-control.carousel-control-next {
  right: auto;
  margin-right: 0;
}
.cid-rMuiMyUJ5N .carousel-controls .carousel-control .mbr-iconfont {
  font-size: 1.2rem;
  font-weight: bold;
}
.cid-rMuiMyUJ5N .cloneditem-1,
.cid-rMuiMyUJ5N .cloneditem-2,
.cid-rMuiMyUJ5N .cloneditem-3,
.cid-rMuiMyUJ5N .cloneditem-4,
.cid-rMuiMyUJ5N .cloneditem-5 {
  display: none;
}
.cid-rMuiMyUJ5N .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-rMuiMyUJ5N .col-lg-15 {
    -ms-flex: 0 0 20%;
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    width: 20%;
  }
  .cid-rMuiMyUJ5N .carousel-inner {
    z-index: 1;
  }
  .cid-rMuiMyUJ5N .carousel-inner.slides2 > .carousel-item.active.carousel-item-right,
  .cid-rMuiMyUJ5N .carousel-inner.slides2 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);
  }
  .cid-rMuiMyUJ5N .carousel-inner.slides2 > .carousel-item.active.carousel-item-left,
  .cid-rMuiMyUJ5N .carousel-inner.slides2 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
  .cid-rMuiMyUJ5N .carousel-inner.slides2 > .carousel-item.carousel-item-left,
  .cid-rMuiMyUJ5N .carousel-inner.slides2 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-rMuiMyUJ5N .carousel-inner.slides2 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-rMuiMyUJ5N .carousel-inner.slides2 .cloneditem-1,
  .cid-rMuiMyUJ5N .carousel-inner.slides2 .cloneditem-2,
  .cid-rMuiMyUJ5N .carousel-inner.slides2 .cloneditem-3 {
    display: block;
  }
  .cid-rMuiMyUJ5N .carousel-inner.slides3 > .carousel-item.active.carousel-item-right,
  .cid-rMuiMyUJ5N .carousel-inner.slides3 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(33.333333%, 0, 0);
    transform: translate3d(33.333333%, 0, 0);
  }
  .cid-rMuiMyUJ5N .carousel-inner.slides3 > .carousel-item.active.carousel-item-left,
  .cid-rMuiMyUJ5N .carousel-inner.slides3 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-33.333333%, 0, 0);
    transform: translate3d(-33.333333%, 0, 0);
  }
  .cid-rMuiMyUJ5N .carousel-inner.slides3 > .carousel-item.carousel-item-left,
  .cid-rMuiMyUJ5N .carousel-inner.slides3 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-rMuiMyUJ5N .carousel-inner.slides3 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-rMuiMyUJ5N .carousel-inner.slides3 .cloneditem-1,
  .cid-rMuiMyUJ5N .carousel-inner.slides3 .cloneditem-2,
  .cid-rMuiMyUJ5N .carousel-inner.slides3 .cloneditem-3 {
    display: block;
  }
  .cid-rMuiMyUJ5N .carousel-inner.slides4 > .carousel-item.active.carousel-item-right,
  .cid-rMuiMyUJ5N .carousel-inner.slides4 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(25%, 0, 0);
    transform: translate3d(25%, 0, 0);
  }
  .cid-rMuiMyUJ5N .carousel-inner.slides4 > .carousel-item.active.carousel-item-left,
  .cid-rMuiMyUJ5N .carousel-inner.slides4 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-25%, 0, 0);
    transform: translate3d(-25%, 0, 0);
  }
  .cid-rMuiMyUJ5N .carousel-inner.slides4 > .carousel-item.carousel-item-left,
  .cid-rMuiMyUJ5N .carousel-inner.slides4 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-rMuiMyUJ5N .carousel-inner.slides4 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-rMuiMyUJ5N .carousel-inner.slides4 .cloneditem-1,
  .cid-rMuiMyUJ5N .carousel-inner.slides4 .cloneditem-2,
  .cid-rMuiMyUJ5N .carousel-inner.slides4 .cloneditem-3 {
    display: block;
  }
  .cid-rMuiMyUJ5N .carousel-inner.slides5 > .carousel-item.active.carousel-item-right,
  .cid-rMuiMyUJ5N .carousel-inner.slides5 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0);
  }
  .cid-rMuiMyUJ5N .carousel-inner.slides5 > .carousel-item.active.carousel-item-left,
  .cid-rMuiMyUJ5N .carousel-inner.slides5 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-20%, 0, 0);
    transform: translate3d(-20%, 0, 0);
  }
  .cid-rMuiMyUJ5N .carousel-inner.slides5 > .carousel-item.carousel-item-left,
  .cid-rMuiMyUJ5N .carousel-inner.slides5 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-rMuiMyUJ5N .carousel-inner.slides5 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-rMuiMyUJ5N .carousel-inner.slides5 .cloneditem-1,
  .cid-rMuiMyUJ5N .carousel-inner.slides5 .cloneditem-2,
  .cid-rMuiMyUJ5N .carousel-inner.slides5 .cloneditem-3,
  .cid-rMuiMyUJ5N .carousel-inner.slides5 .cloneditem-4 {
    display: block;
  }
  .cid-rMuiMyUJ5N .carousel-inner.slides6 > .carousel-item.active.carousel-item-right,
  .cid-rMuiMyUJ5N .carousel-inner.slides6 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(16.666667%, 0, 0);
    transform: translate3d(16.666667%, 0, 0);
  }
  .cid-rMuiMyUJ5N .carousel-inner.slides6 > .carousel-item.active.carousel-item-left,
  .cid-rMuiMyUJ5N .carousel-inner.slides6 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-16.666667%, 0, 0);
    transform: translate3d(-16.666667%, 0, 0);
  }
  .cid-rMuiMyUJ5N .carousel-inner.slides6 > .carousel-item.carousel-item-left,
  .cid-rMuiMyUJ5N .carousel-inner.slides6 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-rMuiMyUJ5N .carousel-inner.slides6 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-rMuiMyUJ5N .carousel-inner.slides6 .cloneditem-1,
  .cid-rMuiMyUJ5N .carousel-inner.slides6 .cloneditem-2,
  .cid-rMuiMyUJ5N .carousel-inner.slides6 .cloneditem-3,
  .cid-rMuiMyUJ5N .carousel-inner.slides6 .cloneditem-4,
  .cid-rMuiMyUJ5N .carousel-inner.slides6 .cloneditem-5 {
    display: block;
  }
}
.cid-rNs6xwxBTM {
  padding-top: 45px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-1-1920x1280.jpg");
}
.cid-rNs6xwxBTM .mbr-overlay {
  background: #000000;
}
.cid-rNs6xwxBTM H1 {
  text-align: center;
}
.cid-rNs5Z69BsG {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-rNs5Z69BsG .row {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.cid-rNs5Z69BsG .content-panel {
  padding: 2rem;
  background-color: #000000;
  border-radius: .25rem;
  overflow: hidden;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-rNs5Z69BsG .content-block {
  color: #efefef;
}
@media (min-width: 992px) {
  .cid-rNs5Z69BsG .form-group,
  .cid-rNs5Z69BsG .input-group-btn {
    padding-left: .5rem;
    padding-right: .5rem;
  }
}
.cid-rNs5Z69BsG .form-control {
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  min-height: 40px;
  padding: .5rem 1rem;
  background-color: #ffffff;
  border: 1px solid #efefef;
  color: #565656;
  border-radius: .25rem;
  font-size: 1rem;
  line-height: 1.43;
}
.cid-rNs5Z69BsG .form-control:focus,
.cid-rNs5Z69BsG .form-control:hover {
  border: 1px solid #e8e8e8;
  background-color: #ffffff;
}
.cid-rNs5Z69BsG textarea.form-control {
  min-height: 170px;
}
.cid-rNs5Z69BsG .form-group {
  margin-bottom: 1rem;
}
.cid-rNs5Z69BsG input::-webkit-input-placeholder,
.cid-rNs5Z69BsG textarea::-webkit-input-placeholder {
  color: #565656;
}
.cid-rNs5Z69BsG input:-moz-placeholder,
.cid-rNs5Z69BsG textarea:-moz-placeholder {
  color: #565656;
}
.cid-rNs5Z69BsG .jq-selectbox li,
.cid-rNs5Z69BsG .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-rNs5Z69BsG .jq-selectbox li:hover,
.cid-rNs5Z69BsG .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-rNs5Z69BsG .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-rNs5Z69BsG .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
@media (max-width: 768px) {
  .cid-rNs5Z69BsG .main-row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-rNs5Z69BsG .text-block {
    margin-bottom: 2rem;
  }
}
.cid-rM7UxWj5ml {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-rM7UxWj5ml .card-icon {
  font-size: 56px;
  color: #ed4266;
  transition: color 0.3s;
}
.cid-rM7UxWj5ml .icon2 {
  color: #f9b03e;
}
.cid-rM7UxWj5ml .card-title {
  font-weight: 600;
  letter-spacing: 1px;
}
.cid-rM7UxWj5ml p {
  font-weight: 400;
}
.cid-rM7UxWj5ml .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #ed4266;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}
.cid-rM7UxWj5ml .line2 {
  background: #f7ed4a;
}
.cid-rM7UxWj5ml .card-wrapper {
  padding: 2.5rem 2rem;
  transition: background 0.3s;
  background: #04367c;
}
.cid-rM7UxWj5ml .card-wrapper:hover .link-ico {
  background-color: #ed4266;
  border-color: #ed4266;
  color: white;
}
.cid-rM7UxWj5ml .card2 {
  background: #ed4266;
}
.cid-rM7UxWj5ml .card-title,
.cid-rM7UxWj5ml .card-ico,
.cid-rM7UxWj5ml .line-wrap {
  text-align: center;
}
.cid-rM7UxWj5ml .mbr-text,
.cid-rM7UxWj5ml .card-link {
  text-align: center;
}
.cid-rM80mHcPNv {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-rM80mHcPNv a:link {
  text-decoration: none;
}
.cid-rM80mHcPNv .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-rM80mHcPNv .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-rM80mHcPNv .inner-text {
  line-height: 3em;
}
.cid-rM80mHcPNv .social-media {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rM80mHcPNv .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-rM80mHcPNv .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-rM80mHcPNv .content-text,
.cid-rM80mHcPNv .inner-text {
  color: #c1c1c1;
}
.cid-rM6WSY2gQR .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -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-rM6WSY2gQR .nav-item,
.cid-rM6WSY2gQR .nav-link,
.cid-rM6WSY2gQR .navbar-caption {
  font-weight: normal;
}
.cid-rM6WSY2gQR .nav-item:focus,
.cid-rM6WSY2gQR .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rM6WSY2gQR .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-rM6WSY2gQR .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  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-rM6WSY2gQR .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rM6WSY2gQR .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rM6WSY2gQR .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-rM6WSY2gQR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rM6WSY2gQR .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-rM6WSY2gQR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rM6WSY2gQR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rM6WSY2gQR .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #000000;
}
.cid-rM6WSY2gQR .navbar.opened {
  transition: all .3s;
  background: #000000 !important;
}
.cid-rM6WSY2gQR .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-rM6WSY2gQR .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rM6WSY2gQR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rM6WSY2gQR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rM6WSY2gQR .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rM6WSY2gQR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rM6WSY2gQR .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-rM6WSY2gQR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rM6WSY2gQR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rM6WSY2gQR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rM6WSY2gQR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rM6WSY2gQR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rM6WSY2gQR .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rM6WSY2gQR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rM6WSY2gQR .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-rM6WSY2gQR .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rM6WSY2gQR .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rM6WSY2gQR .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rM6WSY2gQR .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rM6WSY2gQR .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rM6WSY2gQR .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rM6WSY2gQR .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-rM6WSY2gQR .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rM6WSY2gQR .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rM6WSY2gQR .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-rM6WSY2gQR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rM6WSY2gQR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rM6WSY2gQR .dropdown-item.active,
.cid-rM6WSY2gQR .dropdown-item:active {
  background-color: transparent;
}
.cid-rM6WSY2gQR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rM6WSY2gQR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rM6WSY2gQR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-rM6WSY2gQR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rM6WSY2gQR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rM6WSY2gQR ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rM6WSY2gQR .navbar-buttons {
  text-align: center;
}
.cid-rM6WSY2gQR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rM6WSY2gQR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rM6WSY2gQR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rM6WSY2gQR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rM6WSY2gQR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rM6WSY2gQR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rM6WSY2gQR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rM6WSY2gQR nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rM6WSY2gQR nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rM6WSY2gQR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rM6WSY2gQR .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rM6WSY2gQR a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rM6WSY2gQR .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-rM6WSY2gQR .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-rM6WSY2gQR .soc-item {
  margin: .5rem .3rem;
}
.cid-rM6WSY2gQR .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;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rM6WSY2gQR .navbar {
    height: 77px;
  }
  .cid-rM6WSY2gQR .navbar.opened {
    height: auto;
  }
  .cid-rM6WSY2gQR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rM84asxvrR {
  padding-top: 135px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/mbr-1-1920x1280.jpg");
}
.cid-rM84asxvrR .mbr-overlay {
  background: #000000;
  background: linear-gradient(90deg, #000000, #000000);
}
.cid-rM84asxvrR H1 {
  text-align: center;
}
.cid-rM87p523To {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rM87p523To img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-rM87p523To img:hover {
  transform: scale(1.1);
}
.cid-rM87p523To .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-rM87p523To h2 {
  padding: 0;
  margin: 0;
}
.cid-rM87p523To .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-rM87p523To .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-rM87p523To .mbr-section-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cid-rM87p523To .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 400px;
  justify-content: space-between;
}
.cid-rM87p523To .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
}
.cid-rM87p523To .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-rM87p523To .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-rM87p523To .btn {
    min-width: 200px!important;
    padding: 0.6rem 0.8rem!important;
  }
  .cid-rM87p523To .text-col {
    padding: 2rem 1rem;
  }
}
.cid-rM87p523To H2 {
  color: #333333;
}
.cid-rM87p523To .mbr-text {
  color: #ffffff;
}
.cid-rM87p523To H1 {
  color: #ffffff;
}
.cid-rMcLmJLnYs {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rMcLmJLnYs img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-rMcLmJLnYs img:hover {
  transform: scale(1.1);
}
.cid-rMcLmJLnYs .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-rMcLmJLnYs h2 {
  padding: 0;
  margin: 0;
}
.cid-rMcLmJLnYs .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-rMcLmJLnYs .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-rMcLmJLnYs .mbr-section-btn {
  position: absolute;
  transform: rotate(90deg);
  bottom: 300px;
  left: 0;
  transform-origin: bottom left;
}
.cid-rMcLmJLnYs .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 300px;
  justify-content: space-between;
}
.cid-rMcLmJLnYs .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
  transform: rotate(-90deg);
}
.cid-rMcLmJLnYs .mbr-section-btn:hover .mbr-iconfont {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0!important;
}
.cid-rMcLmJLnYs .mbr-iconfont {
  margin: 0!important;
}
.cid-rMcLmJLnYs .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-rMcLmJLnYs .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-rMcLmJLnYs .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-rMcLmJLnYs .btn {
    padding: 0.6rem 0.8rem!important;
    min-width: 200px!important;
  }
  .cid-rMcLmJLnYs .text-col {
    padding: 2rem 1rem;
  }
}
.cid-rMcLmJLnYs H2 {
  color: #333333;
}
.cid-rMcLmJLnYs .mbr-text {
  color: #ffffff;
}
.cid-rMcLmJLnYs H1 {
  color: #ffffff;
}
.cid-rMcUFKKT9Y {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rMcUFKKT9Y img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-rMcUFKKT9Y img:hover {
  transform: scale(1.1);
}
.cid-rMcUFKKT9Y .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-rMcUFKKT9Y h2 {
  padding: 0;
  margin: 0;
}
.cid-rMcUFKKT9Y .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-rMcUFKKT9Y .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-rMcUFKKT9Y .mbr-section-btn {
  position: absolute;
  transform: rotate(90deg);
  bottom: 0;
  right: 67px;
  transform-origin: bottom right;
}
.cid-rMcUFKKT9Y .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 300px;
  justify-content: space-between;
}
.cid-rMcUFKKT9Y .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
  transform: rotate(-90deg);
}
.cid-rMcUFKKT9Y .mbr-section-btn:hover .mbr-iconfont {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0!important;
}
.cid-rMcUFKKT9Y .mbr-iconfont {
  margin: 0!important;
}
.cid-rMcUFKKT9Y .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-rMcUFKKT9Y .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-rMcUFKKT9Y .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-rMcUFKKT9Y .btn {
    padding: 0.6rem 0.8rem!important;
    min-width: 200px!important;
  }
  .cid-rMcUFKKT9Y .text-col {
    padding: 2rem 1rem;
  }
}
.cid-rMcUFKKT9Y H2 {
  color: #333333;
}
.cid-rMcUFKKT9Y .mbr-text {
  color: #ffffff;
}
.cid-rMcUFKKT9Y H1 {
  color: #ffffff;
}
.cid-rMcUG1Ruj4 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rMcUG1Ruj4 img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-rMcUG1Ruj4 img:hover {
  transform: scale(1.1);
}
.cid-rMcUG1Ruj4 .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-rMcUG1Ruj4 h2 {
  padding: 0;
  margin: 0;
}
.cid-rMcUG1Ruj4 .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-rMcUG1Ruj4 .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-rMcUG1Ruj4 .mbr-section-btn {
  position: absolute;
  transform: rotate(90deg);
  bottom: 300px;
  left: 0;
  transform-origin: bottom left;
}
.cid-rMcUG1Ruj4 .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 300px;
  justify-content: space-between;
}
.cid-rMcUG1Ruj4 .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
  transform: rotate(-90deg);
}
.cid-rMcUG1Ruj4 .mbr-section-btn:hover .mbr-iconfont {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0!important;
}
.cid-rMcUG1Ruj4 .mbr-iconfont {
  margin: 0!important;
}
.cid-rMcUG1Ruj4 .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-rMcUG1Ruj4 .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-rMcUG1Ruj4 .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-rMcUG1Ruj4 .btn {
    padding: 0.6rem 0.8rem!important;
    min-width: 200px!important;
  }
  .cid-rMcUG1Ruj4 .text-col {
    padding: 2rem 1rem;
  }
}
.cid-rMcUG1Ruj4 H2 {
  color: #333333;
}
.cid-rMcUG1Ruj4 .mbr-text {
  color: #ffffff;
}
.cid-rMcUG1Ruj4 H1 {
  color: #ffffff;
}
.cid-rMcSTMKplr {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rMcSTMKplr .subicon-title {
  color: #000000;
  text-align: center;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-rMcSTMKplr .subicon-text {
  padding-left: 1rem;
  padding-right: 1rem;
  color: #ffffff;
}
.cid-rMcSTMKplr .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-rMcSTMKplr .underline .line {
  width: 3rem;
  height: 2px;
  background: #a61a3d;
  display: inline-block;
}
.cid-rMcSTMKplr .process-icon,
.cid-rMcSTMKplr .process-icon-without-before {
  width: 100%;
  padding-bottom: 2rem;
}
.cid-rMcSTMKplr .wrapper,
.cid-rMcSTMKplr .wrapper-without-before {
  position: relative;
  margin-bottom: 2rem;
}
.cid-rMcSTMKplr .wrapper::before {
  content: '\e966';
  font-family: MobiriseIcons !important;
  position: absolute;
  font-size: 30px;
  left: -15px;
  top: 30%;
  color: #0b3f83;
  opacity: .4;
}
.cid-rMcSTMKplr .icon-container {
  display: inline-flex;
  position: relative;
}
.cid-rMcSTMKplr .icon-container a {
  display: inherit;
}
.cid-rMcSTMKplr .icon-number {
  text-align: center;
  height: 2.5em;
  width: 2.5em;
  margin: 0;
  line-height: 2.5em;
  top: 0;
  right: 0;
  position: absolute;
  display: inline-block;
  background-color: #ff4f7b !important;
  transition: all 0.3s ease-in-out 0s;
  border-radius: 50%;
  color: #ffffff;
  z-index: 1;
}
.cid-rMcSTMKplr .icon-main {
  margin: 1rem 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
  padding: 0;
  transition: all 0.3s ease-in-out 0s;
}
.cid-rMcSTMKplr .icon-main:hover .icon-wrapper {
  background-color: #ff4f7b !important;
}
.cid-rMcSTMKplr .icon-main:hover .icon-number {
  background-color: #0b3f83 !important;
  color: #ffffff !important;
}
.cid-rMcSTMKplr .icon-wrapper {
  position: relative;
  z-index: 1;
  padding: 0.9em;
  height: 100%;
  margin: 0 auto;
  transition: all 0.3s ease-in-out 0s;
  border-radius: 50%;
  font-size: 50px;
  color: #ffffff;
}
.cid-rMcSTMKplr .main-wrapper {
  padding: 3rem 0 0 0;
}
@media (max-width: 767px) {
  .cid-rMcSTMKplr .wrapper::before {
    display: none;
  }
}
@media (max-width: 991px) {
  .cid-rMcSTMKplr .third-elem .wrapper:before {
    display: none;
  }
}
.cid-rMcSTMKplr .mbr-section-title {
  margin: 0;
}
.cid-rMcSTMKplr .mbr-section-subtitle {
  color: #232323;
  text-align: center;
}
.cid-rMcSTMKplr .mbr-section-title,
.cid-rMcSTMKplr .underline {
  color: #ffffff;
}
.cid-rMd6TFs50U {
  padding-top: 45px;
  padding-bottom: 45px;
  background: linear-gradient(90deg, #000000, #000000);
}
.cid-rMd6TFs50U .mbr-overlay {
  background: #2bdc9d;
  background: linear-gradient(90deg, #2bdc9d, #51aafa);
}
.cid-rMd6TFs50U .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-rMuXtClgu9 {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #000000;
}
.cid-rMuXtClgu9 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-rMuXtClgu9 H4 {
  color: #ffffff;
  text-align: left;
}
.cid-rMuXtClgu9 LABEL {
  color: #ffffff;
}
.cid-rMuXtClgu9 H5 {
  color: #ffffff;
  text-align: center;
}
.cid-rMuXtClgu9 P {
  color: #ffffff;
}
.cid-rMeUlZrWE2 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-rMeUlZrWE2 a:link {
  text-decoration: none;
}
.cid-rMeUlZrWE2 .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-rMeUlZrWE2 .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-rMeUlZrWE2 .inner-text {
  line-height: 3em;
}
.cid-rMeUlZrWE2 .social-media {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rMeUlZrWE2 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-rMeUlZrWE2 .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-rMeUlZrWE2 .content-text,
.cid-rMeUlZrWE2 .inner-text {
  color: #c1c1c1;
}
.cid-rMdY0H2qsT .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -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-rMdY0H2qsT .nav-item,
.cid-rMdY0H2qsT .nav-link,
.cid-rMdY0H2qsT .navbar-caption {
  font-weight: normal;
}
.cid-rMdY0H2qsT .nav-item:focus,
.cid-rMdY0H2qsT .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rMdY0H2qsT .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-rMdY0H2qsT .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  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-rMdY0H2qsT .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rMdY0H2qsT .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rMdY0H2qsT .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-rMdY0H2qsT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rMdY0H2qsT .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-rMdY0H2qsT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rMdY0H2qsT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rMdY0H2qsT .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #000000;
}
.cid-rMdY0H2qsT .navbar.opened {
  transition: all .3s;
  background: #000000 !important;
}
.cid-rMdY0H2qsT .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-rMdY0H2qsT .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rMdY0H2qsT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rMdY0H2qsT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rMdY0H2qsT .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rMdY0H2qsT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rMdY0H2qsT .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-rMdY0H2qsT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rMdY0H2qsT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rMdY0H2qsT .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rMdY0H2qsT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rMdY0H2qsT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rMdY0H2qsT .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rMdY0H2qsT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rMdY0H2qsT .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-rMdY0H2qsT .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rMdY0H2qsT .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rMdY0H2qsT .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rMdY0H2qsT .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rMdY0H2qsT .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rMdY0H2qsT .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rMdY0H2qsT .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-rMdY0H2qsT .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rMdY0H2qsT .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rMdY0H2qsT .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-rMdY0H2qsT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rMdY0H2qsT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rMdY0H2qsT .dropdown-item.active,
.cid-rMdY0H2qsT .dropdown-item:active {
  background-color: transparent;
}
.cid-rMdY0H2qsT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rMdY0H2qsT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rMdY0H2qsT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-rMdY0H2qsT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rMdY0H2qsT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rMdY0H2qsT ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rMdY0H2qsT .navbar-buttons {
  text-align: center;
}
.cid-rMdY0H2qsT button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rMdY0H2qsT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rMdY0H2qsT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rMdY0H2qsT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rMdY0H2qsT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rMdY0H2qsT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rMdY0H2qsT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rMdY0H2qsT nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rMdY0H2qsT nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rMdY0H2qsT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rMdY0H2qsT .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rMdY0H2qsT a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rMdY0H2qsT .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-rMdY0H2qsT .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-rMdY0H2qsT .soc-item {
  margin: .5rem .3rem;
}
.cid-rMdY0H2qsT .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;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rMdY0H2qsT .navbar {
    height: 77px;
  }
  .cid-rMdY0H2qsT .navbar.opened {
    height: auto;
  }
  .cid-rMdY0H2qsT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rMdY0HMVtw {
  padding-top: 135px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/mbr-1-1920x1280.jpg");
}
.cid-rMdY0HMVtw .mbr-overlay {
  background: #000000;
  background: linear-gradient(90deg, #000000, #000000);
}
.cid-rMdY0HMVtw H1 {
  text-align: center;
}
.cid-rMdY0I7oJV {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rMdY0I7oJV img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-rMdY0I7oJV img:hover {
  transform: scale(1.1);
}
.cid-rMdY0I7oJV .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-rMdY0I7oJV h2 {
  padding: 0;
  margin: 0;
}
.cid-rMdY0I7oJV .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-rMdY0I7oJV .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-rMdY0I7oJV .mbr-section-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cid-rMdY0I7oJV .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 400px;
  justify-content: space-between;
}
.cid-rMdY0I7oJV .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
}
.cid-rMdY0I7oJV .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-rMdY0I7oJV .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-rMdY0I7oJV .btn {
    min-width: 200px!important;
    padding: 0.6rem 0.8rem!important;
  }
  .cid-rMdY0I7oJV .text-col {
    padding: 2rem 1rem;
  }
}
.cid-rMdY0I7oJV H2 {
  color: #333333;
}
.cid-rMdY0I7oJV .mbr-text {
  color: #ffffff;
}
.cid-rMdY0I7oJV H1 {
  color: #ffffff;
}
.cid-rMdY0Iv2iz {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rMdY0Iv2iz img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-rMdY0Iv2iz img:hover {
  transform: scale(1.1);
}
.cid-rMdY0Iv2iz .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-rMdY0Iv2iz h2 {
  padding: 0;
  margin: 0;
}
.cid-rMdY0Iv2iz .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-rMdY0Iv2iz .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-rMdY0Iv2iz .mbr-section-btn {
  position: absolute;
  transform: rotate(90deg);
  bottom: 300px;
  left: 0;
  transform-origin: bottom left;
}
.cid-rMdY0Iv2iz .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 300px;
  justify-content: space-between;
}
.cid-rMdY0Iv2iz .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
  transform: rotate(-90deg);
}
.cid-rMdY0Iv2iz .mbr-section-btn:hover .mbr-iconfont {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0!important;
}
.cid-rMdY0Iv2iz .mbr-iconfont {
  margin: 0!important;
}
.cid-rMdY0Iv2iz .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-rMdY0Iv2iz .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-rMdY0Iv2iz .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-rMdY0Iv2iz .btn {
    padding: 0.6rem 0.8rem!important;
    min-width: 200px!important;
  }
  .cid-rMdY0Iv2iz .text-col {
    padding: 2rem 1rem;
  }
}
.cid-rMdY0Iv2iz H2 {
  color: #333333;
}
.cid-rMdY0Iv2iz .mbr-text {
  color: #ffffff;
}
.cid-rMdY0Iv2iz H1 {
  color: #ffffff;
}
.cid-rMdY0IRvvc {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rMdY0IRvvc img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-rMdY0IRvvc img:hover {
  transform: scale(1.1);
}
.cid-rMdY0IRvvc .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-rMdY0IRvvc h2 {
  padding: 0;
  margin: 0;
}
.cid-rMdY0IRvvc .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-rMdY0IRvvc .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-rMdY0IRvvc .mbr-section-btn {
  position: absolute;
  transform: rotate(90deg);
  bottom: 0;
  right: 67px;
  transform-origin: bottom right;
}
.cid-rMdY0IRvvc .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 300px;
  justify-content: space-between;
}
.cid-rMdY0IRvvc .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
  transform: rotate(-90deg);
}
.cid-rMdY0IRvvc .mbr-section-btn:hover .mbr-iconfont {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0!important;
}
.cid-rMdY0IRvvc .mbr-iconfont {
  margin: 0!important;
}
.cid-rMdY0IRvvc .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-rMdY0IRvvc .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-rMdY0IRvvc .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-rMdY0IRvvc .btn {
    padding: 0.6rem 0.8rem!important;
    min-width: 200px!important;
  }
  .cid-rMdY0IRvvc .text-col {
    padding: 2rem 1rem;
  }
}
.cid-rMdY0IRvvc H2 {
  color: #333333;
}
.cid-rMdY0IRvvc .mbr-text {
  color: #ffffff;
}
.cid-rMdY0IRvvc H1 {
  color: #ffffff;
}
.cid-rMdY0JyYEm {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rMdY0JyYEm .subicon-title {
  color: #000000;
  text-align: center;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-rMdY0JyYEm .subicon-text {
  padding-left: 1rem;
  padding-right: 1rem;
  color: #ffffff;
}
.cid-rMdY0JyYEm .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-rMdY0JyYEm .underline .line {
  width: 3rem;
  height: 2px;
  background: #a61a3d;
  display: inline-block;
}
.cid-rMdY0JyYEm .process-icon,
.cid-rMdY0JyYEm .process-icon-without-before {
  width: 100%;
  padding-bottom: 2rem;
}
.cid-rMdY0JyYEm .wrapper,
.cid-rMdY0JyYEm .wrapper-without-before {
  position: relative;
  margin-bottom: 2rem;
}
.cid-rMdY0JyYEm .wrapper::before {
  content: '\e966';
  font-family: MobiriseIcons !important;
  position: absolute;
  font-size: 30px;
  left: -15px;
  top: 30%;
  color: #0b3f83;
  opacity: .4;
}
.cid-rMdY0JyYEm .icon-container {
  display: inline-flex;
  position: relative;
}
.cid-rMdY0JyYEm .icon-container a {
  display: inherit;
}
.cid-rMdY0JyYEm .icon-number {
  text-align: center;
  height: 2.5em;
  width: 2.5em;
  margin: 0;
  line-height: 2.5em;
  top: 0;
  right: 0;
  position: absolute;
  display: inline-block;
  background-color: #ff4f7b !important;
  transition: all 0.3s ease-in-out 0s;
  border-radius: 50%;
  color: #ffffff;
  z-index: 1;
}
.cid-rMdY0JyYEm .icon-main {
  margin: 1rem 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
  padding: 0;
  transition: all 0.3s ease-in-out 0s;
}
.cid-rMdY0JyYEm .icon-main:hover .icon-wrapper {
  background-color: #ff4f7b !important;
}
.cid-rMdY0JyYEm .icon-main:hover .icon-number {
  background-color: #0b3f83 !important;
  color: #ffffff !important;
}
.cid-rMdY0JyYEm .icon-wrapper {
  position: relative;
  z-index: 1;
  padding: 0.9em;
  height: 100%;
  margin: 0 auto;
  transition: all 0.3s ease-in-out 0s;
  border-radius: 50%;
  font-size: 50px;
  color: #ffffff;
}
.cid-rMdY0JyYEm .main-wrapper {
  padding: 3rem 0 0 0;
}
@media (max-width: 767px) {
  .cid-rMdY0JyYEm .wrapper::before {
    display: none;
  }
}
@media (max-width: 991px) {
  .cid-rMdY0JyYEm .third-elem .wrapper:before {
    display: none;
  }
}
.cid-rMdY0JyYEm .mbr-section-title {
  margin: 0;
}
.cid-rMdY0JyYEm .mbr-section-subtitle {
  color: #232323;
  text-align: center;
}
.cid-rMdY0JyYEm .mbr-section-title,
.cid-rMdY0JyYEm .underline {
  color: #ffffff;
}
.cid-rMdY0K5HVh {
  padding-top: 45px;
  padding-bottom: 45px;
  background: linear-gradient(90deg, #000000, #000000);
}
.cid-rMdY0K5HVh .mbr-overlay {
  background: #2bdc9d;
  background: linear-gradient(90deg, #2bdc9d, #51aafa);
}
.cid-rMdY0K5HVh .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-rMuXyZWPw8 {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #000000;
}
.cid-rMuXyZWPw8 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-rMuXyZWPw8 H4 {
  color: #ffffff;
  text-align: left;
}
.cid-rMuXyZWPw8 LABEL {
  color: #ffffff;
}
.cid-rMuXyZWPw8 H5 {
  color: #ffffff;
  text-align: center;
}
.cid-rMuXyZWPw8 P {
  color: #ffffff;
}
.cid-rMeUAvGqE7 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-rMeUAvGqE7 a:link {
  text-decoration: none;
}
.cid-rMeUAvGqE7 .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-rMeUAvGqE7 .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-rMeUAvGqE7 .inner-text {
  line-height: 3em;
}
.cid-rMeUAvGqE7 .social-media {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rMeUAvGqE7 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-rMeUAvGqE7 .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-rMeUAvGqE7 .content-text,
.cid-rMeUAvGqE7 .inner-text {
  color: #c1c1c1;
}
.cid-rMefnSS0LD .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -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-rMefnSS0LD .nav-item,
.cid-rMefnSS0LD .nav-link,
.cid-rMefnSS0LD .navbar-caption {
  font-weight: normal;
}
.cid-rMefnSS0LD .nav-item:focus,
.cid-rMefnSS0LD .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rMefnSS0LD .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-rMefnSS0LD .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  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-rMefnSS0LD .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rMefnSS0LD .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rMefnSS0LD .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-rMefnSS0LD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rMefnSS0LD .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-rMefnSS0LD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rMefnSS0LD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rMefnSS0LD .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #000000;
}
.cid-rMefnSS0LD .navbar.opened {
  transition: all .3s;
  background: #000000 !important;
}
.cid-rMefnSS0LD .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-rMefnSS0LD .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rMefnSS0LD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rMefnSS0LD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rMefnSS0LD .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rMefnSS0LD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rMefnSS0LD .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-rMefnSS0LD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rMefnSS0LD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rMefnSS0LD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rMefnSS0LD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rMefnSS0LD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rMefnSS0LD .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rMefnSS0LD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rMefnSS0LD .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-rMefnSS0LD .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rMefnSS0LD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rMefnSS0LD .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rMefnSS0LD .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rMefnSS0LD .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rMefnSS0LD .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rMefnSS0LD .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-rMefnSS0LD .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rMefnSS0LD .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rMefnSS0LD .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-rMefnSS0LD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rMefnSS0LD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rMefnSS0LD .dropdown-item.active,
.cid-rMefnSS0LD .dropdown-item:active {
  background-color: transparent;
}
.cid-rMefnSS0LD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rMefnSS0LD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rMefnSS0LD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-rMefnSS0LD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rMefnSS0LD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rMefnSS0LD ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rMefnSS0LD .navbar-buttons {
  text-align: center;
}
.cid-rMefnSS0LD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rMefnSS0LD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rMefnSS0LD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rMefnSS0LD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rMefnSS0LD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rMefnSS0LD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rMefnSS0LD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rMefnSS0LD nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rMefnSS0LD nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rMefnSS0LD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rMefnSS0LD .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rMefnSS0LD a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rMefnSS0LD .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-rMefnSS0LD .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-rMefnSS0LD .soc-item {
  margin: .5rem .3rem;
}
.cid-rMefnSS0LD .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;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rMefnSS0LD .navbar {
    height: 77px;
  }
  .cid-rMefnSS0LD .navbar.opened {
    height: auto;
  }
  .cid-rMefnSS0LD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rMefnTM8wS {
  padding-top: 135px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/mbr-1-1920x1280.jpg");
}
.cid-rMefnTM8wS .mbr-overlay {
  background: #000000;
  background: linear-gradient(90deg, #000000, #000000);
}
.cid-rMefnTM8wS H1 {
  text-align: center;
}
.cid-rMefnU76DB {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rMefnU76DB img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-rMefnU76DB img:hover {
  transform: scale(1.1);
}
.cid-rMefnU76DB .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-rMefnU76DB h2 {
  padding: 0;
  margin: 0;
}
.cid-rMefnU76DB .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-rMefnU76DB .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-rMefnU76DB .mbr-section-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cid-rMefnU76DB .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 400px;
  justify-content: space-between;
}
.cid-rMefnU76DB .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
}
.cid-rMefnU76DB .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-rMefnU76DB .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-rMefnU76DB .btn {
    min-width: 200px!important;
    padding: 0.6rem 0.8rem!important;
  }
  .cid-rMefnU76DB .text-col {
    padding: 2rem 1rem;
  }
}
.cid-rMefnU76DB H2 {
  color: #333333;
}
.cid-rMefnU76DB .mbr-text {
  color: #ffffff;
}
.cid-rMefnU76DB H1 {
  color: #ffffff;
}
.cid-rMefnUx8cp {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rMefnUx8cp img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-rMefnUx8cp img:hover {
  transform: scale(1.1);
}
.cid-rMefnUx8cp .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-rMefnUx8cp h2 {
  padding: 0;
  margin: 0;
}
.cid-rMefnUx8cp .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-rMefnUx8cp .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-rMefnUx8cp .mbr-section-btn {
  position: absolute;
  transform: rotate(90deg);
  bottom: 300px;
  left: 0;
  transform-origin: bottom left;
}
.cid-rMefnUx8cp .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 300px;
  justify-content: space-between;
}
.cid-rMefnUx8cp .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
  transform: rotate(-90deg);
}
.cid-rMefnUx8cp .mbr-section-btn:hover .mbr-iconfont {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0!important;
}
.cid-rMefnUx8cp .mbr-iconfont {
  margin: 0!important;
}
.cid-rMefnUx8cp .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-rMefnUx8cp .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-rMefnUx8cp .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-rMefnUx8cp .btn {
    padding: 0.6rem 0.8rem!important;
    min-width: 200px!important;
  }
  .cid-rMefnUx8cp .text-col {
    padding: 2rem 1rem;
  }
}
.cid-rMefnUx8cp H2 {
  color: #333333;
}
.cid-rMefnUx8cp .mbr-text {
  color: #ffffff;
}
.cid-rMefnUx8cp H1 {
  color: #ffffff;
}
.cid-rMefnUVxwV {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rMefnUVxwV img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-rMefnUVxwV img:hover {
  transform: scale(1.1);
}
.cid-rMefnUVxwV .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-rMefnUVxwV h2 {
  padding: 0;
  margin: 0;
}
.cid-rMefnUVxwV .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-rMefnUVxwV .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-rMefnUVxwV .mbr-section-btn {
  position: absolute;
  transform: rotate(90deg);
  bottom: 0;
  right: 67px;
  transform-origin: bottom right;
}
.cid-rMefnUVxwV .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 300px;
  justify-content: space-between;
}
.cid-rMefnUVxwV .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
  transform: rotate(-90deg);
}
.cid-rMefnUVxwV .mbr-section-btn:hover .mbr-iconfont {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0!important;
}
.cid-rMefnUVxwV .mbr-iconfont {
  margin: 0!important;
}
.cid-rMefnUVxwV .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-rMefnUVxwV .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-rMefnUVxwV .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-rMefnUVxwV .btn {
    padding: 0.6rem 0.8rem!important;
    min-width: 200px!important;
  }
  .cid-rMefnUVxwV .text-col {
    padding: 2rem 1rem;
  }
}
.cid-rMefnUVxwV H2 {
  color: #333333;
}
.cid-rMefnUVxwV .mbr-text {
  color: #ffffff;
}
.cid-rMefnUVxwV H1 {
  color: #ffffff;
}
.cid-rMefnVkLRO {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rMefnVkLRO .subicon-title {
  color: #000000;
  text-align: center;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-rMefnVkLRO .subicon-text {
  padding-left: 1rem;
  padding-right: 1rem;
  color: #ffffff;
}
.cid-rMefnVkLRO .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-rMefnVkLRO .underline .line {
  width: 3rem;
  height: 2px;
  background: #a61a3d;
  display: inline-block;
}
.cid-rMefnVkLRO .process-icon,
.cid-rMefnVkLRO .process-icon-without-before {
  width: 100%;
  padding-bottom: 2rem;
}
.cid-rMefnVkLRO .wrapper,
.cid-rMefnVkLRO .wrapper-without-before {
  position: relative;
  margin-bottom: 2rem;
}
.cid-rMefnVkLRO .wrapper::before {
  content: '\e966';
  font-family: MobiriseIcons !important;
  position: absolute;
  font-size: 30px;
  left: -15px;
  top: 30%;
  color: #0b3f83;
  opacity: .4;
}
.cid-rMefnVkLRO .icon-container {
  display: inline-flex;
  position: relative;
}
.cid-rMefnVkLRO .icon-container a {
  display: inherit;
}
.cid-rMefnVkLRO .icon-number {
  text-align: center;
  height: 2.5em;
  width: 2.5em;
  margin: 0;
  line-height: 2.5em;
  top: 0;
  right: 0;
  position: absolute;
  display: inline-block;
  background-color: #ff4f7b !important;
  transition: all 0.3s ease-in-out 0s;
  border-radius: 50%;
  color: #ffffff;
  z-index: 1;
}
.cid-rMefnVkLRO .icon-main {
  margin: 1rem 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
  padding: 0;
  transition: all 0.3s ease-in-out 0s;
}
.cid-rMefnVkLRO .icon-main:hover .icon-wrapper {
  background-color: #ff4f7b !important;
}
.cid-rMefnVkLRO .icon-main:hover .icon-number {
  background-color: #0b3f83 !important;
  color: #ffffff !important;
}
.cid-rMefnVkLRO .icon-wrapper {
  position: relative;
  z-index: 1;
  padding: 0.9em;
  height: 100%;
  margin: 0 auto;
  transition: all 0.3s ease-in-out 0s;
  border-radius: 50%;
  font-size: 50px;
  color: #ffffff;
}
.cid-rMefnVkLRO .main-wrapper {
  padding: 3rem 0 0 0;
}
@media (max-width: 767px) {
  .cid-rMefnVkLRO .wrapper::before {
    display: none;
  }
}
@media (max-width: 991px) {
  .cid-rMefnVkLRO .third-elem .wrapper:before {
    display: none;
  }
}
.cid-rMefnVkLRO .mbr-section-title {
  margin: 0;
}
.cid-rMefnVkLRO .mbr-section-subtitle {
  color: #232323;
  text-align: center;
}
.cid-rMefnVkLRO .mbr-section-title,
.cid-rMefnVkLRO .underline {
  color: #ffffff;
}
.cid-rMefnW0SCN {
  padding-top: 45px;
  padding-bottom: 45px;
  background: linear-gradient(90deg, #000000, #000000);
}
.cid-rMefnW0SCN .mbr-overlay {
  background: #2bdc9d;
  background: linear-gradient(90deg, #2bdc9d, #51aafa);
}
.cid-rMefnW0SCN .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-rMuXHYMwRi {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #000000;
}
.cid-rMuXHYMwRi .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-rMuXHYMwRi H4 {
  color: #ffffff;
  text-align: left;
}
.cid-rMuXHYMwRi LABEL {
  color: #ffffff;
}
.cid-rMuXHYMwRi H5 {
  color: #ffffff;
  text-align: center;
}
.cid-rMuXHYMwRi P {
  color: #ffffff;
}
.cid-rMeUYw2kiz {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-rMeUYw2kiz a:link {
  text-decoration: none;
}
.cid-rMeUYw2kiz .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-rMeUYw2kiz .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-rMeUYw2kiz .inner-text {
  line-height: 3em;
}
.cid-rMeUYw2kiz .social-media {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rMeUYw2kiz .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-rMeUYw2kiz .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-rMeUYw2kiz .content-text,
.cid-rMeUYw2kiz .inner-text {
  color: #c1c1c1;
}
.cid-rMeVD0HbW0 {
  padding-top: 135px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/mbr-1-1920x1280.jpg");
}
.cid-rMeVD0HbW0 .mbr-overlay {
  background: #000000;
  background: linear-gradient(90deg, #000000, #000000);
}
.cid-rMeVD0HbW0 H1 {
  text-align: center;
}
.cid-rMul5XF517 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-rMul5XF517 .mbr-section-title {
  margin: 0;
}
.cid-rMul5XF517 .mbr-section-subtitle {
  margin-bottom: 2rem;
  color: #8d97ad;
}
.cid-rMul5XF517 .mbr-text {
  margin: 0;
  color: #efefef;
}
.cid-rMul5XF517 .wrapper {
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-radius: .25rem;
}
.cid-rMul5XF517 .card1 {
  background: linear-gradient(45deg, #5e19de, #ff695c);
}
.cid-rMul5XF517 .card2 {
  background: linear-gradient(45deg, #188ef4, #41a582);
}
.cid-rMul5XF517 .card3 {
  background: linear-gradient(45deg, #ff4f7b, #ff695c);
}
.cid-rMul5XF517 .card4 {
  background: linear-gradient(45deg, #1dc9cb, #1dc9cb);
}
@media (max-width: 991px) {
  .cid-rMul5XF517 .wrapper {
    margin-bottom: 5rem;
  }
}
.cid-rMul5XF517 .mbr-card-title {
  padding-bottom: 1rem;
}
.cid-rMul5XF517 .mbr-section-btn {
  padding-top: 1rem;
}
.cid-rMul5XF517 .card1 > .mbr-card-title {
  text-align: center;
}
.cid-rMul5XF517 .card2 > .mbr-card-title {
  text-align: center;
}
.cid-rMul5XF517 .card3 > .mbr-card-title {
  text-align: center;
}
.cid-rMefnSS0LD .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -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-rMefnSS0LD .nav-item,
.cid-rMefnSS0LD .nav-link,
.cid-rMefnSS0LD .navbar-caption {
  font-weight: normal;
}
.cid-rMefnSS0LD .nav-item:focus,
.cid-rMefnSS0LD .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rMefnSS0LD .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-rMefnSS0LD .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  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-rMefnSS0LD .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rMefnSS0LD .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rMefnSS0LD .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-rMefnSS0LD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rMefnSS0LD .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-rMefnSS0LD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rMefnSS0LD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rMefnSS0LD .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #000000;
}
.cid-rMefnSS0LD .navbar.opened {
  transition: all .3s;
  background: #000000 !important;
}
.cid-rMefnSS0LD .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-rMefnSS0LD .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rMefnSS0LD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rMefnSS0LD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rMefnSS0LD .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rMefnSS0LD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rMefnSS0LD .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-rMefnSS0LD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rMefnSS0LD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rMefnSS0LD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rMefnSS0LD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rMefnSS0LD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rMefnSS0LD .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rMefnSS0LD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rMefnSS0LD .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-rMefnSS0LD .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rMefnSS0LD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rMefnSS0LD .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rMefnSS0LD .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rMefnSS0LD .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rMefnSS0LD .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rMefnSS0LD .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-rMefnSS0LD .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rMefnSS0LD .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rMefnSS0LD .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-rMefnSS0LD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rMefnSS0LD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rMefnSS0LD .dropdown-item.active,
.cid-rMefnSS0LD .dropdown-item:active {
  background-color: transparent;
}
.cid-rMefnSS0LD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rMefnSS0LD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rMefnSS0LD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-rMefnSS0LD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rMefnSS0LD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rMefnSS0LD ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rMefnSS0LD .navbar-buttons {
  text-align: center;
}
.cid-rMefnSS0LD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rMefnSS0LD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rMefnSS0LD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rMefnSS0LD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rMefnSS0LD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rMefnSS0LD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rMefnSS0LD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rMefnSS0LD nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rMefnSS0LD nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rMefnSS0LD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rMefnSS0LD .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rMefnSS0LD a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rMefnSS0LD .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-rMefnSS0LD .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-rMefnSS0LD .soc-item {
  margin: .5rem .3rem;
}
.cid-rMefnSS0LD .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;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rMefnSS0LD .navbar {
    height: 77px;
  }
  .cid-rMefnSS0LD .navbar.opened {
    height: auto;
  }
  .cid-rMefnSS0LD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rMeV87nUSD {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
.cid-rMeV87nUSD .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-rMeV87nUSD H4 {
  color: #ffffff;
  text-align: left;
}
.cid-rMeV87nUSD LABEL {
  color: #ffffff;
}
.cid-rMeV87nUSD H5 {
  color: #ffffff;
  text-align: center;
}
.cid-rMeV87nUSD P {
  color: #ffffff;
}
.cid-rMeVRtROHH {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-rMeVRtROHH .card-icon {
  font-size: 56px;
  color: #ed4266;
  transition: color 0.3s;
}
.cid-rMeVRtROHH .icon2 {
  color: #f9b03e;
}
.cid-rMeVRtROHH .card-title {
  font-weight: 600;
  letter-spacing: 1px;
}
.cid-rMeVRtROHH p {
  font-weight: 400;
}
.cid-rMeVRtROHH .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #ed4266;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}
.cid-rMeVRtROHH .line2 {
  background: #f7ed4a;
}
.cid-rMeVRtROHH .card-wrapper {
  padding: 2.5rem 2rem;
  transition: background 0.3s;
  background: #255085;
}
.cid-rMeVRtROHH .card-wrapper:hover .link-ico {
  background-color: #ed4266;
  border-color: #ed4266;
  color: white;
}
.cid-rMeVRtROHH .card2 {
  background: #ed4266;
}
.cid-rMeVRtROHH .card-title,
.cid-rMeVRtROHH .card-ico,
.cid-rMeVRtROHH .line-wrap {
  text-align: center;
}
.cid-rMeVRtROHH .mbr-text,
.cid-rMeVRtROHH .card-link {
  text-align: center;
}
.cid-rMeW0Q49cJ {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-rMeW0Q49cJ a:link {
  text-decoration: none;
}
.cid-rMeW0Q49cJ .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-rMeW0Q49cJ .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-rMeW0Q49cJ .inner-text {
  line-height: 3em;
}
.cid-rMeW0Q49cJ .social-media {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rMeW0Q49cJ .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-rMeW0Q49cJ .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-rMeW0Q49cJ .content-text,
.cid-rMeW0Q49cJ .inner-text {
  color: #c1c1c1;
}
