body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Microgram Regular';
  font-size: 3.3rem;
}
.display-2 {
  font-family: 'font';
  font-size: 2.8rem;
}
.display-4 {
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
}
.display-5 {
  font-family: 'font';
  font-size: 2.3rem;
}
.display-7 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
}
/* ---- 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.64rem;
    font-size: calc( 1.805rem + (3.3 - 1.805) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.805rem + (3.3 - 1.805) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.24rem;
    font-size: calc( 1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.72rem;
    font-size: calc( 0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.84rem;
    font-size: calc( 1.455rem + (2.3 - 1.455) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.455rem + (2.3 - 1.455) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #210759 !important;
}
.bg-success {
  background-color: #000000 !important;
}
.bg-info {
  background-color: #e5524e !important;
}
.bg-warning {
  background-color: #555555 !important;
}
.bg-danger {
  background-color: #ffffff !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #210759 !important;
  border-color: #210759 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #210759 !important;
  border-color: #210759 !important;
}
.btn-primary:before {
  background-color: #070112 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #070112 !important;
  border-color: #070112 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #ff0800 !important;
  border-color: #ff0800 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #ff0800 !important;
  border-color: #ff0800 !important;
}
.btn-secondary:before {
  background-color: #b30600 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #b30600 !important;
  border-color: #b30600 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #e5524e !important;
  border-color: #e5524e !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #e5524e !important;
  border-color: #e5524e !important;
}
.btn-info:before {
  background-color: #c9221e !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #c9221e !important;
  border-color: #c9221e !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-success:before {
  background-color: #000000 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #555555 !important;
  border-color: #555555 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #555555 !important;
  border-color: #555555 !important;
}
.btn-warning:before {
  background-color: #2f2f2f !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #2f2f2f !important;
  border-color: #2f2f2f !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-danger:before {
  background-color: #d9d9d9 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-white:before {
  background-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;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-black:before {
  background-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;
  border-color: #000000;
  color: #000000;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff;
  border-color: #210759;
}
.btn-primary-outline:before {
  background-color: #210759;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #210759 !important;
  border-color: #210759 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #990500;
  color: #990500;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff;
  border-color: #ff0800;
}
.btn-secondary-outline:before {
  background-color: #ff0800;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff0800 !important;
  border-color: #ff0800 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #b31e1a;
  color: #b31e1a;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff;
  border-color: #e5524e;
}
.btn-info-outline:before {
  background-color: #e5524e;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #e5524e !important;
  border-color: #e5524e !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff;
  border-color: #000000;
}
.btn-success-outline:before {
  background-color: #000000;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #222222;
  color: #222222;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff;
  border-color: #555555;
}
.btn-warning-outline:before {
  background-color: #555555;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #555555 !important;
  border-color: #555555 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #cccccc;
  color: #cccccc;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #808080;
  border-color: #ffffff;
}
.btn-danger-outline:before {
  background-color: #ffffff;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff;
  border-color: #333333;
}
.btn-black-outline:before {
  background-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  border-color: #ffffff;
}
.btn-white-outline:before {
  background-color: #ffffff;
}
.btn-bgr {
  position: relative;
  transition: border 0.3s ease-in-out, color 0.5s;
  -webkit-mask-image: -webkit-radial-gradient(circle, white, black);
}
.btn-bgr span {
  position: relative;
  z-index: 12;
}
.btn-bgr:before {
  content: ' ';
  position: absolute;
  top: -2px;
  left: -2px;
  right: 105%;
  bottom: -2px;
  transition: right 0.3s ease-in-out;
  z-index: -1;
  border-radius: 100px;
}
.btn-bgr:hover:before {
  right: -2px;
}
.btn-underline {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: color 0.2s ease-out;
}
.btn-underline:before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #210759;
  -webkit-transition: width 0.2s ease-out;
  -moz-transition: width 0.2s ease-out;
  transition: width 0.2s ease-out;
}
.btn-underline:hover:before {
  width: 100%;
}
.text-primary {
  color: #210759 !important;
}
.text-secondary {
  color: #ff0800 !important;
}
.text-success {
  color: #000000 !important;
}
.text-info {
  color: #e5524e !important;
}
.text-warning {
  color: #555555 !important;
}
.text-danger {
  color: #ffffff !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #990500 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #000000 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #b31e1a !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #222222 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #cccccc !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: #70c770;
}
.alert-info {
  background-color: #e5524e;
}
.alert-warning {
  background-color: #555555;
}
.alert-danger {
  background-color: #ffffff;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #210759;
  border-color: #210759;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #210759;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #4d10cf;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #b3b3b3;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #c8c8c8;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
blockquote {
  border-color: #210759;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.form2 .form-control {
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
}
.form2 .input-group-btn a.btn {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.form2 .input-group-btn button[type="submit"] {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.form3 input[type="email"] {
  border-radius: 100px !important;
}
@media (max-width: 349px) {
  .form2 input[type="email"] {
    border-radius: 100px !important;
  }
  .form2 .input-group-btn a.btn {
    border-radius: 100px !important;
  }
  .form2 .input-group-btn button[type="submit"] {
    border-radius: 100px !important;
  }
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #210759;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #210759;
}
/*Menu*/
.display-1 > .mbr-iconfont {
  font-size: 5.28rem;
}
.display-2 > .mbr-iconfont {
  font-size: 4.48rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.44rem;
}
.display-5 > .mbr-iconfont {
  font-size: 3.68rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.92rem;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #210759;
  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: #210759;
  border-bottom-color: #210759;
}
.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: #210759 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #ff0800 !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='%23210759' %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-tmafW4O7h3 .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
@media (min-width: 992px) {
  .cid-tmafW4O7h3 .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 2.5385em 0.235em 3.5385em !important;
    margin: 0 !important;
  }
}
.cid-tmafW4O7h3 .menu-logo {
  display: flex;
  position: relative;
  -webkit-align-items: center;
  align-items: center;
  margin-right: auto;
}
.cid-tmafW4O7h3 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tmafW4O7h3 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tmafW4O7h3 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tmafW4O7h3 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tmafW4O7h3 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tmafW4O7h3 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tmafW4O7h3 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-tmafW4O7h3 a {
  font-style: normal;
}
.cid-tmafW4O7h3 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-tmafW4O7h3 .nav-item a {
  padding: 0.4rem 0 !important;
}
.cid-tmafW4O7h3 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tmafW4O7h3 .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
}
.cid-tmafW4O7h3 .content-text {
  margin-bottom: 0;
}
.cid-tmafW4O7h3 .navbar-nav {
  position: relative;
  min-height: 60px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-tmafW4O7h3 .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #210759;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-tmafW4O7h3 .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
  .cid-tmafW4O7h3 .navbar-nav .nav-item a {
    margin: 0 1.3rem !important;
  }
}
@media (max-width: 991px) {
  .cid-tmafW4O7h3 .navbar-nav .nav-item a {
    margin: 0 !important;
  }
}
.cid-tmafW4O7h3 .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-tmafW4O7h3 .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-tmafW4O7h3 .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-tmafW4O7h3 .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-tmafW4O7h3 .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tmafW4O7h3 .nav-dropdown .link {
  font-weight: 400;
}
.cid-tmafW4O7h3 .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-tmafW4O7h3 .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-tmafW4O7h3 .content-right-side {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-tmafW4O7h3 .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
  }
}
.cid-tmafW4O7h3 .menu-content-top {
  display: none;
  padding: 1rem 0;
  transition: height 0.3s ease-in-out;
}
.cid-tmafW4O7h3 .menu-content-top.show {
  display: block;
}
.cid-tmafW4O7h3 .content-right-side .content-link {
  margin-left: 1rem;
}
.cid-tmafW4O7h3 .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
@media (max-width: 991px) {
  .cid-tmafW4O7h3 .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-tmafW4O7h3 .dropdown-item {
    padding: 0.235em 0 !important;
    margin: 0 !important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
  }
  .cid-tmafW4O7h3 .dropdown-item:before {
    display: none;
  }
  .cid-tmafW4O7h3 .menu-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .cid-tmafW4O7h3 .menu-bottom {
    width: 100%;
    padding: 0 1rem;
    display: block;
  }
  .cid-tmafW4O7h3 img {
    height: 3.8rem !important;
  }
  .cid-tmafW4O7h3 .btn {
    display: flex;
  }
  .cid-tmafW4O7h3 button.navbar-toggler {
    display: block;
    align-self: center;
  }
  .cid-tmafW4O7h3 .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-tmafW4O7h3 .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tmafW4O7h3 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tmafW4O7h3 .navbar-collapse.collapsing,
  .cid-tmafW4O7h3 .navbar-collapse.show {
    display: block !important;
  }
  .cid-tmafW4O7h3 .navbar-collapse.collapsing .navbar-nav,
  .cid-tmafW4O7h3 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tmafW4O7h3 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tmafW4O7h3 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-tmafW4O7h3 .navbar-collapse.collapsing .navbar-buttons,
  .cid-tmafW4O7h3 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tmafW4O7h3 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tmafW4O7h3 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tmafW4O7h3 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-tmafW4O7h3 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tmafW4O7h3 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tmafW4O7h3 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 992px) {
  .cid-tmafW4O7h3 .navbar .menu-content-top {
    display: block;
  }
  .cid-tmafW4O7h3 .menu-content-top .row {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .cid-tmafW4O7h3 .content-right-side {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-flex-basis: 70%;
    flex-basis: 70%;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-tmafW4O7h3 .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-tmafW4O7h3 .menu-bottom {
    display: flex;
  }
  .cid-tmafW4O7h3 .navbar {
    display: block;
    padding: 0;
  }
  .cid-tmafW4O7h3 .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tmafW4O7h3 .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-tmafW4O7h3 .navbar-toggler {
    display: none;
  }
}
.cid-tmafW4O7h3 .navbar-short .menu-content-top {
  border: none;
}
.cid-tmafW4O7h3 .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tmafW4O7h3 .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-tmafW4O7h3 .navbar-toggleable-sm .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 5rem;
  width: 100%;
}
.cid-tmafW4O7h3 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-tmafW4O7h3 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tmafW4O7h3 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tmafW4O7h3 .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tmafW4O7h3 .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tmafW4O7h3 .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tmafW4O7h3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-tmafW4O7h3 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tmafW4O7h3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tmafW4O7h3 .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-tmafW4O7h3 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tmafW4O7h3 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tmafW4O7h3 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-tmafW4O7h3 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tmafW4O7h3 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tmafW4O7h3 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tmafW4O7h3 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tmafW4O7h3 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tmafW4O7h3 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
}
.cid-tmafW4O7h3 button.navbar-toggler:focus {
  outline: none;
}
.cid-tmafW4O7h3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #210759;
}
.cid-tmafW4O7h3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tmafW4O7h3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tmafW4O7h3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tmafW4O7h3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tmafW4O7h3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tmafW4O7h3 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tmafW4O7h3 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tmafW4O7h3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tmafW4O7h3 .collapsed.navbar {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tmafW4O7h3 .collapsed .menu-bottom {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tmafW4O7h3 .collapsed .menu-logo {
  margin-right: 0;
}
.cid-tmafW4O7h3 .collapsed .btn {
  display: flex;
}
.cid-tmafW4O7h3 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tmafW4O7h3 .collapsed .navbar-collapse.collapsing,
.cid-tmafW4O7h3 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tmafW4O7h3 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tmafW4O7h3 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tmafW4O7h3 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tmafW4O7h3 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tmafW4O7h3 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tmafW4O7h3 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tmafW4O7h3 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tmafW4O7h3 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tmafW4O7h3 .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.5rem  - 1rem);
  }
  .cid-tmafW4O7h3 .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tmafW4O7h3 .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tmafW4O7h3 .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-tmafW4O7h3 .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tmafW4O7h3 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .25s;
  transition-property: opacity, padding, height;
}
.cid-tmafW4O7h3 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tmafW4O7h3 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tmafW4O7h3 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-tmafW4O7h3 .collapsed .dropdown-item:before {
  display: none;
}
.cid-tmafW4O7h3 .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-tmafW4O7h3 .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-tmafW4O7h3 .nav-link:focus {
  outline: none;
}
.cid-tmafW4O7h3 .navbar-toggler {
  position: relative;
}
.cid-tmafW4O7h3 .dropdown-item.active,
.cid-tmafW4O7h3 .dropdown-item:active {
  background-color: #ffffff;
  color: auto;
}
.cid-tmafW4O7h3 .nav-link:hover,
.cid-tmafW4O7h3 .dropdown-item:hover {
  color: #4284df;
}
.cid-tmafGkBsSs .modal-body .close {
  background: #1b1b1b;
}
.cid-tmafGkBsSs .modal-body .close span {
  font-style: normal;
}
.cid-tmafGkBsSs .carousel-inner > .active,
.cid-tmafGkBsSs .carousel-inner > .next,
.cid-tmafGkBsSs .carousel-inner > .prev {
  display: flex;
}
.cid-tmafGkBsSs .carousel-control .icon-next,
.cid-tmafGkBsSs .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-tmafGkBsSs .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tmafGkBsSs .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tmafGkBsSs .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-tmafGkBsSs .boxed-slider > div {
  position: relative;
}
.cid-tmafGkBsSs .container img {
  width: 100%;
}
.cid-tmafGkBsSs .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-tmafGkBsSs .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-tmafGkBsSs .mbr-table-cell {
  padding: 0;
}
.cid-tmafGkBsSs .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tmafGkBsSs .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-tmafGkBsSs .mbr-overlay {
  z-index: 1;
}
.cid-tmafGkBsSs .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-tmafGkBsSs .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-tmafGkBsSs .carousel-item.active.right,
.cid-tmafGkBsSs .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-tmafGkBsSs .carousel-item.active.left,
.cid-tmafGkBsSs .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-tmafGkBsSs .carousel-item.active,
.cid-tmafGkBsSs .carousel-item.next.left,
.cid-tmafGkBsSs .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-tmafGkBsSs .mbr-slider .carousel-control {
  top: 50%;
  width: 70px;
  height: 70px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-tmafGkBsSs .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tmafGkBsSs .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tmafGkBsSs .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-tmafGkBsSs .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tmafGkBsSs .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tmafGkBsSs .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-tmafGkBsSs .mbr-slider .carousel-indicators li.active,
.cid-tmafGkBsSs .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-tmafGkBsSs .mbr-slider .carousel-indicators li::after,
.cid-tmafGkBsSs .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-tmafGkBsSs .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-tmafGkBsSs .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-tmafGkBsSs .mbr-slider > .container img {
  width: 100%;
}
.cid-tmafGkBsSs .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-tmafGkBsSs .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-tmafGkBsSs .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tmafGkBsSs .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-tmafGkBsSs .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-tmafGkBsSs .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-tmafGkBsSs .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-tmafGkBsSs .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-tmafGkBsSs .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-tmafGkBsSs .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-tmafGkBsSs .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-tmafGkBsSs .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-tmafGkBsSs .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-tmafGkBsSs H2 {
  text-align: left;
  color: #ffffff;
}
.cid-tmafGkBsSs P {
  text-align: left;
}
.cid-tmahl5WgXT {
  background-color: #ffffff;
}
.cid-tmahl5WgXT .media-content .btn-bgr {
  z-index: 0;
}
.cid-tmahl5WgXT .mbr-section-text {
  word-break: break-word;
}
.cid-tmahl5WgXT .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
@media (min-width: 992px) {
  .cid-tmahl5WgXT .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tmahl5WgXT .mbr-figure {
    padding-top: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-tmahl5WgXT .mbr-text {
    text-align: center;
  }
}
.cid-tmahl5WgXT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tmahl5WgXT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tmahl5WgXT H1 {
  color: #1d2671;
}
.cid-tmahl5WgXT .mbr-text,
.cid-tmahl5WgXT .mbr-section-btn {
  color: #a2a2a2;
}
.cid-tmahEeefQh {
  background-image: url("../../../assets/images/mbr-1920x1280.jpeg");
}
.cid-tmahEeefQh .text-content {
  padding-top: 90px;
  padding-bottom: 90px;
}
.cid-tmahEeefQh .text-content .btn-bgr {
  z-index: 0;
}
.cid-tmahEeefQh .mbr-overlay {
  background: linear-gradient(90deg, #000000, #4284df);
}
.cid-tmahEeefQh h3 {
  color: #000000;
  font-weight: 300;
}
.cid-tmahEeefQh p {
  color: #464646;
}
.cid-tmahEeefQh h2 {
  color: #000000;
}
.cid-tmahEeefQh .media-container-row {
  padding-left: 3rem;
  padding-right: 3rem;
}
@media (max-width: 767px) {
  .cid-tmahEeefQh .media-container-row {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.cid-tmahEeefQh .text-content {
  padding-left: 1rem;
  padding-right: 1rem;
  width: 50%;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tmahEeefQh .text-content {
    width: 80%;
  }
}
@media (max-width: 599px) {
  .cid-tmahEeefQh .text-content {
    width: 100%;
  }
}
.cid-tmahEeefQh .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
}
.cid-tmahEeefQh .mbr-section-btn {
  margin-left: -0.8rem;
}
@media (max-width: 767px) {
  .cid-tmahEeefQh .mbr-text {
    text-align: center;
  }
}
.cid-tmahEeefQh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tmahEeefQh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tmahEeefQh .mbr-section-btn,
.cid-tmahEeefQh .mbr-section-title {
  color: #ff0800;
}
.cid-tmahEeefQh .mbr-section-subtitle {
  color: #a2a2a2;
}
.cid-tmexWXmQXf {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tmexWXmQXf .mbr-text {
  color: #767676;
  text-align: left;
}
.cid-tmexWXmQXf h4 {
  font-weight: 500;
}
.cid-tmexWXmQXf h4,
.cid-tmexWXmQXf h5 {
  text-align: center;
}
.cid-tmexWXmQXf p {
  text-align: center;
}
.cid-tmexWXmQXf .card-box {
  text-align: center;
}
.cid-tmexWXmQXf .card-img {
  font-size: 3rem;
}
.cid-tmexWXmQXf .mbr-iconfont {
  color: #210759;
}
.cid-tmexWXmQXf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tmexWXmQXf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tmexWXmQXf .card-title,
.cid-tmexWXmQXf .card-img {
  color: #ff0800;
  text-align: left;
}
.cid-tmexWXmQXf H2 {
  color: #210759;
  text-align: left;
}
.cid-tmexWXmQXf .mbr-section-subtitle {
  color: #a2a2a2;
  text-align: left;
}
.cid-tmeItGxwJA {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmeItGxwJA .image-wrap-1 {
  padding-right: 0;
  padding-left: 1rem;
}
@media (max-width: 992px) {
  .cid-tmeItGxwJA .image-wrap-1 {
    padding: 0 12px;
  }
}
.cid-tmeItGxwJA .image-wrap-1 .image-wrapper {
  height: 720px;
  object-fit: cover;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tmeItGxwJA .image-wrap-1 .image-wrapper {
    height: 500px;
  }
}
@media (max-width: 768px) {
  .cid-tmeItGxwJA .image-wrap-1 .image-wrapper {
    height: 350px;
  }
}
.cid-tmeItGxwJA .image-wrap-1 .image-wrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  padding: 0;
}
.cid-tmeItGxwJA .image-wrap-2 {
  padding-right: 2rem;
  padding-left: 1rem;
}
@media (max-width: 992px) {
  .cid-tmeItGxwJA .image-wrap-2 {
    padding: 0 24px;
  }
}
.cid-tmeItGxwJA .image-wrap-2 .image-wrapper {
  height: 360px;
  object-fit: cover;
  position: relative;
}
@media (max-width: 768px) {
  .cid-tmeItGxwJA .image-wrap-2 .image-wrapper {
    height: 350px;
  }
}
.cid-tmeItGxwJA .image-wrap-2 .image-wrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  padding: 0;
}
.cid-tmeItGxwJA .image-wrap {
  padding: 0;
}
.cid-tmeItGxwJA .card-link {
  height: 100%;
  z-index: 1;
  pointer-events: none;
  transition: all .4s ease;
}
.cid-tmeItGxwJA .card-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}
.cid-tmeItGxwJA .card-wrapper .mbr-title {
  pointer-events: visible;
  margin: 0;
  z-index: 1;
  opacity: 0;
  transform: translate(0, 5%);
  transition: all .3s ease;
}
.cid-tmeItGxwJA .card-wrapper .mbr-text {
  pointer-events: visible;
  margin: 5px 0 0 0;
  opacity: 0;
  transform: translate(0, 5%);
  transition: all .3s ease;
}
.cid-tmeItGxwJA .image-wrapper:hover .mbr-title {
  opacity: 1;
  transform: translate(0, 0);
}
.cid-tmeItGxwJA .image-wrapper:hover .mbr-text {
  opacity: .7;
  transform: translate(0, 0);
}
.cid-tmeItGxwJA .image-wrapper:hover .card-link {
  position: absolute;
  width: 100%;
  background-color: #ff0800;
}
.cid-tmeItGxwJA .mbr-title {
  color: #FFFFFF;
  text-align: center;
}
.cid-tmeItGxwJA .mbr-text {
  color: #FFFFFF;
  text-align: center;
}
.cid-us3kmnZcEY {
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-us3kmnZcEY .media-content .btn-bgr {
  z-index: 0;
}
.cid-us3kmnZcEY .mbr-overlay {
  background: linear-gradient(90deg, #000000, #210759);
}
@media (min-width: 992px) {
  .cid-us3kmnZcEY .media-content {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
@media (max-width: 991px) {
  .cid-us3kmnZcEY {
    text-align: center !important;
  }
  .cid-us3kmnZcEY .mbr-text {
    text-align: center;
  }
}
.cid-us3kmnZcEY .media-container-row {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-us3kmnZcEY .mbr-fallback-image.disabled {
  display: none;
}
.cid-us3kmnZcEY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tngsXYW6uD {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tngsXYW6uD .mbr-fallback-image.disabled {
  display: none;
}
.cid-tngsXYW6uD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tngsXYW6uD .text-wrapper {
  position: relative;
  margin: 0 160px 60px;
  padding-top: 20px;
  border-top: 2px solid #e5e5e5;
}
@media (max-width: 992px) {
  .cid-tngsXYW6uD .text-wrapper {
    margin: 0 30px 40px;
    padding-top: 12px;
  }
}
@media (max-width: 768px) {
  .cid-tngsXYW6uD .text-wrapper {
    margin: 0 30px 30px;
  }
}
.cid-tngsXYW6uD .text-wrapper .mbr-section-title {
  margin: 0;
}
.cid-tngsXYW6uD .text-wrapper .mbr-text {
  margin-top: 20px;
}
@media (max-width: 992px) {
  .cid-tngsXYW6uD .text-wrapper .mbr-text {
    margin-top: 12px;
  }
}
.cid-tngsXYW6uD .client-wrapper {
  margin: 0 144px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tngsXYW6uD .client-wrapper {
    margin: 0 18px;
  }
}
.cid-tngsXYW6uD .client-wrapper .card {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-tngsXYW6uD .client-wrapper .card {
    margin-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .cid-tngsXYW6uD .client-wrapper .card {
    height: auto;
    margin-bottom: 40px;
  }
}
.cid-tngsXYW6uD .client-wrapper .card img {
  width: 65%;
  object-fit: cover;
}
.cid-tngsXYW6uD .mbr-section-title {
  color: #000000;
}
.cid-tngsXYW6uD .mbr-text {
  color: #000000;
}
.cid-tngtJyDkw7 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tngtJyDkw7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tngtJyDkw7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tngtJyDkw7 .text-wrapper {
  position: relative;
  margin: 0 160px 60px;
  padding-top: 20px;
  border-top: 2px solid #e5e5e5;
}
@media (max-width: 992px) {
  .cid-tngtJyDkw7 .text-wrapper {
    margin: 0 30px 40px;
    padding-top: 12px;
  }
}
@media (max-width: 768px) {
  .cid-tngtJyDkw7 .text-wrapper {
    margin: 0 30px 30px;
  }
}
.cid-tngtJyDkw7 .text-wrapper .mbr-section-title {
  margin: 0;
}
.cid-tngtJyDkw7 .text-wrapper .mbr-text {
  margin-top: 20px;
}
@media (max-width: 992px) {
  .cid-tngtJyDkw7 .text-wrapper .mbr-text {
    margin-top: 12px;
  }
}
.cid-tngtJyDkw7 .client-wrapper {
  margin: 0 144px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tngtJyDkw7 .client-wrapper {
    margin: 0 18px;
  }
}
.cid-tngtJyDkw7 .client-wrapper .card {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-tngtJyDkw7 .client-wrapper .card {
    margin-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .cid-tngtJyDkw7 .client-wrapper .card {
    height: auto;
    margin-bottom: 40px;
  }
}
.cid-tngtJyDkw7 .client-wrapper .card img {
  width: 65%;
  object-fit: cover;
}
.cid-tngtJyDkw7 .mbr-section-title {
  color: #000000;
}
.cid-tngtJyDkw7 .mbr-text {
  color: #000000;
}
.cid-tzrtTu4jxf {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tzrtTu4jxf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzrtTu4jxf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzrtTu4jxf .text-wrapper {
  position: relative;
  margin: 0 160px 60px;
  padding-top: 20px;
  border-top: 2px solid #e5e5e5;
}
@media (max-width: 992px) {
  .cid-tzrtTu4jxf .text-wrapper {
    margin: 0 30px 40px;
    padding-top: 12px;
  }
}
@media (max-width: 768px) {
  .cid-tzrtTu4jxf .text-wrapper {
    margin: 0 30px 30px;
  }
}
.cid-tzrtTu4jxf .text-wrapper .mbr-section-title {
  margin: 0;
}
.cid-tzrtTu4jxf .text-wrapper .mbr-text {
  margin-top: 20px;
}
@media (max-width: 992px) {
  .cid-tzrtTu4jxf .text-wrapper .mbr-text {
    margin-top: 12px;
  }
}
.cid-tzrtTu4jxf .client-wrapper {
  margin: 0 144px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tzrtTu4jxf .client-wrapper {
    margin: 0 18px;
  }
}
.cid-tzrtTu4jxf .client-wrapper .card {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-tzrtTu4jxf .client-wrapper .card {
    margin-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .cid-tzrtTu4jxf .client-wrapper .card {
    height: auto;
    margin-bottom: 40px;
  }
}
.cid-tzrtTu4jxf .client-wrapper .card img {
  width: 65%;
  object-fit: cover;
}
.cid-tzrtTu4jxf .mbr-section-title {
  color: #000000;
}
.cid-tzrtTu4jxf .mbr-text {
  color: #000000;
}
.cid-tmeLok1IGq {
  background: #ffffff;
}
.cid-tmeLok1IGq .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-tmeLok1IGq figcaption {
  position: relative;
}
.cid-tmeLok1IGq figcaption div {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tmeLok1IGq .image-block {
    width: 100% !important;
  }
}
.cid-tngFK8JUB5 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tngFK8JUB5 .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tngFK8JUB5 .carousel-controls a {
  transition: opacity .5s;
  font-size: 2rem;
}
.cid-tngFK8JUB5 .carousel-controls a span {
  position: absolute;
  top: 180px;
  padding: 10px;
  border-radius: 50%;
  color: #585858;
  background: #c8c6c6;
  opacity: .5;
}
.cid-tngFK8JUB5 .carousel-controls a:hover span {
  opacity: 1;
}
.cid-tngFK8JUB5 .user_image {
  width: 200px;
  height: 200px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 2rem auto;
}
.cid-tngFK8JUB5 .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
@media (max-width: 230px) {
  .cid-tngFK8JUB5 .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-tngFK8JUB5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tngFK8JUB5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tngFK8JUB5 H2 {
  color: #210759;
}
.cid-tngFK8JUB5 .user_desk {
  color: #210759;
}
.cid-tngFK8JUB5 .user_name {
  color: #ff0800;
}
.cid-tmeFlutoiH {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f4f4f4;
}
.cid-tmeFlutoiH .card {
  padding: 40px;
  background-color: #ff0800;
}
.cid-tmeFlutoiH .mbr-section-btn {
  margin: 0 -0.6rem;
}
.cid-tmeFlutoiH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tmeFlutoiH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tmeFlutoiH .mbr-section-title {
  color: #ffffff;
}
.cid-tmeFlutoiH .mbr-text {
  color: #ffffff;
}
.cid-tme5DuPIS6 {
  background-color: #ffffff;
}
.cid-tme5DuPIS6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tme5DuPIS6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tme5DuPIS6 .footer-head {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding-top: 4rem;
  padding-bottom: 3rem;
}
.cid-tme5DuPIS6 .row {
  align-items: center;
}
.cid-tme5DuPIS6 .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-tme5DuPIS6 .col-brand {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-tme5DuPIS6 .col-brand {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-tme5DuPIS6 .col-brand {
    width: 100%;
    margin: 0 0 60px;
  }
}
.cid-tme5DuPIS6 .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
  white-space: normal;
}
.cid-tme5DuPIS6 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tme5DuPIS6 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tme5DuPIS6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600 !important;
}
.cid-tme5DuPIS6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tme5DuPIS6 .brand-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #210759;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tme5DuPIS6 .brand-text {
    margin-top: 16px;
    max-width: 254px;
  }
}
@media (max-width: 767px) {
  .cid-tme5DuPIS6 .brand-text {
    max-width: 244px;
  }
}
@media (max-width: 575px) {
  .cid-tme5DuPIS6 .brand-text {
    max-width: 100%;
    margin-top: 40px;
  }
}
.cid-tme5DuPIS6 .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cid-tme5DuPIS6 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-tme5DuPIS6 .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tme5DuPIS6 .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
.cid-tme5DuPIS6 .col-links {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-tme5DuPIS6 .col-links {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-tme5DuPIS6 .col-links {
    width: 100%;
    padding: 0 !important;
    order: 5;
    margin: 40px 0 0;
  }
}
.cid-tme5DuPIS6 .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  color: #210759;
}
@media (max-width: 991px) {
  .cid-tme5DuPIS6 .list {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-tme5DuPIS6 .list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
}
.cid-tme5DuPIS6 .list li {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-tme5DuPIS6 .list li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .cid-tme5DuPIS6 .list li {
    width: 50%;
    padding: 0 20px !important;
  }
}
.cid-tme5DuPIS6 .col-contacts {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-tme5DuPIS6 .col-contacts {
    display: flex;
    width: 100%;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-tme5DuPIS6 .col-contacts {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px) {
  .cid-tme5DuPIS6 .col-contacts {
    flex-wrap: wrap;
  }
}
.cid-tme5DuPIS6 .contact-text {
  width: 100%;
  color: #210759;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-tme5DuPIS6 .contact-text {
    width: 50%;
    padding: 0 20px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-tme5DuPIS6 .contact-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-tme5DuPIS6 .contact-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tme5DuPIS6 .contact-container {
    width: 50%;
    padding: 0 20px !important;
  }
}
@media (max-width: 575px) {
  .cid-tme5DuPIS6 .contact-container {
    width: 100%;
  }
}
.cid-tme5DuPIS6 .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
  background-color: #ff0800;
}
.cid-tme5DuPIS6 .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-tme5DuPIS6 .contact-item {
  display: flex;
  align-items: flex-start;
}
.cid-tme5DuPIS6 .contact-item:not(:first-child) {
  margin-top: 20px;
}
.cid-tme5DuPIS6 .contact-item-text {
  color: #2A2A2A;
  flex-grow: 1;
}
.cid-tme5DuPIS6 .footer-copyright {
  position: relative;
  z-index: 11;
  width: 100%;
  background-color: #210759;
}
.cid-tme5DuPIS6 .col-copyright {
  width: 100%;
  padding: 20px !important;
}
.cid-tme5DuPIS6 .copyright {
  color: #efefec;
}
.cid-tme5DuPIS6 .circle-blur {
  position: absolute;
  display: block;
  width: 400px;
  height: 400px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .5;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
.cid-tme5DuPIS6 .circle-blur1 {
  top: -150px;
  left: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-tme5DuPIS6 .circle-blur2 {
  bottom: -150px;
  right: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-tngvIIUxu0 .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
@media (min-width: 992px) {
  .cid-tngvIIUxu0 .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 2.5385em 0.235em 3.5385em !important;
    margin: 0 !important;
  }
}
.cid-tngvIIUxu0 .menu-logo {
  display: flex;
  position: relative;
  -webkit-align-items: center;
  align-items: center;
  margin-right: auto;
}
.cid-tngvIIUxu0 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tngvIIUxu0 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tngvIIUxu0 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tngvIIUxu0 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tngvIIUxu0 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tngvIIUxu0 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tngvIIUxu0 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-tngvIIUxu0 a {
  font-style: normal;
}
.cid-tngvIIUxu0 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-tngvIIUxu0 .nav-item a {
  padding: 0.4rem 0 !important;
}
.cid-tngvIIUxu0 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tngvIIUxu0 .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
}
.cid-tngvIIUxu0 .content-text {
  margin-bottom: 0;
}
.cid-tngvIIUxu0 .navbar-nav {
  position: relative;
  min-height: 60px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-tngvIIUxu0 .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #210759;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-tngvIIUxu0 .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
  .cid-tngvIIUxu0 .navbar-nav .nav-item a {
    margin: 0 1.3rem !important;
  }
}
@media (max-width: 991px) {
  .cid-tngvIIUxu0 .navbar-nav .nav-item a {
    margin: 0 !important;
  }
}
.cid-tngvIIUxu0 .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-tngvIIUxu0 .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-tngvIIUxu0 .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-tngvIIUxu0 .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-tngvIIUxu0 .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tngvIIUxu0 .nav-dropdown .link {
  font-weight: 400;
}
.cid-tngvIIUxu0 .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-tngvIIUxu0 .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-tngvIIUxu0 .content-right-side {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-tngvIIUxu0 .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
  }
}
.cid-tngvIIUxu0 .menu-content-top {
  display: none;
  padding: 1rem 0;
  transition: height 0.3s ease-in-out;
}
.cid-tngvIIUxu0 .menu-content-top.show {
  display: block;
}
.cid-tngvIIUxu0 .content-right-side .content-link {
  margin-left: 1rem;
}
.cid-tngvIIUxu0 .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
@media (max-width: 991px) {
  .cid-tngvIIUxu0 .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-tngvIIUxu0 .dropdown-item {
    padding: 0.235em 0 !important;
    margin: 0 !important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
  }
  .cid-tngvIIUxu0 .dropdown-item:before {
    display: none;
  }
  .cid-tngvIIUxu0 .menu-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .cid-tngvIIUxu0 .menu-bottom {
    width: 100%;
    padding: 0 1rem;
    display: block;
  }
  .cid-tngvIIUxu0 img {
    height: 3.8rem !important;
  }
  .cid-tngvIIUxu0 .btn {
    display: flex;
  }
  .cid-tngvIIUxu0 button.navbar-toggler {
    display: block;
    align-self: center;
  }
  .cid-tngvIIUxu0 .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-tngvIIUxu0 .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tngvIIUxu0 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tngvIIUxu0 .navbar-collapse.collapsing,
  .cid-tngvIIUxu0 .navbar-collapse.show {
    display: block !important;
  }
  .cid-tngvIIUxu0 .navbar-collapse.collapsing .navbar-nav,
  .cid-tngvIIUxu0 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tngvIIUxu0 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tngvIIUxu0 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-tngvIIUxu0 .navbar-collapse.collapsing .navbar-buttons,
  .cid-tngvIIUxu0 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tngvIIUxu0 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tngvIIUxu0 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tngvIIUxu0 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-tngvIIUxu0 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tngvIIUxu0 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tngvIIUxu0 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 992px) {
  .cid-tngvIIUxu0 .navbar .menu-content-top {
    display: block;
  }
  .cid-tngvIIUxu0 .menu-content-top .row {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .cid-tngvIIUxu0 .content-right-side {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-flex-basis: 70%;
    flex-basis: 70%;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-tngvIIUxu0 .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-tngvIIUxu0 .menu-bottom {
    display: flex;
  }
  .cid-tngvIIUxu0 .navbar {
    display: block;
    padding: 0;
  }
  .cid-tngvIIUxu0 .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tngvIIUxu0 .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-tngvIIUxu0 .navbar-toggler {
    display: none;
  }
}
.cid-tngvIIUxu0 .navbar-short .menu-content-top {
  border: none;
}
.cid-tngvIIUxu0 .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tngvIIUxu0 .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-tngvIIUxu0 .navbar-toggleable-sm .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 5rem;
  width: 100%;
}
.cid-tngvIIUxu0 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-tngvIIUxu0 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tngvIIUxu0 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tngvIIUxu0 .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tngvIIUxu0 .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tngvIIUxu0 .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tngvIIUxu0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-tngvIIUxu0 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tngvIIUxu0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tngvIIUxu0 .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-tngvIIUxu0 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tngvIIUxu0 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tngvIIUxu0 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-tngvIIUxu0 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tngvIIUxu0 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tngvIIUxu0 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tngvIIUxu0 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tngvIIUxu0 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tngvIIUxu0 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
}
.cid-tngvIIUxu0 button.navbar-toggler:focus {
  outline: none;
}
.cid-tngvIIUxu0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #210759;
}
.cid-tngvIIUxu0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tngvIIUxu0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tngvIIUxu0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tngvIIUxu0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tngvIIUxu0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tngvIIUxu0 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tngvIIUxu0 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tngvIIUxu0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tngvIIUxu0 .collapsed.navbar {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tngvIIUxu0 .collapsed .menu-bottom {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tngvIIUxu0 .collapsed .menu-logo {
  margin-right: 0;
}
.cid-tngvIIUxu0 .collapsed .btn {
  display: flex;
}
.cid-tngvIIUxu0 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tngvIIUxu0 .collapsed .navbar-collapse.collapsing,
.cid-tngvIIUxu0 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tngvIIUxu0 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tngvIIUxu0 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tngvIIUxu0 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tngvIIUxu0 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tngvIIUxu0 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tngvIIUxu0 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tngvIIUxu0 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tngvIIUxu0 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tngvIIUxu0 .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.5rem  - 1rem);
  }
  .cid-tngvIIUxu0 .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tngvIIUxu0 .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tngvIIUxu0 .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-tngvIIUxu0 .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tngvIIUxu0 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .25s;
  transition-property: opacity, padding, height;
}
.cid-tngvIIUxu0 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tngvIIUxu0 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tngvIIUxu0 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-tngvIIUxu0 .collapsed .dropdown-item:before {
  display: none;
}
.cid-tngvIIUxu0 .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-tngvIIUxu0 .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-tngvIIUxu0 .nav-link:focus {
  outline: none;
}
.cid-tngvIIUxu0 .navbar-toggler {
  position: relative;
}
.cid-tngvIIUxu0 .dropdown-item.active,
.cid-tngvIIUxu0 .dropdown-item:active {
  background-color: #ffffff;
  color: auto;
}
.cid-tngvIIUxu0 .nav-link:hover,
.cid-tngvIIUxu0 .dropdown-item:hover {
  color: #4284df;
}
.cid-tngAgk2WrK {
  display: flex;
  background-image: url("../../../assets/images/mbr-2-1920x1280.jpeg");
  align-items: center;
}
.cid-tngAgk2WrK .mbr-overlay {
  background-color: #000000;
  opacity: 0.3;
}
@media (min-width: 768px) {
  .cid-tngAgk2WrK .row {
    justify-content: flex-start;
  }
  .cid-tngAgk2WrK .content-wrap {
    width: 60%;
  }
}
@media (max-width: 991px) {
  .cid-tngAgk2WrK .content-wrap {
    width: 100%;
  }
}
.cid-tngAgk2WrK .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .cid-tngAgk2WrK .mbr-section-title {
    text-align: center;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tngAgk2WrK .mbr-text {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cid-tngAgk2WrK .mbr-section-btn {
    text-align: center;
  }
}
.cid-tngvIJo21R {
  background-color: #ffffff;
}
.cid-tngvIJo21R .media-content .btn-bgr {
  z-index: 0;
}
.cid-tngvIJo21R .mbr-section-text {
  word-break: break-word;
}
.cid-tngvIJo21R .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
@media (min-width: 992px) {
  .cid-tngvIJo21R .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tngvIJo21R .mbr-figure {
    padding-top: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-tngvIJo21R .mbr-text {
    text-align: center;
  }
}
.cid-tngvIJo21R .mbr-fallback-image.disabled {
  display: none;
}
.cid-tngvIJo21R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tngvIJo21R H1 {
  color: #1d2671;
}
.cid-tngvIJo21R .mbr-text,
.cid-tngvIJo21R .mbr-section-btn {
  color: #a2a2a2;
}
.cid-tngwSd1oun {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1920x1078.jpg");
}
.cid-tngwSd1oun .mbr-overlay {
  background: linear-gradient(90deg, #2c1616, #2c1616);
}
.cid-tngwSd1oun h2,
.cid-tngwSd1oun h3,
.cid-tngwSd1oun h4,
.cid-tngwSd1oun p {
  color: #ffffff;
}
.cid-tngwSd1oun .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-tngwSd1oun .text-block {
  border-bottom: 1px solid #767676;
}
.cid-tngwSd1oun .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-tngwSd1oun .mbr-text {
  color: #767676;
}
.cid-tngwSd1oun a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-tngwSd1oun .multi-horizontal {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tngwSd1oun .input-group-btn {
  display: block;
  text-align: center;
}
.cid-tngwSd1oun textarea.form-control {
  resize: none;
}
@media (max-width: 767px) {
  .cid-tngwSd1oun h2 {
    padding-top: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-tngwSd1oun .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-tngwSd1oun .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  .cid-tngwSd1oun .google-map {
    padding-bottom: 2rem;
  }
}
.cid-tngwSd1oun .mbr-fallback-image.disabled {
  display: none;
}
.cid-tngwSd1oun .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tngwSd1oun LABEL {
  color: #ffffff;
}
.cid-tngvIMzyIL {
  background-color: #ffffff;
}
.cid-tngvIMzyIL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tngvIMzyIL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tngvIMzyIL .footer-head {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding-top: 4rem;
  padding-bottom: 3rem;
}
.cid-tngvIMzyIL .row {
  align-items: center;
}
.cid-tngvIMzyIL .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-tngvIMzyIL .col-brand {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-tngvIMzyIL .col-brand {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-tngvIMzyIL .col-brand {
    width: 100%;
    margin: 0 0 60px;
  }
}
.cid-tngvIMzyIL .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
  white-space: normal;
}
.cid-tngvIMzyIL .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tngvIMzyIL .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tngvIMzyIL .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600 !important;
}
.cid-tngvIMzyIL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tngvIMzyIL .brand-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #210759;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tngvIMzyIL .brand-text {
    margin-top: 16px;
    max-width: 254px;
  }
}
@media (max-width: 767px) {
  .cid-tngvIMzyIL .brand-text {
    max-width: 244px;
  }
}
@media (max-width: 575px) {
  .cid-tngvIMzyIL .brand-text {
    max-width: 100%;
    margin-top: 40px;
  }
}
.cid-tngvIMzyIL .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cid-tngvIMzyIL .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-tngvIMzyIL .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tngvIMzyIL .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
.cid-tngvIMzyIL .col-links {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-tngvIMzyIL .col-links {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-tngvIMzyIL .col-links {
    width: 100%;
    padding: 0 !important;
    order: 5;
    margin: 40px 0 0;
  }
}
.cid-tngvIMzyIL .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  color: #210759;
}
@media (max-width: 991px) {
  .cid-tngvIMzyIL .list {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-tngvIMzyIL .list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
}
.cid-tngvIMzyIL .list li {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-tngvIMzyIL .list li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .cid-tngvIMzyIL .list li {
    width: 50%;
    padding: 0 20px !important;
  }
}
.cid-tngvIMzyIL .col-contacts {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-tngvIMzyIL .col-contacts {
    display: flex;
    width: 100%;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-tngvIMzyIL .col-contacts {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px) {
  .cid-tngvIMzyIL .col-contacts {
    flex-wrap: wrap;
  }
}
.cid-tngvIMzyIL .contact-text {
  width: 100%;
  color: #210759;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-tngvIMzyIL .contact-text {
    width: 50%;
    padding: 0 20px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-tngvIMzyIL .contact-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-tngvIMzyIL .contact-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tngvIMzyIL .contact-container {
    width: 50%;
    padding: 0 20px !important;
  }
}
@media (max-width: 575px) {
  .cid-tngvIMzyIL .contact-container {
    width: 100%;
  }
}
.cid-tngvIMzyIL .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
  background-color: #ff0800;
}
.cid-tngvIMzyIL .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-tngvIMzyIL .contact-item {
  display: flex;
  align-items: flex-start;
}
.cid-tngvIMzyIL .contact-item:not(:first-child) {
  margin-top: 20px;
}
.cid-tngvIMzyIL .contact-item-text {
  color: #2A2A2A;
  flex-grow: 1;
}
.cid-tngvIMzyIL .footer-copyright {
  position: relative;
  z-index: 11;
  width: 100%;
  background-color: #210759;
}
.cid-tngvIMzyIL .col-copyright {
  width: 100%;
  padding: 20px !important;
}
.cid-tngvIMzyIL .copyright {
  color: #efefec;
}
.cid-tngvIMzyIL .circle-blur {
  position: absolute;
  display: block;
  width: 400px;
  height: 400px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .5;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
.cid-tngvIMzyIL .circle-blur1 {
  top: -150px;
  left: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-tngvIMzyIL .circle-blur2 {
  bottom: -150px;
  right: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-tnQ8SVWodE .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
@media (min-width: 992px) {
  .cid-tnQ8SVWodE .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 2.5385em 0.235em 3.5385em !important;
    margin: 0 !important;
  }
}
.cid-tnQ8SVWodE .menu-logo {
  display: flex;
  position: relative;
  -webkit-align-items: center;
  align-items: center;
  margin-right: auto;
}
.cid-tnQ8SVWodE .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tnQ8SVWodE .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tnQ8SVWodE .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tnQ8SVWodE .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tnQ8SVWodE .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tnQ8SVWodE .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tnQ8SVWodE .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-tnQ8SVWodE a {
  font-style: normal;
}
.cid-tnQ8SVWodE .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-tnQ8SVWodE .nav-item a {
  padding: 0.4rem 0 !important;
}
.cid-tnQ8SVWodE .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tnQ8SVWodE .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
}
.cid-tnQ8SVWodE .content-text {
  margin-bottom: 0;
}
.cid-tnQ8SVWodE .navbar-nav {
  position: relative;
  min-height: 60px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-tnQ8SVWodE .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #210759;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-tnQ8SVWodE .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
  .cid-tnQ8SVWodE .navbar-nav .nav-item a {
    margin: 0 1.3rem !important;
  }
}
@media (max-width: 991px) {
  .cid-tnQ8SVWodE .navbar-nav .nav-item a {
    margin: 0 !important;
  }
}
.cid-tnQ8SVWodE .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-tnQ8SVWodE .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-tnQ8SVWodE .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-tnQ8SVWodE .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-tnQ8SVWodE .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tnQ8SVWodE .nav-dropdown .link {
  font-weight: 400;
}
.cid-tnQ8SVWodE .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-tnQ8SVWodE .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-tnQ8SVWodE .content-right-side {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-tnQ8SVWodE .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
  }
}
.cid-tnQ8SVWodE .menu-content-top {
  display: none;
  padding: 1rem 0;
  transition: height 0.3s ease-in-out;
}
.cid-tnQ8SVWodE .menu-content-top.show {
  display: block;
}
.cid-tnQ8SVWodE .content-right-side .content-link {
  margin-left: 1rem;
}
.cid-tnQ8SVWodE .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
@media (max-width: 991px) {
  .cid-tnQ8SVWodE .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-tnQ8SVWodE .dropdown-item {
    padding: 0.235em 0 !important;
    margin: 0 !important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
  }
  .cid-tnQ8SVWodE .dropdown-item:before {
    display: none;
  }
  .cid-tnQ8SVWodE .menu-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .cid-tnQ8SVWodE .menu-bottom {
    width: 100%;
    padding: 0 1rem;
    display: block;
  }
  .cid-tnQ8SVWodE img {
    height: 3.8rem !important;
  }
  .cid-tnQ8SVWodE .btn {
    display: flex;
  }
  .cid-tnQ8SVWodE button.navbar-toggler {
    display: block;
    align-self: center;
  }
  .cid-tnQ8SVWodE .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-tnQ8SVWodE .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tnQ8SVWodE .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tnQ8SVWodE .navbar-collapse.collapsing,
  .cid-tnQ8SVWodE .navbar-collapse.show {
    display: block !important;
  }
  .cid-tnQ8SVWodE .navbar-collapse.collapsing .navbar-nav,
  .cid-tnQ8SVWodE .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tnQ8SVWodE .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tnQ8SVWodE .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-tnQ8SVWodE .navbar-collapse.collapsing .navbar-buttons,
  .cid-tnQ8SVWodE .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tnQ8SVWodE .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tnQ8SVWodE .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tnQ8SVWodE .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-tnQ8SVWodE .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tnQ8SVWodE .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tnQ8SVWodE .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 992px) {
  .cid-tnQ8SVWodE .navbar .menu-content-top {
    display: block;
  }
  .cid-tnQ8SVWodE .menu-content-top .row {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .cid-tnQ8SVWodE .content-right-side {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-flex-basis: 70%;
    flex-basis: 70%;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-tnQ8SVWodE .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-tnQ8SVWodE .menu-bottom {
    display: flex;
  }
  .cid-tnQ8SVWodE .navbar {
    display: block;
    padding: 0;
  }
  .cid-tnQ8SVWodE .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tnQ8SVWodE .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-tnQ8SVWodE .navbar-toggler {
    display: none;
  }
}
.cid-tnQ8SVWodE .navbar-short .menu-content-top {
  border: none;
}
.cid-tnQ8SVWodE .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tnQ8SVWodE .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-tnQ8SVWodE .navbar-toggleable-sm .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 5rem;
  width: 100%;
}
.cid-tnQ8SVWodE .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-tnQ8SVWodE .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tnQ8SVWodE .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tnQ8SVWodE .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tnQ8SVWodE .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tnQ8SVWodE .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tnQ8SVWodE .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-tnQ8SVWodE .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tnQ8SVWodE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tnQ8SVWodE .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-tnQ8SVWodE .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tnQ8SVWodE .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tnQ8SVWodE .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-tnQ8SVWodE .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tnQ8SVWodE .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tnQ8SVWodE .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tnQ8SVWodE .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tnQ8SVWodE .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tnQ8SVWodE button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
}
.cid-tnQ8SVWodE button.navbar-toggler:focus {
  outline: none;
}
.cid-tnQ8SVWodE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #210759;
}
.cid-tnQ8SVWodE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tnQ8SVWodE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tnQ8SVWodE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tnQ8SVWodE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tnQ8SVWodE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tnQ8SVWodE nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tnQ8SVWodE nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tnQ8SVWodE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tnQ8SVWodE .collapsed.navbar {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tnQ8SVWodE .collapsed .menu-bottom {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tnQ8SVWodE .collapsed .menu-logo {
  margin-right: 0;
}
.cid-tnQ8SVWodE .collapsed .btn {
  display: flex;
}
.cid-tnQ8SVWodE .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tnQ8SVWodE .collapsed .navbar-collapse.collapsing,
.cid-tnQ8SVWodE .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tnQ8SVWodE .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tnQ8SVWodE .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tnQ8SVWodE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tnQ8SVWodE .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tnQ8SVWodE .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tnQ8SVWodE .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tnQ8SVWodE .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tnQ8SVWodE .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tnQ8SVWodE .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.5rem  - 1rem);
  }
  .cid-tnQ8SVWodE .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tnQ8SVWodE .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tnQ8SVWodE .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-tnQ8SVWodE .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tnQ8SVWodE .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .25s;
  transition-property: opacity, padding, height;
}
.cid-tnQ8SVWodE .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tnQ8SVWodE .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tnQ8SVWodE .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-tnQ8SVWodE .collapsed .dropdown-item:before {
  display: none;
}
.cid-tnQ8SVWodE .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-tnQ8SVWodE .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-tnQ8SVWodE .nav-link:focus {
  outline: none;
}
.cid-tnQ8SVWodE .navbar-toggler {
  position: relative;
}
.cid-tnQ8SVWodE .dropdown-item.active,
.cid-tnQ8SVWodE .dropdown-item:active {
  background-color: #ffffff;
  color: auto;
}
.cid-tnQ8SVWodE .nav-link:hover,
.cid-tnQ8SVWodE .dropdown-item:hover {
  color: #4284df;
}
.cid-tnQ8SVyxKL {
  display: flex;
  background-image: url("../../../assets/images/mbr-1920x1202.jpg");
  align-items: center;
}
.cid-tnQ8SVyxKL .mbr-overlay {
  background-color: #000000;
  opacity: 0.3;
}
@media (min-width: 768px) {
  .cid-tnQ8SVyxKL .row {
    justify-content: flex-start;
  }
  .cid-tnQ8SVyxKL .content-wrap {
    width: 60%;
  }
}
@media (max-width: 991px) {
  .cid-tnQ8SVyxKL .content-wrap {
    width: 100%;
  }
}
.cid-tnQ8SVyxKL .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .cid-tnQ8SVyxKL .mbr-section-title {
    text-align: center;
    margin-bottom: 30px;
  }
}
.cid-tnQ8SVyxKL .mbr-text {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-tnQ8SVyxKL .mbr-text {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cid-tnQ8SVyxKL .mbr-section-btn {
    text-align: center;
  }
}
.cid-tnQ8SVyxKL .mbr-section-title,
.cid-tnQ8SVyxKL .mbr-section-btn {
  text-align: center;
}
.cid-tx5mdwPDY0 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f9f9f9;
}
.cid-tx5mdwPDY0 .mbr-text {
  color: #767676;
}
.cid-tx5mdwPDY0 h4 {
  font-weight: 500;
}
.cid-tx5mdwPDY0 h4,
.cid-tx5mdwPDY0 h5 {
  text-align: center;
}
.cid-tx5mdwPDY0 p {
  text-align: center;
}
.cid-tx5mdwPDY0 .card-box {
  text-align: center;
}
.cid-tx5mdwPDY0 .card-img {
  font-size: 3rem;
}
.cid-tx5mdwPDY0 .mbr-iconfont {
  color: #210759;
}
.cid-tx5mdwPDY0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tx5mdwPDY0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tx5mdwPDY0 H2 {
  color: #ff0800;
}
.cid-tx5mdwPDY0 .mbr-section-subtitle {
  color: #210759;
}
.cid-tx5mdwPDY0 .card-title,
.cid-tx5mdwPDY0 .card-img {
  color: #210759;
}
.cid-tx5oA3ejNg {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ff0800;
}
.cid-tx5oA3ejNg .block-title {
  color: #f9f9fc;
}
.cid-txaCDdQIIi {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-txaCDdQIIi .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-txaCDdQIIi .btn {
  font-size: 16px;
  padding: 0.5rem 2rem;
}
.cid-txaCDdQIIi .btn-primary-outline {
  border: none;
  color: gray;
}
.cid-txaCDdQIIi .btn-primary-outline:active {
  color: gray;
}
.cid-txaCDdQIIi .btn-primary-outline:hover {
  color: white;
}
.cid-txaCDdQIIi .mbr-gallery-title:before {
  border-radius: 0px 0px 10px 10px;
}
.cid-txaCDdQIIi div {
  overflow: hidden;
}
.cid-txaCDdQIIi li.active .btn-primary-outline {
  color: white;
}
.cid-txaCDdQIIi .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-txaCDdQIIi .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-txaCDdQIIi .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-txaCDdQIIi .mbr-gallery-item {
  overflow: hidden;
}
.cid-txaCDdQIIi .mbr-gallery-item img {
  transition: all 0.3s;
  border-radius: 10px;
}
.cid-txaCDdQIIi .mbr-gallery-filter {
  padding-top: 20px;
  padding-bottom: 20px;
}
.cid-txaCDdQIIi .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  background: #232323;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-txaCDdQIIi .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-txaCDdQIIi .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-txaCDdQIIi .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-txaCDdQIIi .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #232323 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tx5oMPImL2 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #210759;
}
.cid-tx5oMPImL2 .block-title {
  color: #f9f9fc;
}
.cid-tzrpyw3siS {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tzrpyw3siS .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tzrpyw3siS .btn {
  font-size: 16px;
  padding: 0.5rem 2rem;
}
.cid-tzrpyw3siS .btn-primary-outline {
  border: none;
  color: gray;
}
.cid-tzrpyw3siS .btn-primary-outline:active {
  color: gray;
}
.cid-tzrpyw3siS .btn-primary-outline:hover {
  color: white;
}
.cid-tzrpyw3siS .mbr-gallery-title:before {
  border-radius: 0px 0px 10px 10px;
}
.cid-tzrpyw3siS div {
  overflow: hidden;
}
.cid-tzrpyw3siS li.active .btn-primary-outline {
  color: white;
}
.cid-tzrpyw3siS .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tzrpyw3siS .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tzrpyw3siS .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tzrpyw3siS .mbr-gallery-item {
  overflow: hidden;
}
.cid-tzrpyw3siS .mbr-gallery-item img {
  transition: all 0.3s;
  border-radius: 10px;
}
.cid-tzrpyw3siS .mbr-gallery-filter {
  padding-top: 20px;
  padding-bottom: 20px;
}
.cid-tzrpyw3siS .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  background: #232323;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tzrpyw3siS .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tzrpyw3siS .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-tzrpyw3siS .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tzrpyw3siS .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #232323 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tx5p1s8Awb {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ff0800;
}
.cid-tx5p1s8Awb .block-title {
  color: #f9f9fc;
}
.cid-tyoVdpoXuW {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tyoVdpoXuW .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tyoVdpoXuW .btn {
  font-size: 16px;
  padding: 0.5rem 2rem;
}
.cid-tyoVdpoXuW .btn-primary-outline {
  border: none;
  color: gray;
}
.cid-tyoVdpoXuW .btn-primary-outline:active {
  color: gray;
}
.cid-tyoVdpoXuW .btn-primary-outline:hover {
  color: white;
}
.cid-tyoVdpoXuW .mbr-gallery-title:before {
  border-radius: 0px 0px 10px 10px;
}
.cid-tyoVdpoXuW div {
  overflow: hidden;
}
.cid-tyoVdpoXuW li.active .btn-primary-outline {
  color: white;
}
.cid-tyoVdpoXuW .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tyoVdpoXuW .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tyoVdpoXuW .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tyoVdpoXuW .mbr-gallery-item {
  overflow: hidden;
}
.cid-tyoVdpoXuW .mbr-gallery-item img {
  transition: all 0.3s;
  border-radius: 10px;
}
.cid-tyoVdpoXuW .mbr-gallery-filter {
  padding-top: 20px;
  padding-bottom: 20px;
}
.cid-tyoVdpoXuW .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  background: #232323;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tyoVdpoXuW .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tyoVdpoXuW .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-tyoVdpoXuW .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tyoVdpoXuW .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #232323 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-us3o9qB4kL {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ff0800;
}
.cid-us3o9qB4kL .block-title {
  color: #f9f9fc;
}
.cid-us3o5GcRRy {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/mbr-1920x1282.jpeg");
}
.cid-us3o5GcRRy .mbr-fallback-image.disabled {
  display: none;
}
.cid-us3o5GcRRy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-us3o5GcRRy .container {
    padding: 0 16px;
  }
}
.cid-us3o5GcRRy .row {
  position: relative;
  z-index: 1;
}
.cid-us3o5GcRRy .card {
  justify-content: center;
}
.cid-us3o5GcRRy .title-wrapper {
  margin-bottom: 140px;
}
@media (max-width: 992px) {
  .cid-us3o5GcRRy .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-us3o5GcRRy .title-wrapper .subtitle-wrapper .mbr-section-subtitle {
  display: inline-flex;
  margin-bottom: 56px;
  padding: 18px 24px;
  border-radius: 16px !important;
  box-shadow: 6px 8px 0 0 #210759;
  background-color: #ff0800;
  transform: rotate(4deg);
}
@media (max-width: 992px) {
  .cid-us3o5GcRRy .title-wrapper .subtitle-wrapper .mbr-section-subtitle {
    margin-bottom: 32px;
  }
}
.cid-us3o5GcRRy .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-us3o5GcRRy .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
@media (max-width: 1200px) {
  .cid-us3o5GcRRy .items-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .cid-us3o5GcRRy .items-wrapper {
    margin-bottom: 32px;
  }
}
@media (max-width: 768px) {
  .cid-us3o5GcRRy .items-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-us3o5GcRRy .items-wrapper .item {
  position: relative;
}
.cid-us3o5GcRRy .items-wrapper .item .item-wrapper .card-box {
  padding: 40px 16px;
  background-color: #f6f7f9;
  border-radius: 16px;
}
.cid-us3o5GcRRy .items-wrapper .item .item-wrapper .card-box .icon-wrapper .mbr-iconfont {
  font-size: 60px;
  color: #ff0800;
  display: inline-flex;
}
.cid-us3o5GcRRy .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-top: 24px;
  margin-bottom: 0;
}
.cid-us3o5GcRRy .text-wrapper .mbr-text {
  display: inline-flex;
  width: 70%;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .cid-us3o5GcRRy .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-us3o5GcRRy .mbr-section-title {
  color: #000000;
}
.cid-us3o5GcRRy .mbr-section-subtitle {
  color: #000000;
}
.cid-us3o5GcRRy .mbr-text,
.cid-us3o5GcRRy .text-wrapper {
  color: #ffffff;
  text-align: right;
}
.cid-us3o5GcRRy .item-title {
  color: #000000;
}
.cid-us3o5GcRRy .item-title,
.cid-us3o5GcRRy .icon-wrapper {
  text-align: center;
}
.cid-us3o5GcRRy .mbr-section-title,
.cid-us3o5GcRRy .mbr-section-btn {
  color: #ffffff;
}
.cid-us3o5GcRRy .mbr-section-subtitle,
.cid-us3o5GcRRy .subtitle-wrapper {
  color: #ffffff;
}
.cid-tnQ8SWxmwn {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1920x1078.jpg");
}
.cid-tnQ8SWxmwn .mbr-overlay {
  background: linear-gradient(90deg, #2c1616, #2c1616);
}
.cid-tnQ8SWxmwn h2,
.cid-tnQ8SWxmwn h3,
.cid-tnQ8SWxmwn h4,
.cid-tnQ8SWxmwn p {
  color: #ffffff;
}
.cid-tnQ8SWxmwn .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-tnQ8SWxmwn .text-block {
  border-bottom: 1px solid #767676;
}
.cid-tnQ8SWxmwn .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-tnQ8SWxmwn .mbr-text {
  color: #767676;
}
.cid-tnQ8SWxmwn a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-tnQ8SWxmwn .multi-horizontal {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tnQ8SWxmwn .input-group-btn {
  display: block;
  text-align: center;
}
.cid-tnQ8SWxmwn textarea.form-control {
  resize: none;
}
@media (max-width: 767px) {
  .cid-tnQ8SWxmwn h2 {
    padding-top: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-tnQ8SWxmwn .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-tnQ8SWxmwn .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  .cid-tnQ8SWxmwn .google-map {
    padding-bottom: 2rem;
  }
}
.cid-tnQ8SWxmwn .mbr-fallback-image.disabled {
  display: none;
}
.cid-tnQ8SWxmwn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tnQ8SWxmwn LABEL {
  color: #ffffff;
}
.cid-tnQ8SWUTq6 {
  background-color: #ffffff;
}
.cid-tnQ8SWUTq6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tnQ8SWUTq6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tnQ8SWUTq6 .footer-head {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding-top: 4rem;
  padding-bottom: 3rem;
}
.cid-tnQ8SWUTq6 .row {
  align-items: center;
}
.cid-tnQ8SWUTq6 .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-tnQ8SWUTq6 .col-brand {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-tnQ8SWUTq6 .col-brand {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-tnQ8SWUTq6 .col-brand {
    width: 100%;
    margin: 0 0 60px;
  }
}
.cid-tnQ8SWUTq6 .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
  white-space: normal;
}
.cid-tnQ8SWUTq6 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tnQ8SWUTq6 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tnQ8SWUTq6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600 !important;
}
.cid-tnQ8SWUTq6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tnQ8SWUTq6 .brand-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #210759;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tnQ8SWUTq6 .brand-text {
    margin-top: 16px;
    max-width: 254px;
  }
}
@media (max-width: 767px) {
  .cid-tnQ8SWUTq6 .brand-text {
    max-width: 244px;
  }
}
@media (max-width: 575px) {
  .cid-tnQ8SWUTq6 .brand-text {
    max-width: 100%;
    margin-top: 40px;
  }
}
.cid-tnQ8SWUTq6 .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cid-tnQ8SWUTq6 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-tnQ8SWUTq6 .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tnQ8SWUTq6 .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
.cid-tnQ8SWUTq6 .col-links {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-tnQ8SWUTq6 .col-links {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-tnQ8SWUTq6 .col-links {
    width: 100%;
    padding: 0 !important;
    order: 5;
    margin: 40px 0 0;
  }
}
.cid-tnQ8SWUTq6 .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  color: #210759;
}
@media (max-width: 991px) {
  .cid-tnQ8SWUTq6 .list {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-tnQ8SWUTq6 .list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
}
.cid-tnQ8SWUTq6 .list li {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-tnQ8SWUTq6 .list li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .cid-tnQ8SWUTq6 .list li {
    width: 50%;
    padding: 0 20px !important;
  }
}
.cid-tnQ8SWUTq6 .col-contacts {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-tnQ8SWUTq6 .col-contacts {
    display: flex;
    width: 100%;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-tnQ8SWUTq6 .col-contacts {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px) {
  .cid-tnQ8SWUTq6 .col-contacts {
    flex-wrap: wrap;
  }
}
.cid-tnQ8SWUTq6 .contact-text {
  width: 100%;
  color: #210759;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-tnQ8SWUTq6 .contact-text {
    width: 50%;
    padding: 0 20px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-tnQ8SWUTq6 .contact-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-tnQ8SWUTq6 .contact-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tnQ8SWUTq6 .contact-container {
    width: 50%;
    padding: 0 20px !important;
  }
}
@media (max-width: 575px) {
  .cid-tnQ8SWUTq6 .contact-container {
    width: 100%;
  }
}
.cid-tnQ8SWUTq6 .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
  background-color: #ff0800;
}
.cid-tnQ8SWUTq6 .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-tnQ8SWUTq6 .contact-item {
  display: flex;
  align-items: flex-start;
}
.cid-tnQ8SWUTq6 .contact-item:not(:first-child) {
  margin-top: 20px;
}
.cid-tnQ8SWUTq6 .contact-item-text {
  color: #2A2A2A;
  flex-grow: 1;
}
.cid-tnQ8SWUTq6 .footer-copyright {
  position: relative;
  z-index: 11;
  width: 100%;
  background-color: #210759;
}
.cid-tnQ8SWUTq6 .col-copyright {
  width: 100%;
  padding: 20px !important;
}
.cid-tnQ8SWUTq6 .copyright {
  color: #efefec;
}
.cid-tnQ8SWUTq6 .circle-blur {
  position: absolute;
  display: block;
  width: 400px;
  height: 400px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .5;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
.cid-tnQ8SWUTq6 .circle-blur1 {
  top: -150px;
  left: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-tnQ8SWUTq6 .circle-blur2 {
  bottom: -150px;
  right: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
