body {
  font-family: IBM Plex Sans;
}
.display-1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 3.2rem;
}
.display-1 > .mbr-iconfont {
  font-size: 5.12rem;
}
.display-2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 2rem;
}
.display-2 > .mbr-iconfont {
  font-size: 3.2rem;
}
.display-4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.28rem;
  font-weight: 400;
}
.display-5 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.2rem;
}
.display-5 > .mbr-iconfont {
  font-size: 1.92rem;
}
.display-7 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.6rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.56rem;
    font-size: calc( 1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 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: #432480 !important;
}
.bg-success {
  background-color: #133100 !important;
}
.bg-info {
  background-color: #57468b !important;
}
.bg-warning {
  background-color: #307b00 !important;
}
.bg-danger {
  background-color: #ff9800 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #432480 !important;
  border-color: #432480 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #241344 !important;
  border-color: #241344 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #241344 !important;
  border-color: #241344 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #5580ff !important;
  border-color: #5580ff !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #0847ff !important;
  border-color: #0847ff !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #0847ff !important;
  border-color: #0847ff !important;
}
.btn-info,
.btn-info:active {
  background-color: #57468b !important;
  border-color: #57468b !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #372c58 !important;
  border-color: #372c58 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #372c58 !important;
  border-color: #372c58 !important;
}
.btn-success,
.btn-success:active {
  background-color: #133100 !important;
  border-color: #133100 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-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 {
  background-color: #307b00 !important;
  border-color: #307b00 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #122f00 !important;
  border-color: #122f00 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #122f00 !important;
  border-color: #122f00 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9800 !important;
  border-color: #ff9800 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #b36a00 !important;
  border-color: #b36a00 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #b36a00 !important;
  border-color: #b36a00 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #190e30;
  color: #190e30;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #432480;
  border-color: #432480;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #432480 !important;
  border-color: #432480 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #003cee;
  color: #003cee;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #5580ff;
  border-color: #5580ff;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #5580ff !important;
  border-color: #5580ff !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #2d2447;
  color: #2d2447;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #57468b;
  border-color: #57468b;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #57468b !important;
  border-color: #57468b !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff;
  background-color: #133100;
  border-color: #133100;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #133100 !important;
  border-color: #133100 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #081500;
  color: #081500;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #307b00;
  border-color: #307b00;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #307b00 !important;
  border-color: #307b00 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #995b00;
  color: #995b00;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #ff9800;
  border-color: #ff9800;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9800 !important;
  border-color: #ff9800 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-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;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #432480 !important;
}
.text-secondary {
  color: #5580ff !important;
}
.text-success {
  color: #133100 !important;
}
.text-info {
  color: #57468b !important;
}
.text-warning {
  color: #307b00 !important;
}
.text-danger {
  color: #ff9800 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #190e30 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #003cee !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #000000 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #2d2447 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #081500 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #995b00 !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: #57468b;
}
.alert-warning {
  background-color: #307b00;
}
.alert-danger {
  background-color: #ff9800;
}
.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: none;
}
.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);
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #432480;
  border-color: #432480;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #432480;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #7e54cf;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #bfff97;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #9a8cc5;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #62fb00;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffeacc;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.28rem;
  font-weight: 400;
}
blockquote {
  border-color: #432480;
}
.btn-primary {
  margin: 1rem 0.5rem !important;
}
.btn-primary:hover,
.btn-primary:focus {
  box-shadow: 0 6px 16px 0 #432480 !important;
  -webkit-box-shadow: 0 6px 16px 0 #432480 !important;
  background-color: #432480 !important;
  border-color: #432480 !important;
}
.btn-secondary {
  margin: 1rem 0.5rem !important;
}
.btn-secondary:hover,
.btn-secondary:focus {
  box-shadow: 0 6px 15px 0 #5580ff !important;
  -webkit-box-shadow: 0 6px 16px 0 #5580ff !important;
  background-color: #5580ff !important;
  border-color: #5580ff !important;
}
.btn-success {
  color: white !important;
  margin: 1rem 0.5rem !important;
}
.btn-success:active {
  color: white !important;
}
.btn-success:hover,
.btn-success:focus {
  color: white !important;
  box-shadow: 0 6px 15px 0 #133100 !important;
  -webkit-box-shadow: 0 6px 16px 0 #133100 !important;
  background-color: #133100 !important;
  border-color: #133100 !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #432480;
  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-number__spin {
  background-color: #f5f6ff;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #432480;
  border-bottom-color: #432480;
}
.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: #432480 !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: #5580ff !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='%23432480' %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-tR42btBCUD .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-tR42btBCUD .navbar-fixed-top {
  padding-top: 0;
}
.cid-tR42btBCUD .navbar-collapse {
  flex-basis: auto;
  transition: all 0.3s ease-in;
}
.cid-tR42btBCUD .navbar-collapse.show {
  position: absolute;
  opacity: 1;
  visibility: visible;
  top: 100%;
  z-index: 999;
  background-color: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 15px 20px;
  bottom: auto;
  left: 0px;
  right: 0px;
}
.cid-tR42btBCUD .navbar-collapse.show .navbar-nav .nav-item {
  text-align: left;
  padding: 10px 0;
}
.cid-tR42btBCUD .navbar-buttons {
  flex-wrap: wrap;
}
.cid-tR42btBCUD .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-tR42btBCUD .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-tR42btBCUD .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  padding-right: 2rem;
}
.cid-tR42btBCUD .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tR42btBCUD .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tR42btBCUD .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tR42btBCUD .menu-content-top {
  background: #432480;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  width: 100%;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-tR42btBCUD .menu-content-top .right-wrap .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-tR42btBCUD .dropdown-item {
  font-weight: 400;
  margin: 0 !important;
  padding: 0 40px !important;
  line-height: 2.6;
}
.cid-tR42btBCUD .dropdown-item,
.cid-tR42btBCUD .nav-link,
.cid-tR42btBCUD .brand-name {
  font-style: normal;
}
.cid-tR42btBCUD .dropdown-item:hover,
.cid-tR42btBCUD .nav-link:hover,
.cid-tR42btBCUD .brand-name:hover {
  color: #ff9800 !important;
}
.cid-tR42btBCUD .dropdown-menu {
  background-color: #ffffff;
}
.cid-tR42btBCUD .dropdown-item:active {
  background-color: #ffffff;
}
.cid-tR42btBCUD .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
  justify-content: center;
}
.cid-tR42btBCUD .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-tR42btBCUD .nav-item {
  position: relative;
}
.cid-tR42btBCUD .nav-item span {
  padding-right: 0.4em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tR42btBCUD .nav-item .nav-link {
  transition: all 0.3s ease-in-out 0ms;
}
.cid-tR42btBCUD .nav-item .nav-link:focus {
  outline: none;
}
@media (min-width: 991px) {
  .cid-tR42btBCUD .nav-link {
    line-height: 6.13;
  }
  .cid-tR42btBCUD .navbar-nav > li > a:before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 0;
    margin: auto;
    opacity: 0;
    border-top: 2px solid #279e64;
    transition: all 0.3s ease-in-out 0ms;
  }
  .cid-tR42btBCUD .navbar-nav > li:hover > a:before {
    opacity: 1;
    width: 100%;
  }
}
.cid-tR42btBCUD .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tR42btBCUD .content-text {
  margin-bottom: 0;
}
.cid-tR42btBCUD .navbar-nav {
  position: relative;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-tR42btBCUD .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #432480;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-tR42btBCUD .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-tR42btBCUD .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-tR42btBCUD .navbar-nav .nav-item .link {
  margin: 0 20px !important;
}
.cid-tR42btBCUD .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tR42btBCUD .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-tR42btBCUD .content-right-side {
  text-align: center;
}
.cid-tR42btBCUD .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-tR42btBCUD .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-tR42btBCUD .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
  color: #5580ff;
}
.cid-tR42btBCUD .widget-icon.mobi-mbri-phone {
  -webkit-animation: phone-icon-animate 1s ease-in-out infinite;
  animation: phone-icon-animate 1s ease-in-out infinite;
}
.cid-tR42btBCUD .info-widget {
  margin-left: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tR42btBCUD .info-widget:first-child {
  margin-left: 0;
}
.cid-tR42btBCUD .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-tR42btBCUD .widget-content .widget-title {
  margin-bottom: 3px;
  line-height: 1.7;
}
.cid-tR42btBCUD .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-tR42btBCUD .navbar .menu-content-top {
  display: flex;
  height: 90px;
  border-bottom: 1px solid #d9dade;
}
@media (min-width: 992px) {
  .cid-tR42btBCUD .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
  }
  .cid-tR42btBCUD .navbar {
    display: block;
    padding: 0;
  }
  .cid-tR42btBCUD .navbar .menu-logo {
    margin: auto;
    display: flex;
    align-items: center;
  }
  .cid-tR42btBCUD .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-tR42btBCUD .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-tR42btBCUD .navbar-toggler {
    display: none;
  }
  .cid-tR42btBCUD .navbar-collapse {
    justify-content: center;
  }
}
.cid-tR42btBCUD .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-tR42btBCUD .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
  position: relative;
  overflow: hidden;
  margin-right: 0;
}
.cid-tR42btBCUD .btn-sm {
  padding: 13px 29px;
}
.cid-tR42btBCUD .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-tR42btBCUD .btn::after {
  background-color: #57468b;
  content: "";
  height: 150px;
  left: -75px;
  position: absolute;
  top: -60px;
  transform: rotate(35deg);
  transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  width: 40px;
  opacity: 0;
  outline: none;
  text-decoration: none;
}
.cid-tR42btBCUD .btn:hover::after {
  left: 250px;
  opacity: 0.8;
}
.cid-tR42btBCUD .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-tR42btBCUD .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-tR42btBCUD .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  align-self: center;
}
.cid-tR42btBCUD .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tR42btBCUD .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding: 25px 0;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tR42btBCUD .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tR42btBCUD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tR42btBCUD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tR42btBCUD .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-tR42btBCUD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tR42btBCUD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tR42btBCUD .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tR42btBCUD .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tR42btBCUD .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-tR42btBCUD .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  transition: font-size 0.25s;
}
.cid-tR42btBCUD .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tR42btBCUD .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tR42btBCUD .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tR42btBCUD button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  margin-right: 0;
}
.cid-tR42btBCUD button.navbar-toggler:focus {
  outline: none;
}
.cid-tR42btBCUD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #282828;
}
.cid-tR42btBCUD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tR42btBCUD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tR42btBCUD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tR42btBCUD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tR42btBCUD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tR42btBCUD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tR42btBCUD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tR42btBCUD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tR42btBCUD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tR42btBCUD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tR42btBCUD .collapsed .btn {
  display: flex;
}
.cid-tR42btBCUD .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tR42btBCUD .collapsed .navbar-collapse.collapsing,
.cid-tR42btBCUD .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tR42btBCUD .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tR42btBCUD .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tR42btBCUD .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tR42btBCUD .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tR42btBCUD .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tR42btBCUD .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}
.cid-tR42btBCUD .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tR42btBCUD .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tR42btBCUD .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tR42btBCUD .collapsed button.navbar-toggler {
  display: block;
}
.cid-tR42btBCUD .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-tR42btBCUD .collapsed .navbar-toggleable-sm {
  flex-direction: column;
}
.cid-tR42btBCUD .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-tR42btBCUD .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tR42btBCUD .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tR42btBCUD .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: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-tR42btBCUD .collapsed .menu-bottom {
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tR42btBCUD .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
    padding-left: 20px !important;
  }
  .cid-tR42btBCUD .dropdown-menu .dropdown-item {
    text-align: left;
    font-weight: 700;
  }
  .cid-tR42btBCUD .menu-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-tR42btBCUD .menu-bottom .menu-content-right {
    display: none;
  }
  .cid-tR42btBCUD .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
    opacity: 0;
    transition: all 0.3s ease-in;
    position: absolute;
    top: 100%;
    bottom: auto;
    left: 0px;
    right: 0px;
    z-index: 999;
  }
  .cid-tR42btBCUD .navbar-collapse .navbar-nav .nav-item {
    clear: both;
    text-align: left;
    padding: 10px 0;
  }
  .cid-tR42btBCUD .navbar-collapse.collapsing,
  .cid-tR42btBCUD .navbar-collapse.show {
    display: block !important;
  }
  .cid-tR42btBCUD .navbar-collapse.collapsing .navbar-nav,
  .cid-tR42btBCUD .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tR42btBCUD .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tR42btBCUD .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tR42btBCUD .navbar-collapse.collapsing .navbar-nav .nav-item .nav-link,
  .cid-tR42btBCUD .navbar-collapse.show .navbar-nav .nav-item .nav-link {
    font-weight: 700;
  }
  .cid-tR42btBCUD .navbar-collapse.collapsing .navbar-buttons,
  .cid-tR42btBCUD .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-tR42btBCUD .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tR42btBCUD .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tR42btBCUD img {
    height: 3.8rem !important;
  }
  .cid-tR42btBCUD .btn {
    display: flex;
  }
  .cid-tR42btBCUD button.navbar-toggler {
    display: block;
    align-self: center;
  }
  .cid-tR42btBCUD .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-tR42btBCUD .navbar-toggleable-sm {
    flex-direction: column;
  }
  .cid-tR42btBCUD .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-tR42btBCUD .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tR42btBCUD .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tR42btBCUD .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: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-tR42btBCUD .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-tR42btBCUD .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-tR42btBCUD .navbar-toggler {
  position: relative;
}
.cid-tR42btBCUD .dropdown-item.active,
.cid-tR42btBCUD .dropdown-item:active {
  color: initial;
}
.cid-tR42btBCUD .widget-title {
  color: #57468b;
}
.cid-tR42btBCUD .widget-text {
  color: #57468b;
}
.cid-tR42btBCUD .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
.cid-tR42btBCUD .icons-menu .mbr-iconfont {
  font-size: 1rem;
  color: #432480;
  display: inline-flex;
  background-color: #eaebee;
  border-radius: 100%;
  transition: all 0.3s ease-in;
}
.cid-tR42btBCUD .icons-menu .mbr-iconfont:before {
  padding: .75rem;
}
.cid-tR42btBCUD .icons-menu .mbr-iconfont:hover {
  color: #ffffff;
  background-color: #432480;
  -webkit-animation-name: animation-pulse;
  animation-name: animation-pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  opacity: .9;
}
.cid-tR42btBCUD .soc-item {
  margin: .5rem .3rem;
}
@media (max-width: 768px) {
  .cid-tR42btBCUD .menu-content-top .icons-menu {
    padding-left: 0;
  }
  .cid-tR42btBCUD .menu-content-top .icons-menu .soc-item .mbr-iconfont {
    font-size: 14px;
  }
  .cid-tR42btBCUD .menu-content-top .icons-menu .soc-item .mbr-iconfont::before {
    padding: 0.44rem;
  }
  .cid-tR42btBCUD .menu-content-top .right-wrap .info-widget {
    margin-left: 20px;
  }
  .cid-tR42btBCUD .menu-content-top .right-wrap .info-widget:first-child {
    margin-left: 0;
  }
  .cid-tR42btBCUD .menu-content-top .right-wrap .info-widget .widget-content {
    display: none;
  }
  .cid-tR42btBCUD .menu-content-top .right-wrap .info-widget .widget-icon {
    font-size: 25px;
    padding-right: 0;
  }
  .cid-tR42btBCUD .navbar-brand {
    margin-left: 0 !important;
  }
}
@media (max-width: 576px) {
  .cid-tR42btBCUD .menu-content-top,
  .cid-tR42btBCUD .menu-bottom {
    padding: 0 15px;
  }
  .cid-tR42btBCUD button.navbar-toggler {
    align-self: center;
  }
}
@-webkit-keyframes phone-icon-animate {
  0%,
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    transform: rotate(20deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@keyframes phone-icon-animate {
  0%,
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    transform: rotate(20deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@-webkit-keyframes animation-pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
@keyframes animation-pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
.cid-tR42btBCUD .widget-title,
.cid-tR42btBCUD .widget-icon {
  color: #ffffff;
}
.cid-sQaTVAjFAz {
  padding-top: 165px;
  padding-bottom: 165px;
  background-image: url("../../../assets/images/00202-3-2000x1335.jpeg");
}
.cid-sQaTVAjFAz H1 {
  text-align: center;
  color: #ff9800;
}
.cid-sQaTVAjFAz .mbr-text,
.cid-sQaTVAjFAz .mbr-section-btn {
  text-align: center;
}
.cid-sQb4YVxJ1d {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-sQb4YVxJ1d H1 {
  color: #432480;
}
.cid-sQb4YVxJ1d .mbr-text,
.cid-sQb4YVxJ1d .mbr-section-btn {
  color: #363636;
}
.cid-tR40bMYWCn {
  padding-top: 45px;
  padding-bottom: 75px;
  background-color: #f2f2f4;
}
.cid-tR40bMYWCn .mbr-text {
  color: #767676;
}
.cid-tR40bMYWCn img {
  width: 100%;
}
.cid-tR40bMYWCn .card-img {
  margin-bottom: 0rem;
}
.cid-tR40bMYWCn .card-wrapper {
  background: #ffffff;
  border-radius: 3px;
  overflow: hidden;
}
.cid-tR40bMYWCn .card-box {
  padding: 2rem 1rem;
}
.cid-tR40bMYWCn p {
  font-weight: 400;
}
.cid-tR40bMYWCn .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tR40bMYWCn .card {
    margin-bottom: 2rem;
  }
}
.cid-tR40bMYWCn .mbr-text,
.cid-tR40bMYWCn .mbr-section-btn {
  text-align: center;
}
.cid-tR40bMYWCn .card-title,
.cid-tR40bMYWCn .card-img {
  text-align: center;
  color: #432480;
}
.cid-udrti75kCB {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #f2f6ff;
  position: relative;
  overflow: hidden;
}
.cid-udrti75kCB svg {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.2);
  animation: wave 5s ease-in-out infinite;
}
@keyframes line {
  from {
    transform: translateY(4px);
  }
  50% {
    transform: translateY(-4px);
  }
  to {
    transform: translateY(4px);
  }
}
@keyframes wave {
  from {
    transform: rotate(-0.2deg) translate(-50%) scale(2, 1.2);
  }
  50% {
    transform: rotate(0.2deg) translate(-50%) scale(2.1, 1.3);
  }
  to {
    transform: rotate(-0.2deg) translate(-50%) scale(2, 1.2);
  }
}
.cid-udrti75kCB .mbr-text,
.cid-udrti75kCB .mbr-section-btn {
  color: #716c80;
}
.cid-udrti75kCB #e12_areaS3 {
  fill: #efefef !important;
}
.cid-udrti75kCB #e19_areaS3 {
  fill: #efefef !important;
}
.cid-udrti75kCB H1 {
  color: #57468b;
}
.cid-udrti75kCB img {
  width: 70%;
  border-radius: 10px;
  animation: line 4s ease-in-out infinite;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-udrti75kCB .box {
  width: 95%;
  height: 90%;
  opacity: 0.5;
  background-color: #efefef;
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translate(-50%);
  border-radius: 0.5rem;
}
@media (max-width: 1200px) {
  .cid-udrti75kCB .box {
    top: 2%;
    width: 97%;
    height: 96%;
  }
}
@media (max-width: 576px) {
  .cid-udrti75kCB img {
    width: 100%;
  }
}
.cid-udrti75kCB .mbr-fallback-image.disabled {
  display: none;
}
.cid-udrti75kCB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-sQaXeqQVPJ {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sQaXeqQVPJ H1 {
  color: #363636;
}
.cid-sQaXeqQVPJ .mbr-text,
.cid-sQaXeqQVPJ .mbr-section-btn {
  color: #363636;
}
.cid-sQaXOixWqb {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sQaXOixWqb H1 {
  color: #ff9800;
  text-align: center;
}
.cid-sQaXOixWqb .mbr-text,
.cid-sQaXOixWqb .mbr-section-btn {
  color: #716c80;
}
.cid-sQaXOixWqb H3 {
  color: #716c80;
}
.cid-sQaXbzIFFc {
  padding-top: 105px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/87-2000x1335.jpg");
  background-size: cover;
}
.cid-sQaXbzIFFc .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-sQaXbzIFFc h4 {
  text-align: center;
}
.cid-sQaXbzIFFc p {
  text-align: center;
}
.cid-sQaXbzIFFc .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-sQaXbzIFFc .mbr-iconfont {
  transition: all 0.3s;
  color: #ff9800 !important;
  font-size: 3rem !important;
}
.cid-sQaXbzIFFc .card {
  transition: all 0.3s;
  padding: 2rem!important;
}
.cid-sQaXbzIFFc .card:hover .card-title {
  color: #f2f6ff !important;
  cursor: pointer;
}
.cid-sQaXbzIFFc .card-title {
  transition: color 0.3s;
}
.cid-sQaXbzIFFc .card-title,
.cid-sQaXbzIFFc .card-img {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-sQaXbzIFFc .card {
    padding: 2rem 0rem 0rem 0rem!important;
  }
}
.cid-sQb0JZvxxM {
  padding-top: 105px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sQb0JZvxxM H1 {
  color: #363636;
}
.cid-sQb0JZvxxM .mbr-text,
.cid-sQb0JZvxxM .mbr-section-btn {
  color: #716c80;
}
.cid-sQb0JZvxxM H3 {
  color: #716c80;
}
.cid-sQD5QRNKbu {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/bg2-2000x1335.jpeg");
}
.cid-sQD5QRNKbu h5,
.cid-sQD5QRNKbu h4,
.cid-sQD5QRNKbu p {
  margin-bottom: 0;
}
.cid-sQD5QRNKbu p {
  color: #767676;
}
.cid-sQD5QRNKbu .card-img {
  padding: 0;
}
.cid-sQD5QRNKbu .mbr-section-btn {
  margin: 0;
  margin-top: 1.2rem;
  border-top: 1px solid #cccccc;
}
.cid-sQD5QRNKbu .mbr-section-btn .btn {
  margin-top: 1.2rem !important;
}
.cid-sQD5QRNKbu .card-wrapper {
  transition: all 0.3s;
  background-color: #ffffff;
}
.cid-sQD5QRNKbu .card-wrapper:hover {
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-sQD5QRNKbu .card-box {
  padding: 2rem;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sQD5QRNKbu .card-box {
    padding: 2rem 0 0;
  }
  .cid-sQD5QRNKbu .card-wrapper {
    display: block !important;
  }
}
.cid-sQD5QRNKbu .card-wrapper {
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
}
.cid-sQD5QRNKbu .card-title,
.cid-sQD5QRNKbu .main-title {
  color: #57468b;
}
.cid-sQD5QRNKbu .card-title {
  color: #432480;
}
.cid-sQs9NFUhAa {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/04-2000x1335.jpeg");
}
.cid-sQs9NFUhAa H1 {
  color: #363636;
}
.cid-sQs9NFUhAa .mbr-text,
.cid-sQs9NFUhAa .mbr-section-btn {
  color: #716c80;
}
.cid-sQs9NFUhAa img {
  width: 80%;
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
@media (max-width: 992px) {
  .cid-sQs9NFUhAa img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.cid-sQb7NfB69W {
  padding-top: 225px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/03-1-2000x1335.jpeg");
}
.cid-sQb7NfB69W H1 {
  color: #432480;
  text-align: left;
}
.cid-sQb7NfB69W .mbr-text,
.cid-sQb7NfB69W .mbr-section-btn {
  color: #363636;
  text-align: left;
}
.cid-t8o3Pbfpr4 {
  padding-top: 120px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-t8o3Pbfpr4 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-t8o3Pbfpr4 .btn {
  font-size: 16px;
  padding: 0.5rem 2rem;
}
.cid-t8o3Pbfpr4 .btn-primary-outline {
  border: none;
  color: gray;
}
.cid-t8o3Pbfpr4 .btn-primary-outline:active {
  color: gray;
}
.cid-t8o3Pbfpr4 .btn-primary-outline:hover {
  color: white;
}
.cid-t8o3Pbfpr4 .mbr-gallery-title:before {
  border-radius: 0px 0px 10px 10px;
}
.cid-t8o3Pbfpr4 div {
  overflow: hidden;
}
.cid-t8o3Pbfpr4 .btn-primary-outline.active {
  color: white;
}
.cid-t8o3Pbfpr4 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t8o3Pbfpr4 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t8o3Pbfpr4 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-t8o3Pbfpr4 .mbr-gallery-item {
  overflow: hidden;
}
.cid-t8o3Pbfpr4 .mbr-gallery-item img {
  transition: all 0.3s;
  border-radius: 10px;
}
.cid-t8o3Pbfpr4 .mbr-gallery-filter {
  padding-top: 20px;
  padding-bottom: 20px;
}
.cid-t8o3Pbfpr4 .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-t8o3Pbfpr4 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-t8o3Pbfpr4 .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-t8o3Pbfpr4 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-t8o3Pbfpr4 .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-t7ZUrHUB2T {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-t7ZUrHUB2T .mbr-text {
  color: #716c80;
}
.cid-t7ZUrHUB2T .card-wrapper {
  display: flex;
  flex-direction: row;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  transition: all 0.3s;
  padding: 1rem 1rem !important;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-t7ZUrHUB2T .card-wrapper:hover {
  transform: translateY(-1rem);
}
.cid-t7ZUrHUB2T .card-wrapper:hover .ico2 {
  color: #432480 !important;
}
.cid-t7ZUrHUB2T .ico2 {
  color: #57468b !important;
  transition: all 0.6s;
}
.cid-t7ZUrHUB2T .text-info:hover {
  color: inherit!important;
}
.cid-t7ZUrHUB2T .card-box {
  padding: 0rem 1rem;
}
.cid-t7ZUrHUB2T .ico1 {
  font-size: 3rem !important;
}
.cid-t7ZUrHUB2T h3,
.cid-t7ZUrHUB2T h4 {
  padding: 0;
  margin: 0;
}
.cid-t7ZUrHUB2T .card-title,
.cid-t7ZUrHUB2T .card-img {
  color: #57468b;
}
.cid-t7ZUrHUB2T .card-title {
  color: #232323;
}
.cid-v4afGd1FNU {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-v4afGd1FNU h4 {
  margin-bottom: 0;
}
.cid-v4afGd1FNU p {
  color: #767676;
}
.cid-v4afGd1FNU .card:hover img {
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-v4afGd1FNU .btn-info-outline {
  border: none;
  color: #57468b !important;
  padding: 0;
  margin: 0 0.25rem!important;
}
.cid-v4afGd1FNU .btn-info-outline span {
  order: 2;
  font-size: 1.1rem;
  padding-top: 3px;
  transition: padding 0.3s!important;
}
.cid-v4afGd1FNU .btn-info-outline:hover span {
  padding-left: 10px;
}
.cid-v4afGd1FNU .btn-info-outline:hover {
  background-color: transparent!important;
  color: #432480 !important;
  box-shadow: none!important;
}
.cid-v4afGd1FNU .btn-info-outline:active,
.cid-v4afGd1FNU .btn-info-outline:focus {
  background-color: transparent!important;
  box-shadow: none!important;
}
.cid-v4afGd1FNU .card-box {
  padding-top: 2rem;
}
.cid-v4afGd1FNU .card-wrapper {
  height: 100%;
}
.cid-v4afGd1FNU .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-v4afGd1FNU img {
  transition: all 0.3s;
  border-radius: 8px;
}
.cid-v4afGd1FNU .card-title {
  color: #57468b;
}
.cid-v4afGd1FNU .main-title {
  color: #57468b;
}
.cid-v4afGd1FNU DIV {
  color: #57468b;
}
.cid-v4afGd1FNU .card-img {
  width: auto;
}
.cid-v4afGd1FNU .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4afGd1FNU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4aioJl0LG {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-v4aioJl0LG h4 {
  margin-bottom: 0;
}
.cid-v4aioJl0LG p {
  color: #767676;
}
.cid-v4aioJl0LG .card:hover img {
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-v4aioJl0LG .btn-info-outline {
  border: none;
  color: #57468b !important;
  padding: 0;
  margin: 0 0.25rem!important;
}
.cid-v4aioJl0LG .btn-info-outline span {
  order: 2;
  font-size: 1.1rem;
  padding-top: 3px;
  transition: padding 0.3s!important;
}
.cid-v4aioJl0LG .btn-info-outline:hover span {
  padding-left: 10px;
}
.cid-v4aioJl0LG .btn-info-outline:hover {
  background-color: transparent!important;
  color: #432480 !important;
  box-shadow: none!important;
}
.cid-v4aioJl0LG .btn-info-outline:active,
.cid-v4aioJl0LG .btn-info-outline:focus {
  background-color: transparent!important;
  box-shadow: none!important;
}
.cid-v4aioJl0LG .card-box {
  padding-top: 2rem;
}
.cid-v4aioJl0LG .card-wrapper {
  height: 100%;
}
.cid-v4aioJl0LG .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-v4aioJl0LG img {
  transition: all 0.3s;
  border-radius: 8px;
}
.cid-v4aioJl0LG .card-title {
  color: #57468b;
}
.cid-v4aioJl0LG .main-title {
  color: #57468b;
}
.cid-v4aioJl0LG DIV {
  color: #57468b;
}
.cid-v4aioJl0LG .card-img {
  width: auto;
}
.cid-v4aioJl0LG .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4aioJl0LG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4aiIfDxNL {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f2f6ff;
}
.cid-v4aiIfDxNL H1 {
  color: #57468b;
}
.cid-v4aiIfDxNL .mbr-text,
.cid-v4aiIfDxNL .mbr-section-btn {
  color: #716c80;
}
.cid-v4aiIfDxNL .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4aiIfDxNL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-sQb9nppsUp {
  padding-top: 180px;
  padding-bottom: 75px;
  background-color: #432480;
  position: relative;
  overflow: hidden;
}
.cid-sQb9nppsUp .container {
  max-width: 1400px;
}
.cid-sQb9nppsUp .card-img2 span {
  padding-top: 6px;
}
.cid-sQb9nppsUp .soc-item a {
  padding-top: 5px;
}
.cid-sQb9nppsUp .btn {
  padding: 0.4rem 0.6rem!important;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-sQb9nppsUp .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-sQb9nppsUp .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-sQb9nppsUp .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sQb9nppsUp svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-sQb9nppsUp #e2_shape {
  fill: #ffffff !important;
}
.cid-sQb9nppsUp .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-sQb9nppsUp .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-sQb9nppsUp .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #ff9800;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sQb9nppsUp .card-img {
  width: auto;
}
.cid-sQb9nppsUp .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-sQb9nppsUp .soc-item span {
  font-size: 1.4rem;
}
.cid-sQb9nppsUp .soc-item:hover span {
  color: #432480 !important;
}
.cid-sQb9nppsUp .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-sQb9nppsUp .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-sQb9nppsUp .media-wrap {
  margin-bottom: 1rem;
}
.cid-sQb9nppsUp .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sQb9nppsUp img {
  height: 4rem;
}
@media (max-width: 576px) {
  .cid-sQb9nppsUp .item {
    justify-content: center;
  }
  .cid-sQb9nppsUp .quote::after {
    left: 60px;
  }
}
.cid-sQb9nppsUp .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-sQb9nppsUp .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sQb9nppsUp .text1 {
  color: #ffffff;
}
.cid-sQb9nppsUp .item-title {
  color: #ffffff;
}
.cid-sQb9nppsUp H5 {
  color: #ff9800;
}
.cid-sQb9nppsUp .theme {
  color: #ffffff;
}
.cid-sQb9nppsUp .copyright > p {
  color: #ff3366;
}
.cid-sQb9nppsUp .text2 {
  color: #ffffff;
}
.cid-sQbbirH4NS {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-sQbbirH4NS .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tR42btBCUD .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-tR42btBCUD .navbar-fixed-top {
  padding-top: 0;
}
.cid-tR42btBCUD .navbar-collapse {
  flex-basis: auto;
  transition: all 0.3s ease-in;
}
.cid-tR42btBCUD .navbar-collapse.show {
  position: absolute;
  opacity: 1;
  visibility: visible;
  top: 100%;
  z-index: 999;
  background-color: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 15px 20px;
  bottom: auto;
  left: 0px;
  right: 0px;
}
.cid-tR42btBCUD .navbar-collapse.show .navbar-nav .nav-item {
  text-align: left;
  padding: 10px 0;
}
.cid-tR42btBCUD .navbar-buttons {
  flex-wrap: wrap;
}
.cid-tR42btBCUD .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-tR42btBCUD .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-tR42btBCUD .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  padding-right: 2rem;
}
.cid-tR42btBCUD .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tR42btBCUD .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tR42btBCUD .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tR42btBCUD .menu-content-top {
  background: #432480;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  width: 100%;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-tR42btBCUD .menu-content-top .right-wrap .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-tR42btBCUD .dropdown-item {
  font-weight: 400;
  margin: 0 !important;
  padding: 0 40px !important;
  line-height: 2.6;
}
.cid-tR42btBCUD .dropdown-item,
.cid-tR42btBCUD .nav-link,
.cid-tR42btBCUD .brand-name {
  font-style: normal;
}
.cid-tR42btBCUD .dropdown-item:hover,
.cid-tR42btBCUD .nav-link:hover,
.cid-tR42btBCUD .brand-name:hover {
  color: #ff9800 !important;
}
.cid-tR42btBCUD .dropdown-menu {
  background-color: #ffffff;
}
.cid-tR42btBCUD .dropdown-item:active {
  background-color: #ffffff;
}
.cid-tR42btBCUD .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
  justify-content: center;
}
.cid-tR42btBCUD .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-tR42btBCUD .nav-item {
  position: relative;
}
.cid-tR42btBCUD .nav-item span {
  padding-right: 0.4em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tR42btBCUD .nav-item .nav-link {
  transition: all 0.3s ease-in-out 0ms;
}
.cid-tR42btBCUD .nav-item .nav-link:focus {
  outline: none;
}
@media (min-width: 991px) {
  .cid-tR42btBCUD .nav-link {
    line-height: 6.13;
  }
  .cid-tR42btBCUD .navbar-nav > li > a:before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 0;
    margin: auto;
    opacity: 0;
    border-top: 2px solid #279e64;
    transition: all 0.3s ease-in-out 0ms;
  }
  .cid-tR42btBCUD .navbar-nav > li:hover > a:before {
    opacity: 1;
    width: 100%;
  }
}
.cid-tR42btBCUD .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tR42btBCUD .content-text {
  margin-bottom: 0;
}
.cid-tR42btBCUD .navbar-nav {
  position: relative;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-tR42btBCUD .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #432480;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-tR42btBCUD .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-tR42btBCUD .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-tR42btBCUD .navbar-nav .nav-item .link {
  margin: 0 20px !important;
}
.cid-tR42btBCUD .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tR42btBCUD .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-tR42btBCUD .content-right-side {
  text-align: center;
}
.cid-tR42btBCUD .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-tR42btBCUD .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-tR42btBCUD .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
  color: #5580ff;
}
.cid-tR42btBCUD .widget-icon.mobi-mbri-phone {
  -webkit-animation: phone-icon-animate 1s ease-in-out infinite;
  animation: phone-icon-animate 1s ease-in-out infinite;
}
.cid-tR42btBCUD .info-widget {
  margin-left: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tR42btBCUD .info-widget:first-child {
  margin-left: 0;
}
.cid-tR42btBCUD .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-tR42btBCUD .widget-content .widget-title {
  margin-bottom: 3px;
  line-height: 1.7;
}
.cid-tR42btBCUD .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-tR42btBCUD .navbar .menu-content-top {
  display: flex;
  height: 90px;
  border-bottom: 1px solid #d9dade;
}
@media (min-width: 992px) {
  .cid-tR42btBCUD .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
  }
  .cid-tR42btBCUD .navbar {
    display: block;
    padding: 0;
  }
  .cid-tR42btBCUD .navbar .menu-logo {
    margin: auto;
    display: flex;
    align-items: center;
  }
  .cid-tR42btBCUD .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-tR42btBCUD .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-tR42btBCUD .navbar-toggler {
    display: none;
  }
  .cid-tR42btBCUD .navbar-collapse {
    justify-content: center;
  }
}
.cid-tR42btBCUD .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-tR42btBCUD .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
  position: relative;
  overflow: hidden;
  margin-right: 0;
}
.cid-tR42btBCUD .btn-sm {
  padding: 13px 29px;
}
.cid-tR42btBCUD .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-tR42btBCUD .btn::after {
  background-color: #57468b;
  content: "";
  height: 150px;
  left: -75px;
  position: absolute;
  top: -60px;
  transform: rotate(35deg);
  transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  width: 40px;
  opacity: 0;
  outline: none;
  text-decoration: none;
}
.cid-tR42btBCUD .btn:hover::after {
  left: 250px;
  opacity: 0.8;
}
.cid-tR42btBCUD .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-tR42btBCUD .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-tR42btBCUD .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  align-self: center;
}
.cid-tR42btBCUD .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tR42btBCUD .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding: 25px 0;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tR42btBCUD .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tR42btBCUD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tR42btBCUD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tR42btBCUD .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-tR42btBCUD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tR42btBCUD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tR42btBCUD .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tR42btBCUD .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tR42btBCUD .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-tR42btBCUD .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  transition: font-size 0.25s;
}
.cid-tR42btBCUD .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tR42btBCUD .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tR42btBCUD .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tR42btBCUD button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  margin-right: 0;
}
.cid-tR42btBCUD button.navbar-toggler:focus {
  outline: none;
}
.cid-tR42btBCUD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #282828;
}
.cid-tR42btBCUD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tR42btBCUD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tR42btBCUD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tR42btBCUD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tR42btBCUD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tR42btBCUD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tR42btBCUD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tR42btBCUD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tR42btBCUD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tR42btBCUD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tR42btBCUD .collapsed .btn {
  display: flex;
}
.cid-tR42btBCUD .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tR42btBCUD .collapsed .navbar-collapse.collapsing,
.cid-tR42btBCUD .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tR42btBCUD .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tR42btBCUD .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tR42btBCUD .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tR42btBCUD .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tR42btBCUD .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tR42btBCUD .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}
.cid-tR42btBCUD .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tR42btBCUD .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tR42btBCUD .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tR42btBCUD .collapsed button.navbar-toggler {
  display: block;
}
.cid-tR42btBCUD .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-tR42btBCUD .collapsed .navbar-toggleable-sm {
  flex-direction: column;
}
.cid-tR42btBCUD .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-tR42btBCUD .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tR42btBCUD .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tR42btBCUD .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: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-tR42btBCUD .collapsed .menu-bottom {
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tR42btBCUD .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
    padding-left: 20px !important;
  }
  .cid-tR42btBCUD .dropdown-menu .dropdown-item {
    text-align: left;
    font-weight: 700;
  }
  .cid-tR42btBCUD .menu-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-tR42btBCUD .menu-bottom .menu-content-right {
    display: none;
  }
  .cid-tR42btBCUD .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
    opacity: 0;
    transition: all 0.3s ease-in;
    position: absolute;
    top: 100%;
    bottom: auto;
    left: 0px;
    right: 0px;
    z-index: 999;
  }
  .cid-tR42btBCUD .navbar-collapse .navbar-nav .nav-item {
    clear: both;
    text-align: left;
    padding: 10px 0;
  }
  .cid-tR42btBCUD .navbar-collapse.collapsing,
  .cid-tR42btBCUD .navbar-collapse.show {
    display: block !important;
  }
  .cid-tR42btBCUD .navbar-collapse.collapsing .navbar-nav,
  .cid-tR42btBCUD .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tR42btBCUD .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tR42btBCUD .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tR42btBCUD .navbar-collapse.collapsing .navbar-nav .nav-item .nav-link,
  .cid-tR42btBCUD .navbar-collapse.show .navbar-nav .nav-item .nav-link {
    font-weight: 700;
  }
  .cid-tR42btBCUD .navbar-collapse.collapsing .navbar-buttons,
  .cid-tR42btBCUD .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-tR42btBCUD .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tR42btBCUD .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tR42btBCUD img {
    height: 3.8rem !important;
  }
  .cid-tR42btBCUD .btn {
    display: flex;
  }
  .cid-tR42btBCUD button.navbar-toggler {
    display: block;
    align-self: center;
  }
  .cid-tR42btBCUD .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-tR42btBCUD .navbar-toggleable-sm {
    flex-direction: column;
  }
  .cid-tR42btBCUD .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-tR42btBCUD .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tR42btBCUD .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tR42btBCUD .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: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-tR42btBCUD .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-tR42btBCUD .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-tR42btBCUD .navbar-toggler {
  position: relative;
}
.cid-tR42btBCUD .dropdown-item.active,
.cid-tR42btBCUD .dropdown-item:active {
  color: initial;
}
.cid-tR42btBCUD .widget-title {
  color: #57468b;
}
.cid-tR42btBCUD .widget-text {
  color: #57468b;
}
.cid-tR42btBCUD .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
.cid-tR42btBCUD .icons-menu .mbr-iconfont {
  font-size: 1rem;
  color: #432480;
  display: inline-flex;
  background-color: #eaebee;
  border-radius: 100%;
  transition: all 0.3s ease-in;
}
.cid-tR42btBCUD .icons-menu .mbr-iconfont:before {
  padding: .75rem;
}
.cid-tR42btBCUD .icons-menu .mbr-iconfont:hover {
  color: #ffffff;
  background-color: #432480;
  -webkit-animation-name: animation-pulse;
  animation-name: animation-pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  opacity: .9;
}
.cid-tR42btBCUD .soc-item {
  margin: .5rem .3rem;
}
@media (max-width: 768px) {
  .cid-tR42btBCUD .menu-content-top .icons-menu {
    padding-left: 0;
  }
  .cid-tR42btBCUD .menu-content-top .icons-menu .soc-item .mbr-iconfont {
    font-size: 14px;
  }
  .cid-tR42btBCUD .menu-content-top .icons-menu .soc-item .mbr-iconfont::before {
    padding: 0.44rem;
  }
  .cid-tR42btBCUD .menu-content-top .right-wrap .info-widget {
    margin-left: 20px;
  }
  .cid-tR42btBCUD .menu-content-top .right-wrap .info-widget:first-child {
    margin-left: 0;
  }
  .cid-tR42btBCUD .menu-content-top .right-wrap .info-widget .widget-content {
    display: none;
  }
  .cid-tR42btBCUD .menu-content-top .right-wrap .info-widget .widget-icon {
    font-size: 25px;
    padding-right: 0;
  }
  .cid-tR42btBCUD .navbar-brand {
    margin-left: 0 !important;
  }
}
@media (max-width: 576px) {
  .cid-tR42btBCUD .menu-content-top,
  .cid-tR42btBCUD .menu-bottom {
    padding: 0 15px;
  }
  .cid-tR42btBCUD button.navbar-toggler {
    align-self: center;
  }
}
@-webkit-keyframes phone-icon-animate {
  0%,
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    transform: rotate(20deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@keyframes phone-icon-animate {
  0%,
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    transform: rotate(20deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@-webkit-keyframes animation-pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
@keyframes animation-pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
.cid-tR42btBCUD .widget-title,
.cid-tR42btBCUD .widget-icon {
  color: #ffffff;
}
.cid-t8o2MJyQTZ {
  padding-top: 165px;
  padding-bottom: 165px;
  background-image: url("../../../assets/images/85-2000x1335.jpg");
}
.cid-t8o2MJyQTZ H1 {
  text-align: center;
  color: #ff9800;
}
.cid-t8o2MJyQTZ .mbr-text,
.cid-t8o2MJyQTZ .mbr-section-btn {
  text-align: center;
}
.cid-t8o3tsCzIq {
  padding-top: 105px;
  padding-bottom: 105px;
  background-color: #efefef;
}
.cid-t8o3tsCzIq .mbr-overlay {
  background-color: #232323;
  opacity: 0.5;
}
.cid-t8o3tsCzIq input,
.cid-t8o3tsCzIq textarea {
  padding: 0.4rem 1.4rem!important;
  border-radius: 10px;
}
.cid-t8o3tsCzIq .col-auto {
  width: 100%;
  text-align: center;
}
.cid-t8o3tsCzIq img {
  width: 90%;
  border-radius: 8px;
}
.cid-t8o3tsCzIq .btn {
  border-radius: 30px;
  padding: 0.6rem 3rem!important;
}
.cid-t8o3tsCzIq textarea {
  min-height: 160px;
}
.cid-t8o3tsCzIq .form-control,
.cid-t8o3tsCzIq .field-input {
  padding: 0.5rem;
  background-color: #f5f6ff;
  border-color: #f5f6ff;
  color: #58468c;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-t8o3tsCzIq .form-control:hover,
.cid-t8o3tsCzIq .field-input:hover,
.cid-t8o3tsCzIq .form-control:focus,
.cid-t8o3tsCzIq .field-input:focus {
  background-color: #f5f6ff;
  border-color: #f5f6ff;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-t8o3tsCzIq input::-webkit-input-placeholder,
.cid-t8o3tsCzIq textarea::-webkit-input-placeholder {
  color: #807d78;
}
.cid-t8o3tsCzIq input:-moz-placeholder,
.cid-t8o3tsCzIq textarea:-moz-placeholder {
  color: #807d78;
}
.cid-t8o3tsCzIq .jq-selectbox li,
.cid-t8o3tsCzIq .jq-selectbox li {
  background-color: #f5f6ff;
  color: #000000;
}
.cid-t8o3tsCzIq .jq-selectbox li:hover,
.cid-t8o3tsCzIq .jq-selectbox li.selected {
  background-color: #f5f6ff;
  color: #000000;
}
.cid-t8o3tsCzIq .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #f5f6ff;
}
.cid-t8o3tsCzIq .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #f5f6ff;
}
.cid-t8o3tsCzIq H5 {
  color: #232323;
  padding-bottom: 2rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-t8o3tsCzIq img {
    width: 100%;
  }
}
.cid-t8o2MKfl3D {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t8o2MKfl3D H1 {
  color: #432480;
}
.cid-t8o2MKfl3D .mbr-text,
.cid-t8o2MKfl3D .mbr-section-btn {
  color: #363636;
}
.cid-t8o2MKTSQ8 {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-t8o2MKTSQ8 h5,
.cid-t8o2MKTSQ8 h4,
.cid-t8o2MKTSQ8 p {
  margin-bottom: 0;
}
.cid-t8o2MKTSQ8 p {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-t8o2MKTSQ8 .container-fluid {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}
.cid-t8o2MKTSQ8 .card-link {
  padding-top: 1.2rem;
  margin-top: 1.2rem;
  border-top: 1px solid #ffffff;
}
.cid-t8o2MKTSQ8 .card-wrapper {
  transition: all 0.3s;
  background-color: #ff9800;
}
.cid-t8o2MKTSQ8 .card-wrapper .card-box {
  padding: 1.2rem;
}
.cid-t8o2MKTSQ8 .card-wrapper:hover {
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-t8o2MKTSQ8 .card-title-link {
  position: relative;
}
.cid-t8o2MKTSQ8 .card-title-link:after {
  content: "";
  transition: all 0.3s;
  border-bottom: 1px solid currentColor;
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
}
.cid-t8o2MKTSQ8 .card-title-link:hover:after {
  width: 100%;
}
.cid-t8o2MKTSQ8 .card-box {
  padding-top: 2rem;
  display: inline-block;
  width: 100%;
}
.cid-t8o2MKTSQ8 .card-wrapper {
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.cid-t8o2MKTSQ8 .card-wrapper .card-title {
  transition: all 0.3s;
}
.cid-t8o2MKTSQ8 .card-wrapper:hover .card-title {
  color: #432480;
}
.cid-t8o2MKTSQ8 .card-title,
.cid-t8o2MKTSQ8 .main-title,
.cid-t8o2MKTSQ8 .card-title-link {
  color: #57468b;
}
.cid-t8o2MKTSQ8 .mbr-text {
  color: #133100;
}
.cid-t8o2MKTSQ8 .card-title {
  color: #ffffff;
}
.cid-t8o2MKTSQ8 .card-price {
  color: #133100;
}
.cid-t8o2MM2Oxj {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t8o2MM2Oxj H1 {
  color: #432480;
}
.cid-t8o2MM2Oxj .mbr-text,
.cid-t8o2MM2Oxj .mbr-section-btn {
  color: #363636;
}
.cid-t8o2MMILfz {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-t8o2MMILfz H1 {
  color: #ff9800;
  text-align: center;
}
.cid-t8o2MMILfz .mbr-text,
.cid-t8o2MMILfz .mbr-section-btn {
  color: #716c80;
}
.cid-t8o2MMILfz H3 {
  color: #716c80;
}
.cid-t8o2MNlh2r {
  padding-top: 105px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/87-2000x1335.jpg");
  background-size: cover;
}
.cid-t8o2MNlh2r .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-t8o2MNlh2r h4 {
  text-align: center;
}
.cid-t8o2MNlh2r p {
  text-align: center;
}
.cid-t8o2MNlh2r .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-t8o2MNlh2r .mbr-iconfont {
  transition: all 0.3s;
  color: #ffffff !important;
  font-size: 3rem !important;
}
.cid-t8o2MNlh2r .card {
  transition: all 0.3s;
  padding: 2rem!important;
}
.cid-t8o2MNlh2r .card:hover .card-title {
  color: #57468b !important;
  cursor: pointer;
}
.cid-t8o2MNlh2r .card-title {
  transition: color 0.3s;
}
.cid-t8o2MNlh2r .card-title,
.cid-t8o2MNlh2r .card-img {
  color: #ff9800;
}
@media (max-width: 576px) {
  .cid-t8o2MNlh2r .card {
    padding: 2rem 0rem 0rem 0rem!important;
  }
}
.cid-t8o2MOuwK0 {
  padding-top: 105px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-t8o2MOuwK0 H1 {
  color: #432480;
}
.cid-t8o2MOuwK0 .mbr-text,
.cid-t8o2MOuwK0 .mbr-section-btn {
  color: #716c80;
}
.cid-t8o2MOuwK0 H3 {
  color: #716c80;
}
.cid-t8o2MPal5B {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/bg1-1-2000x1335.jpeg");
}
.cid-t8o2MPal5B h5,
.cid-t8o2MPal5B h4,
.cid-t8o2MPal5B p {
  margin-bottom: 0;
}
.cid-t8o2MPal5B p {
  color: #767676;
}
.cid-t8o2MPal5B .card-img {
  padding: 0;
}
.cid-t8o2MPal5B .mbr-section-btn {
  margin: 0;
  margin-top: 1.2rem;
  border-top: 1px solid #cccccc;
}
.cid-t8o2MPal5B .mbr-section-btn .btn {
  margin-top: 1.2rem !important;
}
.cid-t8o2MPal5B .card-wrapper {
  transition: all 0.3s;
  background-color: #ffffff;
}
.cid-t8o2MPal5B .card-wrapper:hover {
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-t8o2MPal5B .card-box {
  padding: 2rem;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-t8o2MPal5B .card-box {
    padding: 2rem 0 0;
  }
  .cid-t8o2MPal5B .card-wrapper {
    display: block !important;
  }
}
.cid-t8o2MPal5B .card-wrapper {
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
}
.cid-t8o2MPal5B .card-title,
.cid-t8o2MPal5B .main-title {
  color: #57468b;
}
.cid-t8o2MPal5B .card-title {
  color: #432480;
}
.cid-t8o2MQlTqQ {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/04-2000x1335.jpeg");
}
.cid-t8o2MQlTqQ H1 {
  color: #432480;
}
.cid-t8o2MQlTqQ .mbr-text,
.cid-t8o2MQlTqQ .mbr-section-btn {
  color: #716c80;
}
.cid-t8o2MQlTqQ img {
  width: 80%;
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
@media (max-width: 992px) {
  .cid-t8o2MQlTqQ img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.cid-t8o2MR9dyB {
  padding-top: 225px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/03-1-2000x1335.jpeg");
}
.cid-t8o2MR9dyB H1 {
  color: #432480;
  text-align: left;
}
.cid-t8o2MR9dyB .mbr-text,
.cid-t8o2MR9dyB .mbr-section-btn {
  color: #363636;
  text-align: left;
}
.cid-t8o2MRVN1z {
  padding-top: 90px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-t8o2MRVN1z .mbr-text {
  color: #716c80;
}
.cid-t8o2MRVN1z .card-wrapper {
  display: flex;
  flex-direction: row;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  transition: all 0.3s;
  padding: 1rem 1rem !important;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-t8o2MRVN1z .card-wrapper:hover {
  transform: translateY(-1rem);
}
.cid-t8o2MRVN1z .card-wrapper:hover .ico2 {
  color: #432480 !important;
}
.cid-t8o2MRVN1z .ico2 {
  color: #57468b !important;
  transition: all 0.6s;
}
.cid-t8o2MRVN1z .text-info:hover {
  color: inherit!important;
}
.cid-t8o2MRVN1z .card-box {
  padding: 0rem 1rem;
}
.cid-t8o2MRVN1z .ico1 {
  font-size: 3rem !important;
}
.cid-t8o2MRVN1z h3,
.cid-t8o2MRVN1z h4 {
  padding: 0;
  margin: 0;
}
.cid-t8o2MRVN1z .card-title,
.cid-t8o2MRVN1z .card-img {
  color: #57468b;
}
.cid-t8o2MRVN1z .card-title {
  color: #232323;
}
.cid-t8o2MSSlu3 {
  padding-top: 180px;
  padding-bottom: 75px;
  background-color: #432480;
  position: relative;
  overflow: hidden;
}
.cid-t8o2MSSlu3 .container {
  max-width: 1400px;
}
.cid-t8o2MSSlu3 .card-img2 span {
  padding-top: 6px;
}
.cid-t8o2MSSlu3 .soc-item a {
  padding-top: 5px;
}
.cid-t8o2MSSlu3 .btn {
  padding: 0.4rem 0.6rem!important;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-t8o2MSSlu3 .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-t8o2MSSlu3 .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-t8o2MSSlu3 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-t8o2MSSlu3 svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-t8o2MSSlu3 #e2_shape {
  fill: #ffffff !important;
}
.cid-t8o2MSSlu3 .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-t8o2MSSlu3 .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-t8o2MSSlu3 .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #ff9800;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-t8o2MSSlu3 .card-img {
  width: auto;
}
.cid-t8o2MSSlu3 .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-t8o2MSSlu3 .soc-item span {
  font-size: 1.4rem;
}
.cid-t8o2MSSlu3 .soc-item:hover span {
  color: #432480 !important;
}
.cid-t8o2MSSlu3 .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-t8o2MSSlu3 .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-t8o2MSSlu3 .media-wrap {
  margin-bottom: 1rem;
}
.cid-t8o2MSSlu3 .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-t8o2MSSlu3 img {
  height: 4rem;
}
@media (max-width: 576px) {
  .cid-t8o2MSSlu3 .item {
    justify-content: center;
  }
  .cid-t8o2MSSlu3 .quote::after {
    left: 60px;
  }
}
.cid-t8o2MSSlu3 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-t8o2MSSlu3 .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t8o2MSSlu3 .text1 {
  color: #ffffff;
}
.cid-t8o2MSSlu3 .item-title {
  color: #ffffff;
}
.cid-t8o2MSSlu3 H5 {
  color: #ff9800;
}
.cid-t8o2MSSlu3 .theme {
  color: #ffffff;
}
.cid-t8o2MSSlu3 .copyright > p {
  color: #ff3366;
}
.cid-t8o2MSSlu3 .text2 {
  color: #ffffff;
}
.cid-t8o2MUkwdj {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-t8o2MUkwdj .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tR42btBCUD .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-tR42btBCUD .navbar-fixed-top {
  padding-top: 0;
}
.cid-tR42btBCUD .navbar-collapse {
  flex-basis: auto;
  transition: all 0.3s ease-in;
}
.cid-tR42btBCUD .navbar-collapse.show {
  position: absolute;
  opacity: 1;
  visibility: visible;
  top: 100%;
  z-index: 999;
  background-color: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 15px 20px;
  bottom: auto;
  left: 0px;
  right: 0px;
}
.cid-tR42btBCUD .navbar-collapse.show .navbar-nav .nav-item {
  text-align: left;
  padding: 10px 0;
}
.cid-tR42btBCUD .navbar-buttons {
  flex-wrap: wrap;
}
.cid-tR42btBCUD .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-tR42btBCUD .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-tR42btBCUD .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  padding-right: 2rem;
}
.cid-tR42btBCUD .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tR42btBCUD .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tR42btBCUD .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tR42btBCUD .menu-content-top {
  background: #432480;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  width: 100%;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-tR42btBCUD .menu-content-top .right-wrap .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-tR42btBCUD .dropdown-item {
  font-weight: 400;
  margin: 0 !important;
  padding: 0 40px !important;
  line-height: 2.6;
}
.cid-tR42btBCUD .dropdown-item,
.cid-tR42btBCUD .nav-link,
.cid-tR42btBCUD .brand-name {
  font-style: normal;
}
.cid-tR42btBCUD .dropdown-item:hover,
.cid-tR42btBCUD .nav-link:hover,
.cid-tR42btBCUD .brand-name:hover {
  color: #ff9800 !important;
}
.cid-tR42btBCUD .dropdown-menu {
  background-color: #ffffff;
}
.cid-tR42btBCUD .dropdown-item:active {
  background-color: #ffffff;
}
.cid-tR42btBCUD .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
  justify-content: center;
}
.cid-tR42btBCUD .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-tR42btBCUD .nav-item {
  position: relative;
}
.cid-tR42btBCUD .nav-item span {
  padding-right: 0.4em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tR42btBCUD .nav-item .nav-link {
  transition: all 0.3s ease-in-out 0ms;
}
.cid-tR42btBCUD .nav-item .nav-link:focus {
  outline: none;
}
@media (min-width: 991px) {
  .cid-tR42btBCUD .nav-link {
    line-height: 6.13;
  }
  .cid-tR42btBCUD .navbar-nav > li > a:before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 0;
    margin: auto;
    opacity: 0;
    border-top: 2px solid #279e64;
    transition: all 0.3s ease-in-out 0ms;
  }
  .cid-tR42btBCUD .navbar-nav > li:hover > a:before {
    opacity: 1;
    width: 100%;
  }
}
.cid-tR42btBCUD .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tR42btBCUD .content-text {
  margin-bottom: 0;
}
.cid-tR42btBCUD .navbar-nav {
  position: relative;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-tR42btBCUD .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #432480;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-tR42btBCUD .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-tR42btBCUD .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-tR42btBCUD .navbar-nav .nav-item .link {
  margin: 0 20px !important;
}
.cid-tR42btBCUD .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tR42btBCUD .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-tR42btBCUD .content-right-side {
  text-align: center;
}
.cid-tR42btBCUD .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-tR42btBCUD .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-tR42btBCUD .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
  color: #5580ff;
}
.cid-tR42btBCUD .widget-icon.mobi-mbri-phone {
  -webkit-animation: phone-icon-animate 1s ease-in-out infinite;
  animation: phone-icon-animate 1s ease-in-out infinite;
}
.cid-tR42btBCUD .info-widget {
  margin-left: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tR42btBCUD .info-widget:first-child {
  margin-left: 0;
}
.cid-tR42btBCUD .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-tR42btBCUD .widget-content .widget-title {
  margin-bottom: 3px;
  line-height: 1.7;
}
.cid-tR42btBCUD .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-tR42btBCUD .navbar .menu-content-top {
  display: flex;
  height: 90px;
  border-bottom: 1px solid #d9dade;
}
@media (min-width: 992px) {
  .cid-tR42btBCUD .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
  }
  .cid-tR42btBCUD .navbar {
    display: block;
    padding: 0;
  }
  .cid-tR42btBCUD .navbar .menu-logo {
    margin: auto;
    display: flex;
    align-items: center;
  }
  .cid-tR42btBCUD .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-tR42btBCUD .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-tR42btBCUD .navbar-toggler {
    display: none;
  }
  .cid-tR42btBCUD .navbar-collapse {
    justify-content: center;
  }
}
.cid-tR42btBCUD .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-tR42btBCUD .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
  position: relative;
  overflow: hidden;
  margin-right: 0;
}
.cid-tR42btBCUD .btn-sm {
  padding: 13px 29px;
}
.cid-tR42btBCUD .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-tR42btBCUD .btn::after {
  background-color: #57468b;
  content: "";
  height: 150px;
  left: -75px;
  position: absolute;
  top: -60px;
  transform: rotate(35deg);
  transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  width: 40px;
  opacity: 0;
  outline: none;
  text-decoration: none;
}
.cid-tR42btBCUD .btn:hover::after {
  left: 250px;
  opacity: 0.8;
}
.cid-tR42btBCUD .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-tR42btBCUD .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-tR42btBCUD .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  align-self: center;
}
.cid-tR42btBCUD .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tR42btBCUD .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding: 25px 0;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tR42btBCUD .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tR42btBCUD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tR42btBCUD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tR42btBCUD .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-tR42btBCUD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tR42btBCUD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tR42btBCUD .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tR42btBCUD .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tR42btBCUD .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-tR42btBCUD .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  transition: font-size 0.25s;
}
.cid-tR42btBCUD .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tR42btBCUD .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tR42btBCUD .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tR42btBCUD button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  margin-right: 0;
}
.cid-tR42btBCUD button.navbar-toggler:focus {
  outline: none;
}
.cid-tR42btBCUD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #282828;
}
.cid-tR42btBCUD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tR42btBCUD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tR42btBCUD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tR42btBCUD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tR42btBCUD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tR42btBCUD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tR42btBCUD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tR42btBCUD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tR42btBCUD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tR42btBCUD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tR42btBCUD .collapsed .btn {
  display: flex;
}
.cid-tR42btBCUD .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tR42btBCUD .collapsed .navbar-collapse.collapsing,
.cid-tR42btBCUD .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tR42btBCUD .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tR42btBCUD .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tR42btBCUD .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tR42btBCUD .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tR42btBCUD .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tR42btBCUD .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}
.cid-tR42btBCUD .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tR42btBCUD .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tR42btBCUD .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tR42btBCUD .collapsed button.navbar-toggler {
  display: block;
}
.cid-tR42btBCUD .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-tR42btBCUD .collapsed .navbar-toggleable-sm {
  flex-direction: column;
}
.cid-tR42btBCUD .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-tR42btBCUD .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tR42btBCUD .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tR42btBCUD .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: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-tR42btBCUD .collapsed .menu-bottom {
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tR42btBCUD .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
    padding-left: 20px !important;
  }
  .cid-tR42btBCUD .dropdown-menu .dropdown-item {
    text-align: left;
    font-weight: 700;
  }
  .cid-tR42btBCUD .menu-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-tR42btBCUD .menu-bottom .menu-content-right {
    display: none;
  }
  .cid-tR42btBCUD .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
    opacity: 0;
    transition: all 0.3s ease-in;
    position: absolute;
    top: 100%;
    bottom: auto;
    left: 0px;
    right: 0px;
    z-index: 999;
  }
  .cid-tR42btBCUD .navbar-collapse .navbar-nav .nav-item {
    clear: both;
    text-align: left;
    padding: 10px 0;
  }
  .cid-tR42btBCUD .navbar-collapse.collapsing,
  .cid-tR42btBCUD .navbar-collapse.show {
    display: block !important;
  }
  .cid-tR42btBCUD .navbar-collapse.collapsing .navbar-nav,
  .cid-tR42btBCUD .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tR42btBCUD .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tR42btBCUD .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tR42btBCUD .navbar-collapse.collapsing .navbar-nav .nav-item .nav-link,
  .cid-tR42btBCUD .navbar-collapse.show .navbar-nav .nav-item .nav-link {
    font-weight: 700;
  }
  .cid-tR42btBCUD .navbar-collapse.collapsing .navbar-buttons,
  .cid-tR42btBCUD .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-tR42btBCUD .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tR42btBCUD .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tR42btBCUD img {
    height: 3.8rem !important;
  }
  .cid-tR42btBCUD .btn {
    display: flex;
  }
  .cid-tR42btBCUD button.navbar-toggler {
    display: block;
    align-self: center;
  }
  .cid-tR42btBCUD .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-tR42btBCUD .navbar-toggleable-sm {
    flex-direction: column;
  }
  .cid-tR42btBCUD .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-tR42btBCUD .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tR42btBCUD .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tR42btBCUD .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: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-tR42btBCUD .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-tR42btBCUD .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-tR42btBCUD .navbar-toggler {
  position: relative;
}
.cid-tR42btBCUD .dropdown-item.active,
.cid-tR42btBCUD .dropdown-item:active {
  color: initial;
}
.cid-tR42btBCUD .widget-title {
  color: #57468b;
}
.cid-tR42btBCUD .widget-text {
  color: #57468b;
}
.cid-tR42btBCUD .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
.cid-tR42btBCUD .icons-menu .mbr-iconfont {
  font-size: 1rem;
  color: #432480;
  display: inline-flex;
  background-color: #eaebee;
  border-radius: 100%;
  transition: all 0.3s ease-in;
}
.cid-tR42btBCUD .icons-menu .mbr-iconfont:before {
  padding: .75rem;
}
.cid-tR42btBCUD .icons-menu .mbr-iconfont:hover {
  color: #ffffff;
  background-color: #432480;
  -webkit-animation-name: animation-pulse;
  animation-name: animation-pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  opacity: .9;
}
.cid-tR42btBCUD .soc-item {
  margin: .5rem .3rem;
}
@media (max-width: 768px) {
  .cid-tR42btBCUD .menu-content-top .icons-menu {
    padding-left: 0;
  }
  .cid-tR42btBCUD .menu-content-top .icons-menu .soc-item .mbr-iconfont {
    font-size: 14px;
  }
  .cid-tR42btBCUD .menu-content-top .icons-menu .soc-item .mbr-iconfont::before {
    padding: 0.44rem;
  }
  .cid-tR42btBCUD .menu-content-top .right-wrap .info-widget {
    margin-left: 20px;
  }
  .cid-tR42btBCUD .menu-content-top .right-wrap .info-widget:first-child {
    margin-left: 0;
  }
  .cid-tR42btBCUD .menu-content-top .right-wrap .info-widget .widget-content {
    display: none;
  }
  .cid-tR42btBCUD .menu-content-top .right-wrap .info-widget .widget-icon {
    font-size: 25px;
    padding-right: 0;
  }
  .cid-tR42btBCUD .navbar-brand {
    margin-left: 0 !important;
  }
}
@media (max-width: 576px) {
  .cid-tR42btBCUD .menu-content-top,
  .cid-tR42btBCUD .menu-bottom {
    padding: 0 15px;
  }
  .cid-tR42btBCUD button.navbar-toggler {
    align-self: center;
  }
}
@-webkit-keyframes phone-icon-animate {
  0%,
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    transform: rotate(20deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@keyframes phone-icon-animate {
  0%,
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    transform: rotate(20deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@-webkit-keyframes animation-pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
@keyframes animation-pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
.cid-tR42btBCUD .widget-title,
.cid-tR42btBCUD .widget-icon {
  color: #ffffff;
}
.cid-tag2md4mz3 {
  padding-top: 165px;
  padding-bottom: 165px;
  background-image: url("../../../assets/images/00202-2000x1335.jpeg");
}
.cid-tag2md4mz3 H1 {
  text-align: center;
  color: #ff9800;
}
.cid-tag2md4mz3 .mbr-text,
.cid-tag2md4mz3 .mbr-section-btn {
  text-align: center;
}
.cid-tag2mdECXZ {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tag2mdECXZ H1 {
  color: #432480;
}
.cid-tag2mdECXZ .mbr-text,
.cid-tag2mdECXZ .mbr-section-btn {
  color: #363636;
}
.cid-tag2megfUe {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tag2megfUe h5,
.cid-tag2megfUe h4,
.cid-tag2megfUe p {
  margin-bottom: 0;
}
.cid-tag2megfUe p {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-tag2megfUe .container-fluid {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}
.cid-tag2megfUe .card-link {
  padding-top: 1.2rem;
  margin-top: 1.2rem;
  border-top: 1px solid #cccccc;
}
.cid-tag2megfUe .card-wrapper {
  transition: all 0.3s;
  background-color: #fcf7f7;
}
.cid-tag2megfUe .card-wrapper .card-box {
  padding: 1.2rem;
}
.cid-tag2megfUe .card-wrapper:hover {
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-tag2megfUe .card-title-link {
  position: relative;
}
.cid-tag2megfUe .card-title-link:after {
  content: "";
  transition: all 0.3s;
  border-bottom: 1px solid currentColor;
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
}
.cid-tag2megfUe .card-title-link:hover:after {
  width: 100%;
}
.cid-tag2megfUe .card-box {
  padding-top: 2rem;
  display: inline-block;
  width: 100%;
}
.cid-tag2megfUe .card-wrapper {
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.cid-tag2megfUe .card-wrapper .card-title {
  transition: all 0.3s;
}
.cid-tag2megfUe .card-wrapper:hover .card-title {
  color: #432480;
}
.cid-tag2megfUe .card-title,
.cid-tag2megfUe .main-title,
.cid-tag2megfUe .card-title-link {
  color: #57468b;
}
.cid-tag2megfUe .mbr-text {
  color: #363636;
}
.cid-tag2megfUe .card-title {
  color: #363636;
  text-align: left;
}
.cid-tag2megfUe .card-price {
  color: #133100;
}
.cid-tag2mfpXjo {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tag2mfpXjo H1 {
  color: #363636;
}
.cid-tag2mfpXjo .mbr-text,
.cid-tag2mfpXjo .mbr-section-btn {
  color: #363636;
}
.cid-tag2mg2xZt {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tag2mg2xZt H1 {
  color: #ff9800;
  text-align: center;
}
.cid-tag2mg2xZt .mbr-text,
.cid-tag2mg2xZt .mbr-section-btn {
  color: #716c80;
}
.cid-tag2mg2xZt H3 {
  color: #716c80;
}
.cid-tag2mgQC89 {
  padding-top: 105px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/87-2000x1335.jpg");
  background-size: cover;
}
.cid-tag2mgQC89 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tag2mgQC89 h4 {
  text-align: center;
}
.cid-tag2mgQC89 p {
  text-align: center;
}
.cid-tag2mgQC89 .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-tag2mgQC89 .mbr-iconfont {
  transition: all 0.3s;
  color: #ff9800 !important;
  font-size: 3rem !important;
}
.cid-tag2mgQC89 .card {
  transition: all 0.3s;
  padding: 2rem!important;
}
.cid-tag2mgQC89 .card:hover .card-title {
  color: #f2f6ff !important;
  cursor: pointer;
}
.cid-tag2mgQC89 .card-title {
  transition: color 0.3s;
}
.cid-tag2mgQC89 .card-title,
.cid-tag2mgQC89 .card-img {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-tag2mgQC89 .card {
    padding: 2rem 0rem 0rem 0rem!important;
  }
}
.cid-tag2mhYAPF {
  padding-top: 105px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tag2mhYAPF H1 {
  color: #363636;
}
.cid-tag2mhYAPF .mbr-text,
.cid-tag2mhYAPF .mbr-section-btn {
  color: #716c80;
}
.cid-tag2mhYAPF H3 {
  color: #716c80;
}
.cid-tag2miGhOJ {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/bg2-2000x1335.jpeg");
}
.cid-tag2miGhOJ h5,
.cid-tag2miGhOJ h4,
.cid-tag2miGhOJ p {
  margin-bottom: 0;
}
.cid-tag2miGhOJ p {
  color: #767676;
}
.cid-tag2miGhOJ .card-img {
  padding: 0;
}
.cid-tag2miGhOJ .mbr-section-btn {
  margin: 0;
  margin-top: 1.2rem;
  border-top: 1px solid #cccccc;
}
.cid-tag2miGhOJ .mbr-section-btn .btn {
  margin-top: 1.2rem !important;
}
.cid-tag2miGhOJ .card-wrapper {
  transition: all 0.3s;
  background-color: #ffffff;
}
.cid-tag2miGhOJ .card-wrapper:hover {
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-tag2miGhOJ .card-box {
  padding: 2rem;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tag2miGhOJ .card-box {
    padding: 2rem 0 0;
  }
  .cid-tag2miGhOJ .card-wrapper {
    display: block !important;
  }
}
.cid-tag2miGhOJ .card-wrapper {
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
}
.cid-tag2miGhOJ .card-title,
.cid-tag2miGhOJ .main-title {
  color: #57468b;
}
.cid-tag2miGhOJ .card-title {
  color: #363636;
}
.cid-tag2mjMqZW {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/04-2000x1335.jpeg");
}
.cid-tag2mjMqZW H1 {
  color: #363636;
}
.cid-tag2mjMqZW .mbr-text,
.cid-tag2mjMqZW .mbr-section-btn {
  color: #716c80;
}
.cid-tag2mjMqZW img {
  width: 80%;
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
@media (max-width: 992px) {
  .cid-tag2mjMqZW img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.cid-tag2mkAAc2 {
  padding-top: 225px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/03-1-2000x1335.jpeg");
}
.cid-tag2mkAAc2 H1 {
  color: #432480;
  text-align: left;
}
.cid-tag2mkAAc2 .mbr-text,
.cid-tag2mkAAc2 .mbr-section-btn {
  color: #363636;
  text-align: left;
}
.cid-tag2mlirHz {
  padding-top: 120px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tag2mlirHz .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tag2mlirHz .btn {
  font-size: 16px;
  padding: 0.5rem 2rem;
}
.cid-tag2mlirHz .btn-primary-outline {
  border: none;
  color: gray;
}
.cid-tag2mlirHz .btn-primary-outline:active {
  color: gray;
}
.cid-tag2mlirHz .btn-primary-outline:hover {
  color: white;
}
.cid-tag2mlirHz .mbr-gallery-title:before {
  border-radius: 0px 0px 10px 10px;
}
.cid-tag2mlirHz div {
  overflow: hidden;
}
.cid-tag2mlirHz .btn-primary-outline.active {
  color: white;
}
.cid-tag2mlirHz .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tag2mlirHz .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tag2mlirHz .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tag2mlirHz .mbr-gallery-item {
  overflow: hidden;
}
.cid-tag2mlirHz .mbr-gallery-item img {
  transition: all 0.3s;
  border-radius: 10px;
}
.cid-tag2mlirHz .mbr-gallery-filter {
  padding-top: 20px;
  padding-bottom: 20px;
}
.cid-tag2mlirHz .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-tag2mlirHz .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tag2mlirHz .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-tag2mlirHz .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tag2mlirHz .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-tag2mmCXew {
  padding-top: 90px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tag2mmCXew .mbr-text {
  color: #716c80;
}
.cid-tag2mmCXew .card-wrapper {
  display: flex;
  flex-direction: row;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  transition: all 0.3s;
  padding: 1rem 1rem !important;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-tag2mmCXew .card-wrapper:hover {
  transform: translateY(-1rem);
}
.cid-tag2mmCXew .card-wrapper:hover .ico2 {
  color: #432480 !important;
}
.cid-tag2mmCXew .ico2 {
  color: #57468b !important;
  transition: all 0.6s;
}
.cid-tag2mmCXew .text-info:hover {
  color: inherit!important;
}
.cid-tag2mmCXew .card-box {
  padding: 0rem 1rem;
}
.cid-tag2mmCXew .ico1 {
  font-size: 3rem !important;
}
.cid-tag2mmCXew h3,
.cid-tag2mmCXew h4 {
  padding: 0;
  margin: 0;
}
.cid-tag2mmCXew .card-title,
.cid-tag2mmCXew .card-img {
  color: #57468b;
}
.cid-tag2mmCXew .card-title {
  color: #232323;
}
.cid-tag2mnElvR {
  padding-top: 180px;
  padding-bottom: 75px;
  background-color: #432480;
  position: relative;
  overflow: hidden;
}
.cid-tag2mnElvR .container {
  max-width: 1400px;
}
.cid-tag2mnElvR .card-img2 span {
  padding-top: 6px;
}
.cid-tag2mnElvR .soc-item a {
  padding-top: 5px;
}
.cid-tag2mnElvR .btn {
  padding: 0.4rem 0.6rem!important;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-tag2mnElvR .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-tag2mnElvR .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-tag2mnElvR .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tag2mnElvR svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-tag2mnElvR #e2_shape {
  fill: #ffffff !important;
}
.cid-tag2mnElvR .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-tag2mnElvR .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-tag2mnElvR .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #ff9800;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tag2mnElvR .card-img {
  width: auto;
}
.cid-tag2mnElvR .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-tag2mnElvR .soc-item span {
  font-size: 1.4rem;
}
.cid-tag2mnElvR .soc-item:hover span {
  color: #432480 !important;
}
.cid-tag2mnElvR .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-tag2mnElvR .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-tag2mnElvR .media-wrap {
  margin-bottom: 1rem;
}
.cid-tag2mnElvR .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tag2mnElvR img {
  height: 4rem;
}
@media (max-width: 576px) {
  .cid-tag2mnElvR .item {
    justify-content: center;
  }
  .cid-tag2mnElvR .quote::after {
    left: 60px;
  }
}
.cid-tag2mnElvR .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-tag2mnElvR .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tag2mnElvR .text1 {
  color: #ffffff;
}
.cid-tag2mnElvR .item-title {
  color: #ffffff;
}
.cid-tag2mnElvR H5 {
  color: #ff9800;
}
.cid-tag2mnElvR .theme {
  color: #ffffff;
}
.cid-tag2mnElvR .copyright > p {
  color: #ff3366;
}
.cid-tag2mnElvR .text2 {
  color: #ffffff;
}
.cid-tag2moX91k {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tag2moX91k .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uFU6hJSJFX .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-uFU6hJSJFX .navbar-fixed-top {
  padding-top: 0;
}
.cid-uFU6hJSJFX .navbar-collapse {
  flex-basis: auto;
  transition: all 0.3s ease-in;
}
.cid-uFU6hJSJFX .navbar-collapse.show {
  position: absolute;
  opacity: 1;
  visibility: visible;
  top: 100%;
  z-index: 999;
  background-color: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 15px 20px;
  bottom: auto;
  left: 0px;
  right: 0px;
}
.cid-uFU6hJSJFX .navbar-collapse.show .navbar-nav .nav-item {
  text-align: left;
  padding: 10px 0;
}
.cid-uFU6hJSJFX .navbar-buttons {
  flex-wrap: wrap;
}
.cid-uFU6hJSJFX .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-uFU6hJSJFX .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-uFU6hJSJFX .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  padding-right: 2rem;
}
.cid-uFU6hJSJFX .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uFU6hJSJFX .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uFU6hJSJFX .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uFU6hJSJFX .menu-content-top {
  background: #432480;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  width: 100%;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-uFU6hJSJFX .menu-content-top .right-wrap .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-uFU6hJSJFX .dropdown-item {
  font-weight: 400;
  margin: 0 !important;
  padding: 0 40px !important;
  line-height: 2.6;
}
.cid-uFU6hJSJFX .dropdown-item,
.cid-uFU6hJSJFX .nav-link,
.cid-uFU6hJSJFX .brand-name {
  font-style: normal;
}
.cid-uFU6hJSJFX .dropdown-item:hover,
.cid-uFU6hJSJFX .nav-link:hover,
.cid-uFU6hJSJFX .brand-name:hover {
  color: #ff9800 !important;
}
.cid-uFU6hJSJFX .dropdown-menu {
  background-color: #ffffff;
}
.cid-uFU6hJSJFX .dropdown-item:active {
  background-color: #ffffff;
}
.cid-uFU6hJSJFX .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
  justify-content: center;
}
.cid-uFU6hJSJFX .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uFU6hJSJFX .nav-item {
  position: relative;
}
.cid-uFU6hJSJFX .nav-item span {
  padding-right: 0.4em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-uFU6hJSJFX .nav-item .nav-link {
  transition: all 0.3s ease-in-out 0ms;
}
.cid-uFU6hJSJFX .nav-item .nav-link:focus {
  outline: none;
}
@media (min-width: 991px) {
  .cid-uFU6hJSJFX .nav-link {
    line-height: 6.13;
  }
  .cid-uFU6hJSJFX .navbar-nav > li > a:before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 0;
    margin: auto;
    opacity: 0;
    border-top: 2px solid #279e64;
    transition: all 0.3s ease-in-out 0ms;
  }
  .cid-uFU6hJSJFX .navbar-nav > li:hover > a:before {
    opacity: 1;
    width: 100%;
  }
}
.cid-uFU6hJSJFX .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFU6hJSJFX .content-text {
  margin-bottom: 0;
}
.cid-uFU6hJSJFX .navbar-nav {
  position: relative;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-uFU6hJSJFX .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #432480;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-uFU6hJSJFX .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-uFU6hJSJFX .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-uFU6hJSJFX .navbar-nav .nav-item .link {
  margin: 0 20px !important;
}
.cid-uFU6hJSJFX .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uFU6hJSJFX .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-uFU6hJSJFX .content-right-side {
  text-align: center;
}
.cid-uFU6hJSJFX .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-uFU6hJSJFX .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-uFU6hJSJFX .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
  color: #5580ff;
}
.cid-uFU6hJSJFX .widget-icon.mobi-mbri-phone {
  -webkit-animation: phone-icon-animate 1s ease-in-out infinite;
  animation: phone-icon-animate 1s ease-in-out infinite;
}
.cid-uFU6hJSJFX .info-widget {
  margin-left: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uFU6hJSJFX .info-widget:first-child {
  margin-left: 0;
}
.cid-uFU6hJSJFX .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-uFU6hJSJFX .widget-content .widget-title {
  margin-bottom: 3px;
  line-height: 1.7;
}
.cid-uFU6hJSJFX .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-uFU6hJSJFX .navbar .menu-content-top {
  display: flex;
  height: 90px;
  border-bottom: 1px solid #d9dade;
}
@media (min-width: 992px) {
  .cid-uFU6hJSJFX .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
  }
  .cid-uFU6hJSJFX .navbar {
    display: block;
    padding: 0;
  }
  .cid-uFU6hJSJFX .navbar .menu-logo {
    margin: auto;
    display: flex;
    align-items: center;
  }
  .cid-uFU6hJSJFX .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-uFU6hJSJFX .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-uFU6hJSJFX .navbar-toggler {
    display: none;
  }
  .cid-uFU6hJSJFX .navbar-collapse {
    justify-content: center;
  }
}
.cid-uFU6hJSJFX .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-uFU6hJSJFX .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
  position: relative;
  overflow: hidden;
  margin-right: 0;
}
.cid-uFU6hJSJFX .btn-sm {
  padding: 13px 29px;
}
.cid-uFU6hJSJFX .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-uFU6hJSJFX .btn::after {
  background-color: #57468b;
  content: "";
  height: 150px;
  left: -75px;
  position: absolute;
  top: -60px;
  transform: rotate(35deg);
  transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  width: 40px;
  opacity: 0;
  outline: none;
  text-decoration: none;
}
.cid-uFU6hJSJFX .btn:hover::after {
  left: 250px;
  opacity: 0.8;
}
.cid-uFU6hJSJFX .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-uFU6hJSJFX .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-uFU6hJSJFX .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  align-self: center;
}
.cid-uFU6hJSJFX .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uFU6hJSJFX .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding: 25px 0;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uFU6hJSJFX .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uFU6hJSJFX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFU6hJSJFX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFU6hJSJFX .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-uFU6hJSJFX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uFU6hJSJFX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFU6hJSJFX .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uFU6hJSJFX .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFU6hJSJFX .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-uFU6hJSJFX .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  transition: font-size 0.25s;
}
.cid-uFU6hJSJFX .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uFU6hJSJFX .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uFU6hJSJFX .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uFU6hJSJFX button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  margin-right: 0;
}
.cid-uFU6hJSJFX button.navbar-toggler:focus {
  outline: none;
}
.cid-uFU6hJSJFX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #282828;
}
.cid-uFU6hJSJFX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFU6hJSJFX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFU6hJSJFX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFU6hJSJFX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFU6hJSJFX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFU6hJSJFX nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFU6hJSJFX nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFU6hJSJFX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFU6hJSJFX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFU6hJSJFX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFU6hJSJFX .collapsed .btn {
  display: flex;
}
.cid-uFU6hJSJFX .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uFU6hJSJFX .collapsed .navbar-collapse.collapsing,
.cid-uFU6hJSJFX .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uFU6hJSJFX .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uFU6hJSJFX .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uFU6hJSJFX .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uFU6hJSJFX .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uFU6hJSJFX .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uFU6hJSJFX .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}
.cid-uFU6hJSJFX .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uFU6hJSJFX .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uFU6hJSJFX .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uFU6hJSJFX .collapsed button.navbar-toggler {
  display: block;
}
.cid-uFU6hJSJFX .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-uFU6hJSJFX .collapsed .navbar-toggleable-sm {
  flex-direction: column;
}
.cid-uFU6hJSJFX .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-uFU6hJSJFX .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uFU6hJSJFX .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uFU6hJSJFX .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: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-uFU6hJSJFX .collapsed .menu-bottom {
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uFU6hJSJFX .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
    padding-left: 20px !important;
  }
  .cid-uFU6hJSJFX .dropdown-menu .dropdown-item {
    text-align: left;
    font-weight: 700;
  }
  .cid-uFU6hJSJFX .menu-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-uFU6hJSJFX .menu-bottom .menu-content-right {
    display: none;
  }
  .cid-uFU6hJSJFX .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
    opacity: 0;
    transition: all 0.3s ease-in;
    position: absolute;
    top: 100%;
    bottom: auto;
    left: 0px;
    right: 0px;
    z-index: 999;
  }
  .cid-uFU6hJSJFX .navbar-collapse .navbar-nav .nav-item {
    clear: both;
    text-align: left;
    padding: 10px 0;
  }
  .cid-uFU6hJSJFX .navbar-collapse.collapsing,
  .cid-uFU6hJSJFX .navbar-collapse.show {
    display: block !important;
  }
  .cid-uFU6hJSJFX .navbar-collapse.collapsing .navbar-nav,
  .cid-uFU6hJSJFX .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uFU6hJSJFX .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uFU6hJSJFX .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uFU6hJSJFX .navbar-collapse.collapsing .navbar-nav .nav-item .nav-link,
  .cid-uFU6hJSJFX .navbar-collapse.show .navbar-nav .nav-item .nav-link {
    font-weight: 700;
  }
  .cid-uFU6hJSJFX .navbar-collapse.collapsing .navbar-buttons,
  .cid-uFU6hJSJFX .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-uFU6hJSJFX .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uFU6hJSJFX .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uFU6hJSJFX img {
    height: 3.8rem !important;
  }
  .cid-uFU6hJSJFX .btn {
    display: flex;
  }
  .cid-uFU6hJSJFX button.navbar-toggler {
    display: block;
    align-self: center;
  }
  .cid-uFU6hJSJFX .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-uFU6hJSJFX .navbar-toggleable-sm {
    flex-direction: column;
  }
  .cid-uFU6hJSJFX .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-uFU6hJSJFX .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uFU6hJSJFX .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uFU6hJSJFX .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: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-uFU6hJSJFX .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-uFU6hJSJFX .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-uFU6hJSJFX .navbar-toggler {
  position: relative;
}
.cid-uFU6hJSJFX .dropdown-item.active,
.cid-uFU6hJSJFX .dropdown-item:active {
  color: initial;
}
.cid-uFU6hJSJFX .widget-title {
  color: #57468b;
}
.cid-uFU6hJSJFX .widget-text {
  color: #57468b;
}
.cid-uFU6hJSJFX .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
.cid-uFU6hJSJFX .icons-menu .mbr-iconfont {
  font-size: 1rem;
  color: #432480;
  display: inline-flex;
  background-color: #eaebee;
  border-radius: 100%;
  transition: all 0.3s ease-in;
}
.cid-uFU6hJSJFX .icons-menu .mbr-iconfont:before {
  padding: .75rem;
}
.cid-uFU6hJSJFX .icons-menu .mbr-iconfont:hover {
  color: #ffffff;
  background-color: #432480;
  -webkit-animation-name: animation-pulse;
  animation-name: animation-pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  opacity: .9;
}
.cid-uFU6hJSJFX .soc-item {
  margin: .5rem .3rem;
}
@media (max-width: 768px) {
  .cid-uFU6hJSJFX .menu-content-top .icons-menu {
    padding-left: 0;
  }
  .cid-uFU6hJSJFX .menu-content-top .icons-menu .soc-item .mbr-iconfont {
    font-size: 14px;
  }
  .cid-uFU6hJSJFX .menu-content-top .icons-menu .soc-item .mbr-iconfont::before {
    padding: 0.44rem;
  }
  .cid-uFU6hJSJFX .menu-content-top .right-wrap .info-widget {
    margin-left: 20px;
  }
  .cid-uFU6hJSJFX .menu-content-top .right-wrap .info-widget:first-child {
    margin-left: 0;
  }
  .cid-uFU6hJSJFX .menu-content-top .right-wrap .info-widget .widget-content {
    display: none;
  }
  .cid-uFU6hJSJFX .menu-content-top .right-wrap .info-widget .widget-icon {
    font-size: 25px;
    padding-right: 0;
  }
  .cid-uFU6hJSJFX .navbar-brand {
    margin-left: 0 !important;
  }
}
@media (max-width: 576px) {
  .cid-uFU6hJSJFX .menu-content-top,
  .cid-uFU6hJSJFX .menu-bottom {
    padding: 0 15px;
  }
  .cid-uFU6hJSJFX button.navbar-toggler {
    align-self: center;
  }
}
@-webkit-keyframes phone-icon-animate {
  0%,
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    transform: rotate(20deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@keyframes phone-icon-animate {
  0%,
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    transform: rotate(20deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@-webkit-keyframes animation-pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
@keyframes animation-pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
.cid-uFU6hJSJFX .widget-title,
.cid-uFU6hJSJFX .widget-icon {
  color: #ffffff;
}
.cid-uFU6hKjupO {
  padding-top: 105px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-uFU6hKjupO H1 {
  text-align: center;
  color: #ff9800;
}
.cid-uFU6hKjupO .mbr-text,
.cid-uFU6hKjupO .mbr-section-btn {
  text-align: center;
}
.cid-uFU7eMQdg6 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-uFU7eMQdg6 h4 {
  margin-bottom: 0;
}
.cid-uFU7eMQdg6 p {
  color: #767676;
}
.cid-uFU7eMQdg6 .card:hover img {
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-uFU7eMQdg6 .btn-info-outline {
  border: none;
  color: #57468b !important;
  padding: 0;
  margin: 0 0.25rem!important;
}
.cid-uFU7eMQdg6 .btn-info-outline span {
  order: 2;
  font-size: 1.1rem;
  padding-top: 3px;
  transition: padding 0.3s!important;
}
.cid-uFU7eMQdg6 .btn-info-outline:hover span {
  padding-left: 10px;
}
.cid-uFU7eMQdg6 .btn-info-outline:hover {
  background-color: transparent!important;
  color: #432480 !important;
  box-shadow: none!important;
}
.cid-uFU7eMQdg6 .btn-info-outline:active,
.cid-uFU7eMQdg6 .btn-info-outline:focus {
  background-color: transparent!important;
  box-shadow: none!important;
}
.cid-uFU7eMQdg6 .card-box {
  padding-top: 2rem;
}
.cid-uFU7eMQdg6 .card-wrapper {
  height: 100%;
}
.cid-uFU7eMQdg6 .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-uFU7eMQdg6 img {
  transition: all 0.3s;
  border-radius: 8px;
}
.cid-uFU7eMQdg6 .card-title {
  color: #57468b;
}
.cid-uFU7eMQdg6 .main-title {
  color: #57468b;
}
.cid-uFU7eMQdg6 DIV {
  color: #57468b;
}
.cid-uFU7eMQdg6 .card-img {
  width: auto;
}
.cid-uFU7eMQdg6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFU7eMQdg6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFU7eMQdg6 .mbr-text,
.cid-uFU7eMQdg6 .mbr-section-btn {
  color: #232323;
}
.cid-uHoMfz2ixP {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-uHoMfz2ixP h4 {
  margin-bottom: 0;
}
.cid-uHoMfz2ixP p {
  color: #767676;
}
.cid-uHoMfz2ixP .card:hover img {
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-uHoMfz2ixP .btn-info-outline {
  border: none;
  color: #57468b !important;
  padding: 0;
  margin: 0 0.25rem!important;
}
.cid-uHoMfz2ixP .btn-info-outline span {
  order: 2;
  font-size: 1.1rem;
  padding-top: 3px;
  transition: padding 0.3s!important;
}
.cid-uHoMfz2ixP .btn-info-outline:hover span {
  padding-left: 10px;
}
.cid-uHoMfz2ixP .btn-info-outline:hover {
  background-color: transparent!important;
  color: #432480 !important;
  box-shadow: none!important;
}
.cid-uHoMfz2ixP .btn-info-outline:active,
.cid-uHoMfz2ixP .btn-info-outline:focus {
  background-color: transparent!important;
  box-shadow: none!important;
}
.cid-uHoMfz2ixP .card-box {
  padding-top: 2rem;
}
.cid-uHoMfz2ixP .card-wrapper {
  height: 100%;
}
.cid-uHoMfz2ixP .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-uHoMfz2ixP img {
  transition: all 0.3s;
  border-radius: 8px;
}
.cid-uHoMfz2ixP .card-title {
  color: #57468b;
}
.cid-uHoMfz2ixP .main-title {
  color: #57468b;
}
.cid-uHoMfz2ixP DIV {
  color: #57468b;
}
.cid-uHoMfz2ixP .card-img {
  width: auto;
}
.cid-uHoMfz2ixP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHoMfz2ixP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHoMfz2ixP .mbr-text,
.cid-uHoMfz2ixP .mbr-section-btn {
  color: #232323;
}
.cid-uFU6hKO994 {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uFU6hKO994 H1 {
  color: #432480;
}
.cid-uFU6hKO994 .mbr-text,
.cid-uFU6hKO994 .mbr-section-btn {
  color: #363636;
}
.cid-uFU6hL2ZeY {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uFU6hL2ZeY h5,
.cid-uFU6hL2ZeY h4,
.cid-uFU6hL2ZeY p {
  margin-bottom: 0;
}
.cid-uFU6hL2ZeY p {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-uFU6hL2ZeY .container-fluid {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}
.cid-uFU6hL2ZeY .card-link {
  padding-top: 1.2rem;
  margin-top: 1.2rem;
  border-top: 1px solid #ffffff;
}
.cid-uFU6hL2ZeY .card-wrapper {
  transition: all 0.3s;
  background-color: #ff9800;
}
.cid-uFU6hL2ZeY .card-wrapper .card-box {
  padding: 1.2rem;
}
.cid-uFU6hL2ZeY .card-wrapper:hover {
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-uFU6hL2ZeY .card-title-link {
  position: relative;
}
.cid-uFU6hL2ZeY .card-title-link:after {
  content: "";
  transition: all 0.3s;
  border-bottom: 1px solid currentColor;
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
}
.cid-uFU6hL2ZeY .card-title-link:hover:after {
  width: 100%;
}
.cid-uFU6hL2ZeY .card-box {
  padding-top: 2rem;
  display: inline-block;
  width: 100%;
}
.cid-uFU6hL2ZeY .card-wrapper {
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.cid-uFU6hL2ZeY .card-wrapper .card-title {
  transition: all 0.3s;
}
.cid-uFU6hL2ZeY .card-wrapper:hover .card-title {
  color: #432480;
}
.cid-uFU6hL2ZeY .card-title,
.cid-uFU6hL2ZeY .main-title,
.cid-uFU6hL2ZeY .card-title-link {
  color: #57468b;
}
.cid-uFU6hL2ZeY .mbr-text {
  color: #133100;
}
.cid-uFU6hL2ZeY .card-title {
  color: #ffffff;
}
.cid-uFU6hL2ZeY .card-price {
  color: #133100;
}
.cid-uFU6hLulWK {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uFU6hLulWK H1 {
  color: #432480;
}
.cid-uFU6hLulWK .mbr-text,
.cid-uFU6hLulWK .mbr-section-btn {
  color: #363636;
}
.cid-uFU6hLIm5A {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-uFU6hLIm5A H1 {
  color: #ff9800;
  text-align: center;
}
.cid-uFU6hLIm5A .mbr-text,
.cid-uFU6hLIm5A .mbr-section-btn {
  color: #716c80;
}
.cid-uFU6hLIm5A H3 {
  color: #716c80;
}
.cid-uFU6hLYi17 {
  padding-top: 105px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/87-2000x1335.jpg");
  background-size: cover;
}
.cid-uFU6hLYi17 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uFU6hLYi17 h4 {
  text-align: center;
}
.cid-uFU6hLYi17 p {
  text-align: center;
}
.cid-uFU6hLYi17 .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-uFU6hLYi17 .mbr-iconfont {
  transition: all 0.3s;
  color: #ffffff !important;
  font-size: 3rem !important;
}
.cid-uFU6hLYi17 .card {
  transition: all 0.3s;
  padding: 2rem!important;
}
.cid-uFU6hLYi17 .card:hover .card-title {
  color: #57468b !important;
  cursor: pointer;
}
.cid-uFU6hLYi17 .card-title {
  transition: color 0.3s;
}
.cid-uFU6hLYi17 .card-title,
.cid-uFU6hLYi17 .card-img {
  color: #ff9800;
}
@media (max-width: 576px) {
  .cid-uFU6hLYi17 .card {
    padding: 2rem 0rem 0rem 0rem!important;
  }
}
.cid-uFU6hMutps {
  padding-top: 105px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-uFU6hMutps H1 {
  color: #432480;
}
.cid-uFU6hMutps .mbr-text,
.cid-uFU6hMutps .mbr-section-btn {
  color: #716c80;
}
.cid-uFU6hMutps H3 {
  color: #716c80;
}
.cid-uFU6hMKeow {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/bg1-1-2000x1335.jpeg");
}
.cid-uFU6hMKeow h5,
.cid-uFU6hMKeow h4,
.cid-uFU6hMKeow p {
  margin-bottom: 0;
}
.cid-uFU6hMKeow p {
  color: #767676;
}
.cid-uFU6hMKeow .card-img {
  padding: 0;
}
.cid-uFU6hMKeow .mbr-section-btn {
  margin: 0;
  margin-top: 1.2rem;
  border-top: 1px solid #cccccc;
}
.cid-uFU6hMKeow .mbr-section-btn .btn {
  margin-top: 1.2rem !important;
}
.cid-uFU6hMKeow .card-wrapper {
  transition: all 0.3s;
  background-color: #ffffff;
}
.cid-uFU6hMKeow .card-wrapper:hover {
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-uFU6hMKeow .card-box {
  padding: 2rem;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uFU6hMKeow .card-box {
    padding: 2rem 0 0;
  }
  .cid-uFU6hMKeow .card-wrapper {
    display: block !important;
  }
}
.cid-uFU6hMKeow .card-wrapper {
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
}
.cid-uFU6hMKeow .card-title,
.cid-uFU6hMKeow .main-title {
  color: #57468b;
}
.cid-uFU6hMKeow .card-title {
  color: #432480;
}
.cid-uFU6hNbKqe {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/04-2000x1335.jpeg");
}
.cid-uFU6hNbKqe H1 {
  color: #432480;
}
.cid-uFU6hNbKqe .mbr-text,
.cid-uFU6hNbKqe .mbr-section-btn {
  color: #716c80;
}
.cid-uFU6hNbKqe img {
  width: 80%;
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
@media (max-width: 992px) {
  .cid-uFU6hNbKqe img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.cid-uFU6hNrDwA {
  padding-top: 225px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/03-1-2000x1335.jpeg");
}
.cid-uFU6hNrDwA H1 {
  color: #432480;
  text-align: left;
}
.cid-uFU6hNrDwA .mbr-text,
.cid-uFU6hNrDwA .mbr-section-btn {
  color: #363636;
  text-align: left;
}
.cid-uFU6hNJ8ci {
  padding-top: 90px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uFU6hNJ8ci .mbr-text {
  color: #716c80;
}
.cid-uFU6hNJ8ci .card-wrapper {
  display: flex;
  flex-direction: row;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  transition: all 0.3s;
  padding: 1rem 1rem !important;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-uFU6hNJ8ci .card-wrapper:hover {
  transform: translateY(-1rem);
}
.cid-uFU6hNJ8ci .card-wrapper:hover .ico2 {
  color: #432480 !important;
}
.cid-uFU6hNJ8ci .ico2 {
  color: #57468b !important;
  transition: all 0.6s;
}
.cid-uFU6hNJ8ci .text-info:hover {
  color: inherit!important;
}
.cid-uFU6hNJ8ci .card-box {
  padding: 0rem 1rem;
}
.cid-uFU6hNJ8ci .ico1 {
  font-size: 3rem !important;
}
.cid-uFU6hNJ8ci h3,
.cid-uFU6hNJ8ci h4 {
  padding: 0;
  margin: 0;
}
.cid-uFU6hNJ8ci .card-title,
.cid-uFU6hNJ8ci .card-img {
  color: #57468b;
}
.cid-uFU6hNJ8ci .card-title {
  color: #232323;
}
.cid-uFU6hO8ekz {
  padding-top: 180px;
  padding-bottom: 75px;
  background-color: #432480;
  position: relative;
  overflow: hidden;
}
.cid-uFU6hO8ekz .container {
  max-width: 1400px;
}
.cid-uFU6hO8ekz .card-img2 span {
  padding-top: 6px;
}
.cid-uFU6hO8ekz .soc-item a {
  padding-top: 5px;
}
.cid-uFU6hO8ekz .btn {
  padding: 0.4rem 0.6rem!important;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-uFU6hO8ekz .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-uFU6hO8ekz .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-uFU6hO8ekz .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uFU6hO8ekz svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-uFU6hO8ekz #e2_shape {
  fill: #ffffff !important;
}
.cid-uFU6hO8ekz .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-uFU6hO8ekz .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-uFU6hO8ekz .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #ff9800;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uFU6hO8ekz .card-img {
  width: auto;
}
.cid-uFU6hO8ekz .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-uFU6hO8ekz .soc-item span {
  font-size: 1.4rem;
}
.cid-uFU6hO8ekz .soc-item:hover span {
  color: #432480 !important;
}
.cid-uFU6hO8ekz .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-uFU6hO8ekz .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-uFU6hO8ekz .media-wrap {
  margin-bottom: 1rem;
}
.cid-uFU6hO8ekz .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-uFU6hO8ekz img {
  height: 4rem;
}
@media (max-width: 576px) {
  .cid-uFU6hO8ekz .item {
    justify-content: center;
  }
  .cid-uFU6hO8ekz .quote::after {
    left: 60px;
  }
}
.cid-uFU6hO8ekz .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-uFU6hO8ekz .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uFU6hO8ekz .text1 {
  color: #ffffff;
}
.cid-uFU6hO8ekz .item-title {
  color: #ffffff;
}
.cid-uFU6hO8ekz H5 {
  color: #ff9800;
}
.cid-uFU6hO8ekz .theme {
  color: #ffffff;
}
.cid-uFU6hO8ekz .copyright > p {
  color: #ff3366;
}
.cid-uFU6hO8ekz .text2 {
  color: #ffffff;
}
.cid-uFU6hOB5aS {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uFU6hOB5aS .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uFUuuuDmy4 .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-uFUuuuDmy4 .navbar-fixed-top {
  padding-top: 0;
}
.cid-uFUuuuDmy4 .navbar-collapse {
  flex-basis: auto;
  transition: all 0.3s ease-in;
}
.cid-uFUuuuDmy4 .navbar-collapse.show {
  position: absolute;
  opacity: 1;
  visibility: visible;
  top: 100%;
  z-index: 999;
  background-color: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 15px 20px;
  bottom: auto;
  left: 0px;
  right: 0px;
}
.cid-uFUuuuDmy4 .navbar-collapse.show .navbar-nav .nav-item {
  text-align: left;
  padding: 10px 0;
}
.cid-uFUuuuDmy4 .navbar-buttons {
  flex-wrap: wrap;
}
.cid-uFUuuuDmy4 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-uFUuuuDmy4 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-uFUuuuDmy4 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  padding-right: 2rem;
}
.cid-uFUuuuDmy4 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uFUuuuDmy4 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uFUuuuDmy4 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uFUuuuDmy4 .menu-content-top {
  background: #432480;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  width: 100%;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-uFUuuuDmy4 .menu-content-top .right-wrap .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-uFUuuuDmy4 .dropdown-item {
  font-weight: 400;
  margin: 0 !important;
  padding: 0 40px !important;
  line-height: 2.6;
}
.cid-uFUuuuDmy4 .dropdown-item,
.cid-uFUuuuDmy4 .nav-link,
.cid-uFUuuuDmy4 .brand-name {
  font-style: normal;
}
.cid-uFUuuuDmy4 .dropdown-item:hover,
.cid-uFUuuuDmy4 .nav-link:hover,
.cid-uFUuuuDmy4 .brand-name:hover {
  color: #ff9800 !important;
}
.cid-uFUuuuDmy4 .dropdown-menu {
  background-color: #ffffff;
}
.cid-uFUuuuDmy4 .dropdown-item:active {
  background-color: #ffffff;
}
.cid-uFUuuuDmy4 .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
  justify-content: center;
}
.cid-uFUuuuDmy4 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uFUuuuDmy4 .nav-item {
  position: relative;
}
.cid-uFUuuuDmy4 .nav-item span {
  padding-right: 0.4em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-uFUuuuDmy4 .nav-item .nav-link {
  transition: all 0.3s ease-in-out 0ms;
}
.cid-uFUuuuDmy4 .nav-item .nav-link:focus {
  outline: none;
}
@media (min-width: 991px) {
  .cid-uFUuuuDmy4 .nav-link {
    line-height: 6.13;
  }
  .cid-uFUuuuDmy4 .navbar-nav > li > a:before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 0;
    margin: auto;
    opacity: 0;
    border-top: 2px solid #279e64;
    transition: all 0.3s ease-in-out 0ms;
  }
  .cid-uFUuuuDmy4 .navbar-nav > li:hover > a:before {
    opacity: 1;
    width: 100%;
  }
}
.cid-uFUuuuDmy4 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFUuuuDmy4 .content-text {
  margin-bottom: 0;
}
.cid-uFUuuuDmy4 .navbar-nav {
  position: relative;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-uFUuuuDmy4 .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #432480;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-uFUuuuDmy4 .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-uFUuuuDmy4 .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-uFUuuuDmy4 .navbar-nav .nav-item .link {
  margin: 0 20px !important;
}
.cid-uFUuuuDmy4 .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uFUuuuDmy4 .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-uFUuuuDmy4 .content-right-side {
  text-align: center;
}
.cid-uFUuuuDmy4 .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-uFUuuuDmy4 .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-uFUuuuDmy4 .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
  color: #5580ff;
}
.cid-uFUuuuDmy4 .widget-icon.mobi-mbri-phone {
  -webkit-animation: phone-icon-animate 1s ease-in-out infinite;
  animation: phone-icon-animate 1s ease-in-out infinite;
}
.cid-uFUuuuDmy4 .info-widget {
  margin-left: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uFUuuuDmy4 .info-widget:first-child {
  margin-left: 0;
}
.cid-uFUuuuDmy4 .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-uFUuuuDmy4 .widget-content .widget-title {
  margin-bottom: 3px;
  line-height: 1.7;
}
.cid-uFUuuuDmy4 .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-uFUuuuDmy4 .navbar .menu-content-top {
  display: flex;
  height: 90px;
  border-bottom: 1px solid #d9dade;
}
@media (min-width: 992px) {
  .cid-uFUuuuDmy4 .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
  }
  .cid-uFUuuuDmy4 .navbar {
    display: block;
    padding: 0;
  }
  .cid-uFUuuuDmy4 .navbar .menu-logo {
    margin: auto;
    display: flex;
    align-items: center;
  }
  .cid-uFUuuuDmy4 .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-uFUuuuDmy4 .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-uFUuuuDmy4 .navbar-toggler {
    display: none;
  }
  .cid-uFUuuuDmy4 .navbar-collapse {
    justify-content: center;
  }
}
.cid-uFUuuuDmy4 .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-uFUuuuDmy4 .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
  position: relative;
  overflow: hidden;
  margin-right: 0;
}
.cid-uFUuuuDmy4 .btn-sm {
  padding: 13px 29px;
}
.cid-uFUuuuDmy4 .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-uFUuuuDmy4 .btn::after {
  background-color: #57468b;
  content: "";
  height: 150px;
  left: -75px;
  position: absolute;
  top: -60px;
  transform: rotate(35deg);
  transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  width: 40px;
  opacity: 0;
  outline: none;
  text-decoration: none;
}
.cid-uFUuuuDmy4 .btn:hover::after {
  left: 250px;
  opacity: 0.8;
}
.cid-uFUuuuDmy4 .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-uFUuuuDmy4 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-uFUuuuDmy4 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  align-self: center;
}
.cid-uFUuuuDmy4 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uFUuuuDmy4 .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding: 25px 0;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uFUuuuDmy4 .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uFUuuuDmy4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFUuuuDmy4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFUuuuDmy4 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-uFUuuuDmy4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uFUuuuDmy4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFUuuuDmy4 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uFUuuuDmy4 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFUuuuDmy4 .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-uFUuuuDmy4 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  transition: font-size 0.25s;
}
.cid-uFUuuuDmy4 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uFUuuuDmy4 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uFUuuuDmy4 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uFUuuuDmy4 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  margin-right: 0;
}
.cid-uFUuuuDmy4 button.navbar-toggler:focus {
  outline: none;
}
.cid-uFUuuuDmy4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #282828;
}
.cid-uFUuuuDmy4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFUuuuDmy4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFUuuuDmy4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFUuuuDmy4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFUuuuDmy4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFUuuuDmy4 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFUuuuDmy4 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFUuuuDmy4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFUuuuDmy4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFUuuuDmy4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFUuuuDmy4 .collapsed .btn {
  display: flex;
}
.cid-uFUuuuDmy4 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uFUuuuDmy4 .collapsed .navbar-collapse.collapsing,
.cid-uFUuuuDmy4 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uFUuuuDmy4 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uFUuuuDmy4 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uFUuuuDmy4 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uFUuuuDmy4 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uFUuuuDmy4 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uFUuuuDmy4 .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}
.cid-uFUuuuDmy4 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uFUuuuDmy4 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uFUuuuDmy4 .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uFUuuuDmy4 .collapsed button.navbar-toggler {
  display: block;
}
.cid-uFUuuuDmy4 .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-uFUuuuDmy4 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
}
.cid-uFUuuuDmy4 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-uFUuuuDmy4 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uFUuuuDmy4 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uFUuuuDmy4 .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: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-uFUuuuDmy4 .collapsed .menu-bottom {
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uFUuuuDmy4 .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
    padding-left: 20px !important;
  }
  .cid-uFUuuuDmy4 .dropdown-menu .dropdown-item {
    text-align: left;
    font-weight: 700;
  }
  .cid-uFUuuuDmy4 .menu-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-uFUuuuDmy4 .menu-bottom .menu-content-right {
    display: none;
  }
  .cid-uFUuuuDmy4 .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
    opacity: 0;
    transition: all 0.3s ease-in;
    position: absolute;
    top: 100%;
    bottom: auto;
    left: 0px;
    right: 0px;
    z-index: 999;
  }
  .cid-uFUuuuDmy4 .navbar-collapse .navbar-nav .nav-item {
    clear: both;
    text-align: left;
    padding: 10px 0;
  }
  .cid-uFUuuuDmy4 .navbar-collapse.collapsing,
  .cid-uFUuuuDmy4 .navbar-collapse.show {
    display: block !important;
  }
  .cid-uFUuuuDmy4 .navbar-collapse.collapsing .navbar-nav,
  .cid-uFUuuuDmy4 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uFUuuuDmy4 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uFUuuuDmy4 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uFUuuuDmy4 .navbar-collapse.collapsing .navbar-nav .nav-item .nav-link,
  .cid-uFUuuuDmy4 .navbar-collapse.show .navbar-nav .nav-item .nav-link {
    font-weight: 700;
  }
  .cid-uFUuuuDmy4 .navbar-collapse.collapsing .navbar-buttons,
  .cid-uFUuuuDmy4 .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-uFUuuuDmy4 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uFUuuuDmy4 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uFUuuuDmy4 img {
    height: 3.8rem !important;
  }
  .cid-uFUuuuDmy4 .btn {
    display: flex;
  }
  .cid-uFUuuuDmy4 button.navbar-toggler {
    display: block;
    align-self: center;
  }
  .cid-uFUuuuDmy4 .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-uFUuuuDmy4 .navbar-toggleable-sm {
    flex-direction: column;
  }
  .cid-uFUuuuDmy4 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-uFUuuuDmy4 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uFUuuuDmy4 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uFUuuuDmy4 .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: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-uFUuuuDmy4 .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-uFUuuuDmy4 .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-uFUuuuDmy4 .navbar-toggler {
  position: relative;
}
.cid-uFUuuuDmy4 .dropdown-item.active,
.cid-uFUuuuDmy4 .dropdown-item:active {
  color: initial;
}
.cid-uFUuuuDmy4 .widget-title {
  color: #57468b;
}
.cid-uFUuuuDmy4 .widget-text {
  color: #57468b;
}
.cid-uFUuuuDmy4 .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
.cid-uFUuuuDmy4 .icons-menu .mbr-iconfont {
  font-size: 1rem;
  color: #432480;
  display: inline-flex;
  background-color: #eaebee;
  border-radius: 100%;
  transition: all 0.3s ease-in;
}
.cid-uFUuuuDmy4 .icons-menu .mbr-iconfont:before {
  padding: .75rem;
}
.cid-uFUuuuDmy4 .icons-menu .mbr-iconfont:hover {
  color: #ffffff;
  background-color: #432480;
  -webkit-animation-name: animation-pulse;
  animation-name: animation-pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  opacity: .9;
}
.cid-uFUuuuDmy4 .soc-item {
  margin: .5rem .3rem;
}
@media (max-width: 768px) {
  .cid-uFUuuuDmy4 .menu-content-top .icons-menu {
    padding-left: 0;
  }
  .cid-uFUuuuDmy4 .menu-content-top .icons-menu .soc-item .mbr-iconfont {
    font-size: 14px;
  }
  .cid-uFUuuuDmy4 .menu-content-top .icons-menu .soc-item .mbr-iconfont::before {
    padding: 0.44rem;
  }
  .cid-uFUuuuDmy4 .menu-content-top .right-wrap .info-widget {
    margin-left: 20px;
  }
  .cid-uFUuuuDmy4 .menu-content-top .right-wrap .info-widget:first-child {
    margin-left: 0;
  }
  .cid-uFUuuuDmy4 .menu-content-top .right-wrap .info-widget .widget-content {
    display: none;
  }
  .cid-uFUuuuDmy4 .menu-content-top .right-wrap .info-widget .widget-icon {
    font-size: 25px;
    padding-right: 0;
  }
  .cid-uFUuuuDmy4 .navbar-brand {
    margin-left: 0 !important;
  }
}
@media (max-width: 576px) {
  .cid-uFUuuuDmy4 .menu-content-top,
  .cid-uFUuuuDmy4 .menu-bottom {
    padding: 0 15px;
  }
  .cid-uFUuuuDmy4 button.navbar-toggler {
    align-self: center;
  }
}
@-webkit-keyframes phone-icon-animate {
  0%,
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    transform: rotate(20deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@keyframes phone-icon-animate {
  0%,
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    transform: rotate(20deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@-webkit-keyframes animation-pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
@keyframes animation-pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
.cid-uFUuuuDmy4 .widget-title,
.cid-uFUuuuDmy4 .widget-icon {
  color: #ffffff;
}
.cid-uFUuuvcxFD {
  padding-top: 165px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-uFUuuvcxFD H1 {
  text-align: center;
  color: #ff9800;
}
.cid-uFUuuvcxFD .mbr-text,
.cid-uFUuuvcxFD .mbr-section-btn {
  text-align: center;
}
.cid-uFUwwhh4Qd {
  background-color: #ffffff;
}
.cid-uFUwwhh4Qd img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-uFUwwhh4Qd H1 {
  color: #57468b;
}
.cid-uFUwwhh4Qd .mbr-text,
.cid-uFUwwhh4Qd .mbr-section-btn {
  color: #716c80;
}
.cid-uFUwwhh4Qd H3 {
  color: #716c80;
}
.cid-uFUwwhh4Qd .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-uFUwwhh4Qd .btn-info-outline {
  border: none;
  color: #57468b !important;
  padding: 0;
  margin: 0 0.25rem!important;
}
.cid-uFUwwhh4Qd .btn-info-outline span {
  order: 2;
  font-size: 1.1rem;
  padding-top: 3px;
  transition: padding 0.3s!important;
}
.cid-uFUwwhh4Qd .btn-info-outline:hover span {
  padding-left: 10px;
}
.cid-uFUwwhh4Qd .btn-info-outline:hover {
  background-color: transparent!important;
  color: #432480 !important;
  box-shadow: none!important;
}
.cid-uFUwwhh4Qd .btn-info-outline:active,
.cid-uFUwwhh4Qd .btn-info-outline:focus {
  background-color: transparent!important;
  box-shadow: none!important;
}
.cid-uFUwwhh4Qd DIV {
  color: #57468b;
}
.cid-uFUwwhh4Qd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFUwwhh4Qd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFUwwhh4Qd .mbr-text,
.cid-uFUwwhh4Qd .media-content,
.cid-uFUwwhh4Qd .mbr-section-btn {
  color: #363636;
}
.cid-uFUuuyClqe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/bg1-1-2000x1335.jpeg");
}
.cid-uFUuuyClqe h5,
.cid-uFUuuyClqe h4,
.cid-uFUuuyClqe p {
  margin-bottom: 0;
}
.cid-uFUuuyClqe p {
  color: #767676;
}
.cid-uFUuuyClqe .card-img {
  padding: 0;
}
.cid-uFUuuyClqe .mbr-section-btn {
  margin: 0;
  margin-top: 1.2rem;
  border-top: 1px solid #cccccc;
}
.cid-uFUuuyClqe .mbr-section-btn .btn {
  margin-top: 1.2rem !important;
}
.cid-uFUuuyClqe .card-wrapper {
  transition: all 0.3s;
  background-color: #ffffff;
}
.cid-uFUuuyClqe .card-wrapper:hover {
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-uFUuuyClqe .card-box {
  padding: 2rem;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uFUuuyClqe .card-box {
    padding: 2rem 0 0;
  }
  .cid-uFUuuyClqe .card-wrapper {
    display: block !important;
  }
}
.cid-uFUuuyClqe .card-wrapper {
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
}
.cid-uFUuuyClqe .card-title,
.cid-uFUuuyClqe .main-title {
  color: #57468b;
}
.cid-uFUuuyClqe .card-title {
  color: #432480;
}
.cid-uFUuuz9ZYp {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/04-2000x1335.jpeg");
}
.cid-uFUuuz9ZYp H1 {
  color: #432480;
}
.cid-uFUuuz9ZYp .mbr-text,
.cid-uFUuuz9ZYp .mbr-section-btn {
  color: #716c80;
}
.cid-uFUuuz9ZYp img {
  width: 80%;
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
@media (max-width: 992px) {
  .cid-uFUuuz9ZYp img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.cid-uFUuuzuO5x {
  padding-top: 225px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/03-1-2000x1335.jpeg");
}
.cid-uFUuuzuO5x H1 {
  color: #432480;
  text-align: left;
}
.cid-uFUuuzuO5x .mbr-text,
.cid-uFUuuzuO5x .mbr-section-btn {
  color: #363636;
  text-align: left;
}
.cid-uFUuuzRQtu {
  padding-top: 90px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uFUuuzRQtu .mbr-text {
  color: #716c80;
}
.cid-uFUuuzRQtu .card-wrapper {
  display: flex;
  flex-direction: row;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  transition: all 0.3s;
  padding: 1rem 1rem !important;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-uFUuuzRQtu .card-wrapper:hover {
  transform: translateY(-1rem);
}
.cid-uFUuuzRQtu .card-wrapper:hover .ico2 {
  color: #432480 !important;
}
.cid-uFUuuzRQtu .ico2 {
  color: #57468b !important;
  transition: all 0.6s;
}
.cid-uFUuuzRQtu .text-info:hover {
  color: inherit!important;
}
.cid-uFUuuzRQtu .card-box {
  padding: 0rem 1rem;
}
.cid-uFUuuzRQtu .ico1 {
  font-size: 3rem !important;
}
.cid-uFUuuzRQtu h3,
.cid-uFUuuzRQtu h4 {
  padding: 0;
  margin: 0;
}
.cid-uFUuuzRQtu .card-title,
.cid-uFUuuzRQtu .card-img {
  color: #57468b;
}
.cid-uFUuuzRQtu .card-title {
  color: #232323;
}
.cid-uFUuuAn8SG {
  padding-top: 180px;
  padding-bottom: 75px;
  background-color: #432480;
  position: relative;
  overflow: hidden;
}
.cid-uFUuuAn8SG .container {
  max-width: 1400px;
}
.cid-uFUuuAn8SG .card-img2 span {
  padding-top: 6px;
}
.cid-uFUuuAn8SG .soc-item a {
  padding-top: 5px;
}
.cid-uFUuuAn8SG .btn {
  padding: 0.4rem 0.6rem!important;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-uFUuuAn8SG .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-uFUuuAn8SG .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-uFUuuAn8SG .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uFUuuAn8SG svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-uFUuuAn8SG #e2_shape {
  fill: #ffffff !important;
}
.cid-uFUuuAn8SG .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-uFUuuAn8SG .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-uFUuuAn8SG .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #ff9800;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uFUuuAn8SG .card-img {
  width: auto;
}
.cid-uFUuuAn8SG .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-uFUuuAn8SG .soc-item span {
  font-size: 1.4rem;
}
.cid-uFUuuAn8SG .soc-item:hover span {
  color: #432480 !important;
}
.cid-uFUuuAn8SG .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-uFUuuAn8SG .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-uFUuuAn8SG .media-wrap {
  margin-bottom: 1rem;
}
.cid-uFUuuAn8SG .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-uFUuuAn8SG img {
  height: 4rem;
}
@media (max-width: 576px) {
  .cid-uFUuuAn8SG .item {
    justify-content: center;
  }
  .cid-uFUuuAn8SG .quote::after {
    left: 60px;
  }
}
.cid-uFUuuAn8SG .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-uFUuuAn8SG .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uFUuuAn8SG .text1 {
  color: #ffffff;
}
.cid-uFUuuAn8SG .item-title {
  color: #ffffff;
}
.cid-uFUuuAn8SG H5 {
  color: #ff9800;
}
.cid-uFUuuAn8SG .theme {
  color: #ffffff;
}
.cid-uFUuuAn8SG .copyright > p {
  color: #ff3366;
}
.cid-uFUuuAn8SG .text2 {
  color: #ffffff;
}
.cid-uFUuuAW4v2 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uFUuuAW4v2 .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uFUAs3qy2k .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-uFUAs3qy2k .navbar-fixed-top {
  padding-top: 0;
}
.cid-uFUAs3qy2k .navbar-collapse {
  flex-basis: auto;
  transition: all 0.3s ease-in;
}
.cid-uFUAs3qy2k .navbar-collapse.show {
  position: absolute;
  opacity: 1;
  visibility: visible;
  top: 100%;
  z-index: 999;
  background-color: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 15px 20px;
  bottom: auto;
  left: 0px;
  right: 0px;
}
.cid-uFUAs3qy2k .navbar-collapse.show .navbar-nav .nav-item {
  text-align: left;
  padding: 10px 0;
}
.cid-uFUAs3qy2k .navbar-buttons {
  flex-wrap: wrap;
}
.cid-uFUAs3qy2k .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-uFUAs3qy2k .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-uFUAs3qy2k .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  padding-right: 2rem;
}
.cid-uFUAs3qy2k .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uFUAs3qy2k .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uFUAs3qy2k .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uFUAs3qy2k .menu-content-top {
  background: #432480;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  width: 100%;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-uFUAs3qy2k .menu-content-top .right-wrap .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-uFUAs3qy2k .dropdown-item {
  font-weight: 400;
  margin: 0 !important;
  padding: 0 40px !important;
  line-height: 2.6;
}
.cid-uFUAs3qy2k .dropdown-item,
.cid-uFUAs3qy2k .nav-link,
.cid-uFUAs3qy2k .brand-name {
  font-style: normal;
}
.cid-uFUAs3qy2k .dropdown-item:hover,
.cid-uFUAs3qy2k .nav-link:hover,
.cid-uFUAs3qy2k .brand-name:hover {
  color: #ff9800 !important;
}
.cid-uFUAs3qy2k .dropdown-menu {
  background-color: #ffffff;
}
.cid-uFUAs3qy2k .dropdown-item:active {
  background-color: #ffffff;
}
.cid-uFUAs3qy2k .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
  justify-content: center;
}
.cid-uFUAs3qy2k .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uFUAs3qy2k .nav-item {
  position: relative;
}
.cid-uFUAs3qy2k .nav-item span {
  padding-right: 0.4em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-uFUAs3qy2k .nav-item .nav-link {
  transition: all 0.3s ease-in-out 0ms;
}
.cid-uFUAs3qy2k .nav-item .nav-link:focus {
  outline: none;
}
@media (min-width: 991px) {
  .cid-uFUAs3qy2k .nav-link {
    line-height: 6.13;
  }
  .cid-uFUAs3qy2k .navbar-nav > li > a:before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 0;
    margin: auto;
    opacity: 0;
    border-top: 2px solid #279e64;
    transition: all 0.3s ease-in-out 0ms;
  }
  .cid-uFUAs3qy2k .navbar-nav > li:hover > a:before {
    opacity: 1;
    width: 100%;
  }
}
.cid-uFUAs3qy2k .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFUAs3qy2k .content-text {
  margin-bottom: 0;
}
.cid-uFUAs3qy2k .navbar-nav {
  position: relative;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-uFUAs3qy2k .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #432480;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-uFUAs3qy2k .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-uFUAs3qy2k .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-uFUAs3qy2k .navbar-nav .nav-item .link {
  margin: 0 20px !important;
}
.cid-uFUAs3qy2k .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uFUAs3qy2k .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-uFUAs3qy2k .content-right-side {
  text-align: center;
}
.cid-uFUAs3qy2k .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-uFUAs3qy2k .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-uFUAs3qy2k .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
  color: #5580ff;
}
.cid-uFUAs3qy2k .widget-icon.mobi-mbri-phone {
  -webkit-animation: phone-icon-animate 1s ease-in-out infinite;
  animation: phone-icon-animate 1s ease-in-out infinite;
}
.cid-uFUAs3qy2k .info-widget {
  margin-left: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uFUAs3qy2k .info-widget:first-child {
  margin-left: 0;
}
.cid-uFUAs3qy2k .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-uFUAs3qy2k .widget-content .widget-title {
  margin-bottom: 3px;
  line-height: 1.7;
}
.cid-uFUAs3qy2k .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-uFUAs3qy2k .navbar .menu-content-top {
  display: flex;
  height: 90px;
  border-bottom: 1px solid #d9dade;
}
@media (min-width: 992px) {
  .cid-uFUAs3qy2k .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
  }
  .cid-uFUAs3qy2k .navbar {
    display: block;
    padding: 0;
  }
  .cid-uFUAs3qy2k .navbar .menu-logo {
    margin: auto;
    display: flex;
    align-items: center;
  }
  .cid-uFUAs3qy2k .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-uFUAs3qy2k .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-uFUAs3qy2k .navbar-toggler {
    display: none;
  }
  .cid-uFUAs3qy2k .navbar-collapse {
    justify-content: center;
  }
}
.cid-uFUAs3qy2k .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-uFUAs3qy2k .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
  position: relative;
  overflow: hidden;
  margin-right: 0;
}
.cid-uFUAs3qy2k .btn-sm {
  padding: 13px 29px;
}
.cid-uFUAs3qy2k .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-uFUAs3qy2k .btn::after {
  background-color: #57468b;
  content: "";
  height: 150px;
  left: -75px;
  position: absolute;
  top: -60px;
  transform: rotate(35deg);
  transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  width: 40px;
  opacity: 0;
  outline: none;
  text-decoration: none;
}
.cid-uFUAs3qy2k .btn:hover::after {
  left: 250px;
  opacity: 0.8;
}
.cid-uFUAs3qy2k .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-uFUAs3qy2k .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-uFUAs3qy2k .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  align-self: center;
}
.cid-uFUAs3qy2k .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uFUAs3qy2k .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding: 25px 0;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uFUAs3qy2k .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uFUAs3qy2k .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFUAs3qy2k .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFUAs3qy2k .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-uFUAs3qy2k .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uFUAs3qy2k .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFUAs3qy2k .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uFUAs3qy2k .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFUAs3qy2k .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-uFUAs3qy2k .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  transition: font-size 0.25s;
}
.cid-uFUAs3qy2k .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uFUAs3qy2k .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uFUAs3qy2k .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uFUAs3qy2k button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  margin-right: 0;
}
.cid-uFUAs3qy2k button.navbar-toggler:focus {
  outline: none;
}
.cid-uFUAs3qy2k button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #282828;
}
.cid-uFUAs3qy2k button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFUAs3qy2k button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFUAs3qy2k button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFUAs3qy2k button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFUAs3qy2k nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFUAs3qy2k nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFUAs3qy2k nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFUAs3qy2k nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFUAs3qy2k .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFUAs3qy2k .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFUAs3qy2k .collapsed .btn {
  display: flex;
}
.cid-uFUAs3qy2k .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uFUAs3qy2k .collapsed .navbar-collapse.collapsing,
.cid-uFUAs3qy2k .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uFUAs3qy2k .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uFUAs3qy2k .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uFUAs3qy2k .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uFUAs3qy2k .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uFUAs3qy2k .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uFUAs3qy2k .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}
.cid-uFUAs3qy2k .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uFUAs3qy2k .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uFUAs3qy2k .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uFUAs3qy2k .collapsed button.navbar-toggler {
  display: block;
}
.cid-uFUAs3qy2k .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-uFUAs3qy2k .collapsed .navbar-toggleable-sm {
  flex-direction: column;
}
.cid-uFUAs3qy2k .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-uFUAs3qy2k .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uFUAs3qy2k .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uFUAs3qy2k .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: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-uFUAs3qy2k .collapsed .menu-bottom {
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uFUAs3qy2k .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
    padding-left: 20px !important;
  }
  .cid-uFUAs3qy2k .dropdown-menu .dropdown-item {
    text-align: left;
    font-weight: 700;
  }
  .cid-uFUAs3qy2k .menu-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-uFUAs3qy2k .menu-bottom .menu-content-right {
    display: none;
  }
  .cid-uFUAs3qy2k .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
    opacity: 0;
    transition: all 0.3s ease-in;
    position: absolute;
    top: 100%;
    bottom: auto;
    left: 0px;
    right: 0px;
    z-index: 999;
  }
  .cid-uFUAs3qy2k .navbar-collapse .navbar-nav .nav-item {
    clear: both;
    text-align: left;
    padding: 10px 0;
  }
  .cid-uFUAs3qy2k .navbar-collapse.collapsing,
  .cid-uFUAs3qy2k .navbar-collapse.show {
    display: block !important;
  }
  .cid-uFUAs3qy2k .navbar-collapse.collapsing .navbar-nav,
  .cid-uFUAs3qy2k .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uFUAs3qy2k .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uFUAs3qy2k .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uFUAs3qy2k .navbar-collapse.collapsing .navbar-nav .nav-item .nav-link,
  .cid-uFUAs3qy2k .navbar-collapse.show .navbar-nav .nav-item .nav-link {
    font-weight: 700;
  }
  .cid-uFUAs3qy2k .navbar-collapse.collapsing .navbar-buttons,
  .cid-uFUAs3qy2k .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-uFUAs3qy2k .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uFUAs3qy2k .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uFUAs3qy2k img {
    height: 3.8rem !important;
  }
  .cid-uFUAs3qy2k .btn {
    display: flex;
  }
  .cid-uFUAs3qy2k button.navbar-toggler {
    display: block;
    align-self: center;
  }
  .cid-uFUAs3qy2k .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-uFUAs3qy2k .navbar-toggleable-sm {
    flex-direction: column;
  }
  .cid-uFUAs3qy2k .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-uFUAs3qy2k .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uFUAs3qy2k .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uFUAs3qy2k .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: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-uFUAs3qy2k .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-uFUAs3qy2k .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-uFUAs3qy2k .navbar-toggler {
  position: relative;
}
.cid-uFUAs3qy2k .dropdown-item.active,
.cid-uFUAs3qy2k .dropdown-item:active {
  color: initial;
}
.cid-uFUAs3qy2k .widget-title {
  color: #57468b;
}
.cid-uFUAs3qy2k .widget-text {
  color: #57468b;
}
.cid-uFUAs3qy2k .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
.cid-uFUAs3qy2k .icons-menu .mbr-iconfont {
  font-size: 1rem;
  color: #432480;
  display: inline-flex;
  background-color: #eaebee;
  border-radius: 100%;
  transition: all 0.3s ease-in;
}
.cid-uFUAs3qy2k .icons-menu .mbr-iconfont:before {
  padding: .75rem;
}
.cid-uFUAs3qy2k .icons-menu .mbr-iconfont:hover {
  color: #ffffff;
  background-color: #432480;
  -webkit-animation-name: animation-pulse;
  animation-name: animation-pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  opacity: .9;
}
.cid-uFUAs3qy2k .soc-item {
  margin: .5rem .3rem;
}
@media (max-width: 768px) {
  .cid-uFUAs3qy2k .menu-content-top .icons-menu {
    padding-left: 0;
  }
  .cid-uFUAs3qy2k .menu-content-top .icons-menu .soc-item .mbr-iconfont {
    font-size: 14px;
  }
  .cid-uFUAs3qy2k .menu-content-top .icons-menu .soc-item .mbr-iconfont::before {
    padding: 0.44rem;
  }
  .cid-uFUAs3qy2k .menu-content-top .right-wrap .info-widget {
    margin-left: 20px;
  }
  .cid-uFUAs3qy2k .menu-content-top .right-wrap .info-widget:first-child {
    margin-left: 0;
  }
  .cid-uFUAs3qy2k .menu-content-top .right-wrap .info-widget .widget-content {
    display: none;
  }
  .cid-uFUAs3qy2k .menu-content-top .right-wrap .info-widget .widget-icon {
    font-size: 25px;
    padding-right: 0;
  }
  .cid-uFUAs3qy2k .navbar-brand {
    margin-left: 0 !important;
  }
}
@media (max-width: 576px) {
  .cid-uFUAs3qy2k .menu-content-top,
  .cid-uFUAs3qy2k .menu-bottom {
    padding: 0 15px;
  }
  .cid-uFUAs3qy2k button.navbar-toggler {
    align-self: center;
  }
}
@-webkit-keyframes phone-icon-animate {
  0%,
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    transform: rotate(20deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@keyframes phone-icon-animate {
  0%,
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    transform: rotate(20deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@-webkit-keyframes animation-pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
@keyframes animation-pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
.cid-uFUAs3qy2k .widget-title,
.cid-uFUAs3qy2k .widget-icon {
  color: #ffffff;
}
.cid-uFUAs41qO2 {
  padding-top: 165px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-uFUAs41qO2 H1 {
  text-align: center;
  color: #ff9800;
}
.cid-uFUAs41qO2 .mbr-text,
.cid-uFUAs41qO2 .mbr-section-btn {
  text-align: center;
}
.cid-uFUAs4mfjs {
  background-color: #ffffff;
}
.cid-uFUAs4mfjs img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-uFUAs4mfjs H1 {
  color: #57468b;
}
.cid-uFUAs4mfjs .mbr-text,
.cid-uFUAs4mfjs .mbr-section-btn {
  color: #716c80;
}
.cid-uFUAs4mfjs H3 {
  color: #716c80;
}
.cid-uFUAs4mfjs .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-uFUAs4mfjs .btn-info-outline {
  border: none;
  color: #57468b !important;
  padding: 0;
  margin: 0 0.25rem!important;
}
.cid-uFUAs4mfjs .btn-info-outline span {
  order: 2;
  font-size: 1.1rem;
  padding-top: 3px;
  transition: padding 0.3s!important;
}
.cid-uFUAs4mfjs .btn-info-outline:hover span {
  padding-left: 10px;
}
.cid-uFUAs4mfjs .btn-info-outline:hover {
  background-color: transparent!important;
  color: #432480 !important;
  box-shadow: none!important;
}
.cid-uFUAs4mfjs .btn-info-outline:active,
.cid-uFUAs4mfjs .btn-info-outline:focus {
  background-color: transparent!important;
  box-shadow: none!important;
}
.cid-uFUAs4mfjs DIV {
  color: #57468b;
}
.cid-uFUAs4mfjs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFUAs4mfjs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFUAs4mfjs .mbr-text,
.cid-uFUAs4mfjs .media-content,
.cid-uFUAs4mfjs .mbr-section-btn {
  color: #363636;
}
.cid-uFUAs4Itl3 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/bg1-1-2000x1335.jpeg");
}
.cid-uFUAs4Itl3 h5,
.cid-uFUAs4Itl3 h4,
.cid-uFUAs4Itl3 p {
  margin-bottom: 0;
}
.cid-uFUAs4Itl3 p {
  color: #767676;
}
.cid-uFUAs4Itl3 .card-img {
  padding: 0;
}
.cid-uFUAs4Itl3 .mbr-section-btn {
  margin: 0;
  margin-top: 1.2rem;
  border-top: 1px solid #cccccc;
}
.cid-uFUAs4Itl3 .mbr-section-btn .btn {
  margin-top: 1.2rem !important;
}
.cid-uFUAs4Itl3 .card-wrapper {
  transition: all 0.3s;
  background-color: #ffffff;
}
.cid-uFUAs4Itl3 .card-wrapper:hover {
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-uFUAs4Itl3 .card-box {
  padding: 2rem;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uFUAs4Itl3 .card-box {
    padding: 2rem 0 0;
  }
  .cid-uFUAs4Itl3 .card-wrapper {
    display: block !important;
  }
}
.cid-uFUAs4Itl3 .card-wrapper {
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
}
.cid-uFUAs4Itl3 .card-title,
.cid-uFUAs4Itl3 .main-title {
  color: #57468b;
}
.cid-uFUAs4Itl3 .card-title {
  color: #432480;
}
.cid-uFUAs5gqKv {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/04-2000x1335.jpeg");
}
.cid-uFUAs5gqKv H1 {
  color: #432480;
}
.cid-uFUAs5gqKv .mbr-text,
.cid-uFUAs5gqKv .mbr-section-btn {
  color: #716c80;
}
.cid-uFUAs5gqKv img {
  width: 80%;
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
@media (max-width: 992px) {
  .cid-uFUAs5gqKv img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.cid-uFUAs5BO9Y {
  padding-top: 225px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/03-1-2000x1335.jpeg");
}
.cid-uFUAs5BO9Y H1 {
  color: #432480;
  text-align: left;
}
.cid-uFUAs5BO9Y .mbr-text,
.cid-uFUAs5BO9Y .mbr-section-btn {
  color: #363636;
  text-align: left;
}
.cid-uFUAs5Vhvb {
  padding-top: 90px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uFUAs5Vhvb .mbr-text {
  color: #716c80;
}
.cid-uFUAs5Vhvb .card-wrapper {
  display: flex;
  flex-direction: row;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  transition: all 0.3s;
  padding: 1rem 1rem !important;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-uFUAs5Vhvb .card-wrapper:hover {
  transform: translateY(-1rem);
}
.cid-uFUAs5Vhvb .card-wrapper:hover .ico2 {
  color: #432480 !important;
}
.cid-uFUAs5Vhvb .ico2 {
  color: #57468b !important;
  transition: all 0.6s;
}
.cid-uFUAs5Vhvb .text-info:hover {
  color: inherit!important;
}
.cid-uFUAs5Vhvb .card-box {
  padding: 0rem 1rem;
}
.cid-uFUAs5Vhvb .ico1 {
  font-size: 3rem !important;
}
.cid-uFUAs5Vhvb h3,
.cid-uFUAs5Vhvb h4 {
  padding: 0;
  margin: 0;
}
.cid-uFUAs5Vhvb .card-title,
.cid-uFUAs5Vhvb .card-img {
  color: #57468b;
}
.cid-uFUAs5Vhvb .card-title {
  color: #232323;
}
.cid-uFUAs6pjuv {
  padding-top: 180px;
  padding-bottom: 75px;
  background-color: #432480;
  position: relative;
  overflow: hidden;
}
.cid-uFUAs6pjuv .container {
  max-width: 1400px;
}
.cid-uFUAs6pjuv .card-img2 span {
  padding-top: 6px;
}
.cid-uFUAs6pjuv .soc-item a {
  padding-top: 5px;
}
.cid-uFUAs6pjuv .btn {
  padding: 0.4rem 0.6rem!important;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-uFUAs6pjuv .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-uFUAs6pjuv .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-uFUAs6pjuv .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uFUAs6pjuv svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-uFUAs6pjuv #e2_shape {
  fill: #ffffff !important;
}
.cid-uFUAs6pjuv .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-uFUAs6pjuv .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-uFUAs6pjuv .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #ff9800;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uFUAs6pjuv .card-img {
  width: auto;
}
.cid-uFUAs6pjuv .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-uFUAs6pjuv .soc-item span {
  font-size: 1.4rem;
}
.cid-uFUAs6pjuv .soc-item:hover span {
  color: #432480 !important;
}
.cid-uFUAs6pjuv .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-uFUAs6pjuv .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-uFUAs6pjuv .media-wrap {
  margin-bottom: 1rem;
}
.cid-uFUAs6pjuv .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-uFUAs6pjuv img {
  height: 4rem;
}
@media (max-width: 576px) {
  .cid-uFUAs6pjuv .item {
    justify-content: center;
  }
  .cid-uFUAs6pjuv .quote::after {
    left: 60px;
  }
}
.cid-uFUAs6pjuv .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-uFUAs6pjuv .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uFUAs6pjuv .text1 {
  color: #ffffff;
}
.cid-uFUAs6pjuv .item-title {
  color: #ffffff;
}
.cid-uFUAs6pjuv H5 {
  color: #ff9800;
}
.cid-uFUAs6pjuv .theme {
  color: #ffffff;
}
.cid-uFUAs6pjuv .copyright > p {
  color: #ff3366;
}
.cid-uFUAs6pjuv .text2 {
  color: #ffffff;
}
.cid-uFUAs6WECn {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uFUAs6WECn .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uGzXlS85qg .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-uGzXlS85qg .navbar-fixed-top {
  padding-top: 0;
}
.cid-uGzXlS85qg .navbar-collapse {
  flex-basis: auto;
  transition: all 0.3s ease-in;
}
.cid-uGzXlS85qg .navbar-collapse.show {
  position: absolute;
  opacity: 1;
  visibility: visible;
  top: 100%;
  z-index: 999;
  background-color: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 15px 20px;
  bottom: auto;
  left: 0px;
  right: 0px;
}
.cid-uGzXlS85qg .navbar-collapse.show .navbar-nav .nav-item {
  text-align: left;
  padding: 10px 0;
}
.cid-uGzXlS85qg .navbar-buttons {
  flex-wrap: wrap;
}
.cid-uGzXlS85qg .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-uGzXlS85qg .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-uGzXlS85qg .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  padding-right: 2rem;
}
.cid-uGzXlS85qg .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uGzXlS85qg .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uGzXlS85qg .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uGzXlS85qg .menu-content-top {
  background: #432480;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  width: 100%;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-uGzXlS85qg .menu-content-top .right-wrap .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-uGzXlS85qg .dropdown-item {
  font-weight: 400;
  margin: 0 !important;
  padding: 0 40px !important;
  line-height: 2.6;
}
.cid-uGzXlS85qg .dropdown-item,
.cid-uGzXlS85qg .nav-link,
.cid-uGzXlS85qg .brand-name {
  font-style: normal;
}
.cid-uGzXlS85qg .dropdown-item:hover,
.cid-uGzXlS85qg .nav-link:hover,
.cid-uGzXlS85qg .brand-name:hover {
  color: #ff9800 !important;
}
.cid-uGzXlS85qg .dropdown-menu {
  background-color: #ffffff;
}
.cid-uGzXlS85qg .dropdown-item:active {
  background-color: #ffffff;
}
.cid-uGzXlS85qg .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
  justify-content: center;
}
.cid-uGzXlS85qg .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uGzXlS85qg .nav-item {
  position: relative;
}
.cid-uGzXlS85qg .nav-item span {
  padding-right: 0.4em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-uGzXlS85qg .nav-item .nav-link {
  transition: all 0.3s ease-in-out 0ms;
}
.cid-uGzXlS85qg .nav-item .nav-link:focus {
  outline: none;
}
@media (min-width: 991px) {
  .cid-uGzXlS85qg .nav-link {
    line-height: 6.13;
  }
  .cid-uGzXlS85qg .navbar-nav > li > a:before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 0;
    margin: auto;
    opacity: 0;
    border-top: 2px solid #279e64;
    transition: all 0.3s ease-in-out 0ms;
  }
  .cid-uGzXlS85qg .navbar-nav > li:hover > a:before {
    opacity: 1;
    width: 100%;
  }
}
.cid-uGzXlS85qg .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGzXlS85qg .content-text {
  margin-bottom: 0;
}
.cid-uGzXlS85qg .navbar-nav {
  position: relative;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-uGzXlS85qg .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #432480;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-uGzXlS85qg .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-uGzXlS85qg .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-uGzXlS85qg .navbar-nav .nav-item .link {
  margin: 0 20px !important;
}
.cid-uGzXlS85qg .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uGzXlS85qg .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-uGzXlS85qg .content-right-side {
  text-align: center;
}
.cid-uGzXlS85qg .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-uGzXlS85qg .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-uGzXlS85qg .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
  color: #5580ff;
}
.cid-uGzXlS85qg .widget-icon.mobi-mbri-phone {
  -webkit-animation: phone-icon-animate 1s ease-in-out infinite;
  animation: phone-icon-animate 1s ease-in-out infinite;
}
.cid-uGzXlS85qg .info-widget {
  margin-left: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uGzXlS85qg .info-widget:first-child {
  margin-left: 0;
}
.cid-uGzXlS85qg .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-uGzXlS85qg .widget-content .widget-title {
  margin-bottom: 3px;
  line-height: 1.7;
}
.cid-uGzXlS85qg .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-uGzXlS85qg .navbar .menu-content-top {
  display: flex;
  height: 90px;
  border-bottom: 1px solid #d9dade;
}
@media (min-width: 992px) {
  .cid-uGzXlS85qg .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
  }
  .cid-uGzXlS85qg .navbar {
    display: block;
    padding: 0;
  }
  .cid-uGzXlS85qg .navbar .menu-logo {
    margin: auto;
    display: flex;
    align-items: center;
  }
  .cid-uGzXlS85qg .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-uGzXlS85qg .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-uGzXlS85qg .navbar-toggler {
    display: none;
  }
  .cid-uGzXlS85qg .navbar-collapse {
    justify-content: center;
  }
}
.cid-uGzXlS85qg .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-uGzXlS85qg .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
  position: relative;
  overflow: hidden;
  margin-right: 0;
}
.cid-uGzXlS85qg .btn-sm {
  padding: 13px 29px;
}
.cid-uGzXlS85qg .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-uGzXlS85qg .btn::after {
  background-color: #57468b;
  content: "";
  height: 150px;
  left: -75px;
  position: absolute;
  top: -60px;
  transform: rotate(35deg);
  transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  width: 40px;
  opacity: 0;
  outline: none;
  text-decoration: none;
}
.cid-uGzXlS85qg .btn:hover::after {
  left: 250px;
  opacity: 0.8;
}
.cid-uGzXlS85qg .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-uGzXlS85qg .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-uGzXlS85qg .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  align-self: center;
}
.cid-uGzXlS85qg .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uGzXlS85qg .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding: 25px 0;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uGzXlS85qg .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uGzXlS85qg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uGzXlS85qg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uGzXlS85qg .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-uGzXlS85qg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uGzXlS85qg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGzXlS85qg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uGzXlS85qg .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGzXlS85qg .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-uGzXlS85qg .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  transition: font-size 0.25s;
}
.cid-uGzXlS85qg .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uGzXlS85qg .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uGzXlS85qg .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uGzXlS85qg button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  margin-right: 0;
}
.cid-uGzXlS85qg button.navbar-toggler:focus {
  outline: none;
}
.cid-uGzXlS85qg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #282828;
}
.cid-uGzXlS85qg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uGzXlS85qg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGzXlS85qg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGzXlS85qg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uGzXlS85qg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGzXlS85qg nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uGzXlS85qg nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uGzXlS85qg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGzXlS85qg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uGzXlS85qg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uGzXlS85qg .collapsed .btn {
  display: flex;
}
.cid-uGzXlS85qg .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uGzXlS85qg .collapsed .navbar-collapse.collapsing,
.cid-uGzXlS85qg .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uGzXlS85qg .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uGzXlS85qg .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uGzXlS85qg .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uGzXlS85qg .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uGzXlS85qg .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uGzXlS85qg .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}
.cid-uGzXlS85qg .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uGzXlS85qg .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uGzXlS85qg .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uGzXlS85qg .collapsed button.navbar-toggler {
  display: block;
}
.cid-uGzXlS85qg .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-uGzXlS85qg .collapsed .navbar-toggleable-sm {
  flex-direction: column;
}
.cid-uGzXlS85qg .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-uGzXlS85qg .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uGzXlS85qg .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uGzXlS85qg .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: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-uGzXlS85qg .collapsed .menu-bottom {
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uGzXlS85qg .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
    padding-left: 20px !important;
  }
  .cid-uGzXlS85qg .dropdown-menu .dropdown-item {
    text-align: left;
    font-weight: 700;
  }
  .cid-uGzXlS85qg .menu-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-uGzXlS85qg .menu-bottom .menu-content-right {
    display: none;
  }
  .cid-uGzXlS85qg .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
    opacity: 0;
    transition: all 0.3s ease-in;
    position: absolute;
    top: 100%;
    bottom: auto;
    left: 0px;
    right: 0px;
    z-index: 999;
  }
  .cid-uGzXlS85qg .navbar-collapse .navbar-nav .nav-item {
    clear: both;
    text-align: left;
    padding: 10px 0;
  }
  .cid-uGzXlS85qg .navbar-collapse.collapsing,
  .cid-uGzXlS85qg .navbar-collapse.show {
    display: block !important;
  }
  .cid-uGzXlS85qg .navbar-collapse.collapsing .navbar-nav,
  .cid-uGzXlS85qg .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uGzXlS85qg .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uGzXlS85qg .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uGzXlS85qg .navbar-collapse.collapsing .navbar-nav .nav-item .nav-link,
  .cid-uGzXlS85qg .navbar-collapse.show .navbar-nav .nav-item .nav-link {
    font-weight: 700;
  }
  .cid-uGzXlS85qg .navbar-collapse.collapsing .navbar-buttons,
  .cid-uGzXlS85qg .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-uGzXlS85qg .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uGzXlS85qg .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uGzXlS85qg img {
    height: 3.8rem !important;
  }
  .cid-uGzXlS85qg .btn {
    display: flex;
  }
  .cid-uGzXlS85qg button.navbar-toggler {
    display: block;
    align-self: center;
  }
  .cid-uGzXlS85qg .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-uGzXlS85qg .navbar-toggleable-sm {
    flex-direction: column;
  }
  .cid-uGzXlS85qg .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-uGzXlS85qg .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uGzXlS85qg .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uGzXlS85qg .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: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-uGzXlS85qg .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-uGzXlS85qg .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-uGzXlS85qg .navbar-toggler {
  position: relative;
}
.cid-uGzXlS85qg .dropdown-item.active,
.cid-uGzXlS85qg .dropdown-item:active {
  color: initial;
}
.cid-uGzXlS85qg .widget-title {
  color: #57468b;
}
.cid-uGzXlS85qg .widget-text {
  color: #57468b;
}
.cid-uGzXlS85qg .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
.cid-uGzXlS85qg .icons-menu .mbr-iconfont {
  font-size: 1rem;
  color: #432480;
  display: inline-flex;
  background-color: #eaebee;
  border-radius: 100%;
  transition: all 0.3s ease-in;
}
.cid-uGzXlS85qg .icons-menu .mbr-iconfont:before {
  padding: .75rem;
}
.cid-uGzXlS85qg .icons-menu .mbr-iconfont:hover {
  color: #ffffff;
  background-color: #432480;
  -webkit-animation-name: animation-pulse;
  animation-name: animation-pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  opacity: .9;
}
.cid-uGzXlS85qg .soc-item {
  margin: .5rem .3rem;
}
@media (max-width: 768px) {
  .cid-uGzXlS85qg .menu-content-top .icons-menu {
    padding-left: 0;
  }
  .cid-uGzXlS85qg .menu-content-top .icons-menu .soc-item .mbr-iconfont {
    font-size: 14px;
  }
  .cid-uGzXlS85qg .menu-content-top .icons-menu .soc-item .mbr-iconfont::before {
    padding: 0.44rem;
  }
  .cid-uGzXlS85qg .menu-content-top .right-wrap .info-widget {
    margin-left: 20px;
  }
  .cid-uGzXlS85qg .menu-content-top .right-wrap .info-widget:first-child {
    margin-left: 0;
  }
  .cid-uGzXlS85qg .menu-content-top .right-wrap .info-widget .widget-content {
    display: none;
  }
  .cid-uGzXlS85qg .menu-content-top .right-wrap .info-widget .widget-icon {
    font-size: 25px;
    padding-right: 0;
  }
  .cid-uGzXlS85qg .navbar-brand {
    margin-left: 0 !important;
  }
}
@media (max-width: 576px) {
  .cid-uGzXlS85qg .menu-content-top,
  .cid-uGzXlS85qg .menu-bottom {
    padding: 0 15px;
  }
  .cid-uGzXlS85qg button.navbar-toggler {
    align-self: center;
  }
}
@-webkit-keyframes phone-icon-animate {
  0%,
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    transform: rotate(20deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@keyframes phone-icon-animate {
  0%,
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    transform: rotate(20deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@-webkit-keyframes animation-pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
@keyframes animation-pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
.cid-uGzXlS85qg .widget-title,
.cid-uGzXlS85qg .widget-icon {
  color: #ffffff;
}
.cid-uGzXlSvc9Q {
  padding-top: 165px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-uGzXlSvc9Q H1 {
  text-align: center;
  color: #ff9800;
}
.cid-uGzXlSvc9Q .mbr-text,
.cid-uGzXlSvc9Q .mbr-section-btn {
  text-align: center;
}
.cid-uGzXlSHwCS {
  background-color: #ffffff;
}
.cid-uGzXlSHwCS img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-uGzXlSHwCS H1 {
  color: #57468b;
}
.cid-uGzXlSHwCS .mbr-text,
.cid-uGzXlSHwCS .mbr-section-btn {
  color: #716c80;
}
.cid-uGzXlSHwCS H3 {
  color: #716c80;
}
.cid-uGzXlSHwCS .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-uGzXlSHwCS .btn-info-outline {
  border: none;
  color: #57468b !important;
  padding: 0;
  margin: 0 0.25rem!important;
}
.cid-uGzXlSHwCS .btn-info-outline span {
  order: 2;
  font-size: 1.1rem;
  padding-top: 3px;
  transition: padding 0.3s!important;
}
.cid-uGzXlSHwCS .btn-info-outline:hover span {
  padding-left: 10px;
}
.cid-uGzXlSHwCS .btn-info-outline:hover {
  background-color: transparent!important;
  color: #432480 !important;
  box-shadow: none!important;
}
.cid-uGzXlSHwCS .btn-info-outline:active,
.cid-uGzXlSHwCS .btn-info-outline:focus {
  background-color: transparent!important;
  box-shadow: none!important;
}
.cid-uGzXlSHwCS DIV {
  color: #57468b;
}
.cid-uGzXlSHwCS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGzXlSHwCS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGzXlSHwCS .mbr-text,
.cid-uGzXlSHwCS .media-content,
.cid-uGzXlSHwCS .mbr-section-btn {
  color: #363636;
}
.cid-uGzXlSVnSG {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/bg1-1-2000x1335.jpeg");
}
.cid-uGzXlSVnSG h5,
.cid-uGzXlSVnSG h4,
.cid-uGzXlSVnSG p {
  margin-bottom: 0;
}
.cid-uGzXlSVnSG p {
  color: #767676;
}
.cid-uGzXlSVnSG .card-img {
  padding: 0;
}
.cid-uGzXlSVnSG .mbr-section-btn {
  margin: 0;
  margin-top: 1.2rem;
  border-top: 1px solid #cccccc;
}
.cid-uGzXlSVnSG .mbr-section-btn .btn {
  margin-top: 1.2rem !important;
}
.cid-uGzXlSVnSG .card-wrapper {
  transition: all 0.3s;
  background-color: #ffffff;
}
.cid-uGzXlSVnSG .card-wrapper:hover {
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-uGzXlSVnSG .card-box {
  padding: 2rem;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uGzXlSVnSG .card-box {
    padding: 2rem 0 0;
  }
  .cid-uGzXlSVnSG .card-wrapper {
    display: block !important;
  }
}
.cid-uGzXlSVnSG .card-wrapper {
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
}
.cid-uGzXlSVnSG .card-title,
.cid-uGzXlSVnSG .main-title {
  color: #57468b;
}
.cid-uGzXlSVnSG .card-title {
  color: #432480;
}
.cid-uGzXlTgPFf {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/04-2000x1335.jpeg");
}
.cid-uGzXlTgPFf H1 {
  color: #432480;
}
.cid-uGzXlTgPFf .mbr-text,
.cid-uGzXlTgPFf .mbr-section-btn {
  color: #716c80;
}
.cid-uGzXlTgPFf img {
  width: 80%;
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
@media (max-width: 992px) {
  .cid-uGzXlTgPFf img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.cid-uGzXlTsLdk {
  padding-top: 225px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/03-1-2000x1335.jpeg");
}
.cid-uGzXlTsLdk H1 {
  color: #432480;
  text-align: left;
}
.cid-uGzXlTsLdk .mbr-text,
.cid-uGzXlTsLdk .mbr-section-btn {
  color: #363636;
  text-align: left;
}
.cid-uGzXlTHkwS {
  padding-top: 90px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uGzXlTHkwS .mbr-text {
  color: #716c80;
}
.cid-uGzXlTHkwS .card-wrapper {
  display: flex;
  flex-direction: row;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  transition: all 0.3s;
  padding: 1rem 1rem !important;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-uGzXlTHkwS .card-wrapper:hover {
  transform: translateY(-1rem);
}
.cid-uGzXlTHkwS .card-wrapper:hover .ico2 {
  color: #432480 !important;
}
.cid-uGzXlTHkwS .ico2 {
  color: #57468b !important;
  transition: all 0.6s;
}
.cid-uGzXlTHkwS .text-info:hover {
  color: inherit!important;
}
.cid-uGzXlTHkwS .card-box {
  padding: 0rem 1rem;
}
.cid-uGzXlTHkwS .ico1 {
  font-size: 3rem !important;
}
.cid-uGzXlTHkwS h3,
.cid-uGzXlTHkwS h4 {
  padding: 0;
  margin: 0;
}
.cid-uGzXlTHkwS .card-title,
.cid-uGzXlTHkwS .card-img {
  color: #57468b;
}
.cid-uGzXlTHkwS .card-title {
  color: #232323;
}
.cid-uGzXlU5eQk {
  padding-top: 180px;
  padding-bottom: 75px;
  background-color: #432480;
  position: relative;
  overflow: hidden;
}
.cid-uGzXlU5eQk .container {
  max-width: 1400px;
}
.cid-uGzXlU5eQk .card-img2 span {
  padding-top: 6px;
}
.cid-uGzXlU5eQk .soc-item a {
  padding-top: 5px;
}
.cid-uGzXlU5eQk .btn {
  padding: 0.4rem 0.6rem!important;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-uGzXlU5eQk .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-uGzXlU5eQk .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-uGzXlU5eQk .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uGzXlU5eQk svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-uGzXlU5eQk #e2_shape {
  fill: #ffffff !important;
}
.cid-uGzXlU5eQk .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-uGzXlU5eQk .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-uGzXlU5eQk .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #ff9800;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uGzXlU5eQk .card-img {
  width: auto;
}
.cid-uGzXlU5eQk .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-uGzXlU5eQk .soc-item span {
  font-size: 1.4rem;
}
.cid-uGzXlU5eQk .soc-item:hover span {
  color: #432480 !important;
}
.cid-uGzXlU5eQk .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-uGzXlU5eQk .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-uGzXlU5eQk .media-wrap {
  margin-bottom: 1rem;
}
.cid-uGzXlU5eQk .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-uGzXlU5eQk img {
  height: 4rem;
}
@media (max-width: 576px) {
  .cid-uGzXlU5eQk .item {
    justify-content: center;
  }
  .cid-uGzXlU5eQk .quote::after {
    left: 60px;
  }
}
.cid-uGzXlU5eQk .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-uGzXlU5eQk .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uGzXlU5eQk .text1 {
  color: #ffffff;
}
.cid-uGzXlU5eQk .item-title {
  color: #ffffff;
}
.cid-uGzXlU5eQk H5 {
  color: #ff9800;
}
.cid-uGzXlU5eQk .theme {
  color: #ffffff;
}
.cid-uGzXlU5eQk .copyright > p {
  color: #ff3366;
}
.cid-uGzXlU5eQk .text2 {
  color: #ffffff;
}
.cid-uGzXlUwUa3 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uGzXlUwUa3 .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uHoP5BCt4x .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-uHoP5BCt4x .navbar-fixed-top {
  padding-top: 0;
}
.cid-uHoP5BCt4x .navbar-collapse {
  flex-basis: auto;
  transition: all 0.3s ease-in;
}
.cid-uHoP5BCt4x .navbar-collapse.show {
  position: absolute;
  opacity: 1;
  visibility: visible;
  top: 100%;
  z-index: 999;
  background-color: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 15px 20px;
  bottom: auto;
  left: 0px;
  right: 0px;
}
.cid-uHoP5BCt4x .navbar-collapse.show .navbar-nav .nav-item {
  text-align: left;
  padding: 10px 0;
}
.cid-uHoP5BCt4x .navbar-buttons {
  flex-wrap: wrap;
}
.cid-uHoP5BCt4x .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-uHoP5BCt4x .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-uHoP5BCt4x .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  padding-right: 2rem;
}
.cid-uHoP5BCt4x .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uHoP5BCt4x .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uHoP5BCt4x .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uHoP5BCt4x .menu-content-top {
  background: #432480;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  width: 100%;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-uHoP5BCt4x .menu-content-top .right-wrap .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-uHoP5BCt4x .dropdown-item {
  font-weight: 400;
  margin: 0 !important;
  padding: 0 40px !important;
  line-height: 2.6;
}
.cid-uHoP5BCt4x .dropdown-item,
.cid-uHoP5BCt4x .nav-link,
.cid-uHoP5BCt4x .brand-name {
  font-style: normal;
}
.cid-uHoP5BCt4x .dropdown-item:hover,
.cid-uHoP5BCt4x .nav-link:hover,
.cid-uHoP5BCt4x .brand-name:hover {
  color: #ff9800 !important;
}
.cid-uHoP5BCt4x .dropdown-menu {
  background-color: #ffffff;
}
.cid-uHoP5BCt4x .dropdown-item:active {
  background-color: #ffffff;
}
.cid-uHoP5BCt4x .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
  justify-content: center;
}
.cid-uHoP5BCt4x .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uHoP5BCt4x .nav-item {
  position: relative;
}
.cid-uHoP5BCt4x .nav-item span {
  padding-right: 0.4em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-uHoP5BCt4x .nav-item .nav-link {
  transition: all 0.3s ease-in-out 0ms;
}
.cid-uHoP5BCt4x .nav-item .nav-link:focus {
  outline: none;
}
@media (min-width: 991px) {
  .cid-uHoP5BCt4x .nav-link {
    line-height: 6.13;
  }
  .cid-uHoP5BCt4x .navbar-nav > li > a:before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 0;
    margin: auto;
    opacity: 0;
    border-top: 2px solid #279e64;
    transition: all 0.3s ease-in-out 0ms;
  }
  .cid-uHoP5BCt4x .navbar-nav > li:hover > a:before {
    opacity: 1;
    width: 100%;
  }
}
.cid-uHoP5BCt4x .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uHoP5BCt4x .content-text {
  margin-bottom: 0;
}
.cid-uHoP5BCt4x .navbar-nav {
  position: relative;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-uHoP5BCt4x .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #432480;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-uHoP5BCt4x .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-uHoP5BCt4x .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-uHoP5BCt4x .navbar-nav .nav-item .link {
  margin: 0 20px !important;
}
.cid-uHoP5BCt4x .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uHoP5BCt4x .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-uHoP5BCt4x .content-right-side {
  text-align: center;
}
.cid-uHoP5BCt4x .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-uHoP5BCt4x .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-uHoP5BCt4x .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
  color: #5580ff;
}
.cid-uHoP5BCt4x .widget-icon.mobi-mbri-phone {
  -webkit-animation: phone-icon-animate 1s ease-in-out infinite;
  animation: phone-icon-animate 1s ease-in-out infinite;
}
.cid-uHoP5BCt4x .info-widget {
  margin-left: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uHoP5BCt4x .info-widget:first-child {
  margin-left: 0;
}
.cid-uHoP5BCt4x .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-uHoP5BCt4x .widget-content .widget-title {
  margin-bottom: 3px;
  line-height: 1.7;
}
.cid-uHoP5BCt4x .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-uHoP5BCt4x .navbar .menu-content-top {
  display: flex;
  height: 90px;
  border-bottom: 1px solid #d9dade;
}
@media (min-width: 992px) {
  .cid-uHoP5BCt4x .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
  }
  .cid-uHoP5BCt4x .navbar {
    display: block;
    padding: 0;
  }
  .cid-uHoP5BCt4x .navbar .menu-logo {
    margin: auto;
    display: flex;
    align-items: center;
  }
  .cid-uHoP5BCt4x .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-uHoP5BCt4x .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-uHoP5BCt4x .navbar-toggler {
    display: none;
  }
  .cid-uHoP5BCt4x .navbar-collapse {
    justify-content: center;
  }
}
.cid-uHoP5BCt4x .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-uHoP5BCt4x .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
  position: relative;
  overflow: hidden;
  margin-right: 0;
}
.cid-uHoP5BCt4x .btn-sm {
  padding: 13px 29px;
}
.cid-uHoP5BCt4x .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-uHoP5BCt4x .btn::after {
  background-color: #57468b;
  content: "";
  height: 150px;
  left: -75px;
  position: absolute;
  top: -60px;
  transform: rotate(35deg);
  transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  width: 40px;
  opacity: 0;
  outline: none;
  text-decoration: none;
}
.cid-uHoP5BCt4x .btn:hover::after {
  left: 250px;
  opacity: 0.8;
}
.cid-uHoP5BCt4x .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-uHoP5BCt4x .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-uHoP5BCt4x .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  align-self: center;
}
.cid-uHoP5BCt4x .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uHoP5BCt4x .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding: 25px 0;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uHoP5BCt4x .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uHoP5BCt4x .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uHoP5BCt4x .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uHoP5BCt4x .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-uHoP5BCt4x .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uHoP5BCt4x .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uHoP5BCt4x .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uHoP5BCt4x .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHoP5BCt4x .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-uHoP5BCt4x .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  transition: font-size 0.25s;
}
.cid-uHoP5BCt4x .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uHoP5BCt4x .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uHoP5BCt4x .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uHoP5BCt4x button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  margin-right: 0;
}
.cid-uHoP5BCt4x button.navbar-toggler:focus {
  outline: none;
}
.cid-uHoP5BCt4x button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #282828;
}
.cid-uHoP5BCt4x button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uHoP5BCt4x button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHoP5BCt4x button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHoP5BCt4x button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uHoP5BCt4x nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHoP5BCt4x nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uHoP5BCt4x nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uHoP5BCt4x nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHoP5BCt4x .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHoP5BCt4x .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uHoP5BCt4x .collapsed .btn {
  display: flex;
}
.cid-uHoP5BCt4x .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uHoP5BCt4x .collapsed .navbar-collapse.collapsing,
.cid-uHoP5BCt4x .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uHoP5BCt4x .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uHoP5BCt4x .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uHoP5BCt4x .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uHoP5BCt4x .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uHoP5BCt4x .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uHoP5BCt4x .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}
.cid-uHoP5BCt4x .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uHoP5BCt4x .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uHoP5BCt4x .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uHoP5BCt4x .collapsed button.navbar-toggler {
  display: block;
}
.cid-uHoP5BCt4x .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-uHoP5BCt4x .collapsed .navbar-toggleable-sm {
  flex-direction: column;
}
.cid-uHoP5BCt4x .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-uHoP5BCt4x .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uHoP5BCt4x .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uHoP5BCt4x .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: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-uHoP5BCt4x .collapsed .menu-bottom {
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uHoP5BCt4x .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
    padding-left: 20px !important;
  }
  .cid-uHoP5BCt4x .dropdown-menu .dropdown-item {
    text-align: left;
    font-weight: 700;
  }
  .cid-uHoP5BCt4x .menu-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-uHoP5BCt4x .menu-bottom .menu-content-right {
    display: none;
  }
  .cid-uHoP5BCt4x .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
    opacity: 0;
    transition: all 0.3s ease-in;
    position: absolute;
    top: 100%;
    bottom: auto;
    left: 0px;
    right: 0px;
    z-index: 999;
  }
  .cid-uHoP5BCt4x .navbar-collapse .navbar-nav .nav-item {
    clear: both;
    text-align: left;
    padding: 10px 0;
  }
  .cid-uHoP5BCt4x .navbar-collapse.collapsing,
  .cid-uHoP5BCt4x .navbar-collapse.show {
    display: block !important;
  }
  .cid-uHoP5BCt4x .navbar-collapse.collapsing .navbar-nav,
  .cid-uHoP5BCt4x .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uHoP5BCt4x .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uHoP5BCt4x .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uHoP5BCt4x .navbar-collapse.collapsing .navbar-nav .nav-item .nav-link,
  .cid-uHoP5BCt4x .navbar-collapse.show .navbar-nav .nav-item .nav-link {
    font-weight: 700;
  }
  .cid-uHoP5BCt4x .navbar-collapse.collapsing .navbar-buttons,
  .cid-uHoP5BCt4x .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-uHoP5BCt4x .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uHoP5BCt4x .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uHoP5BCt4x img {
    height: 3.8rem !important;
  }
  .cid-uHoP5BCt4x .btn {
    display: flex;
  }
  .cid-uHoP5BCt4x button.navbar-toggler {
    display: block;
    align-self: center;
  }
  .cid-uHoP5BCt4x .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-uHoP5BCt4x .navbar-toggleable-sm {
    flex-direction: column;
  }
  .cid-uHoP5BCt4x .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-uHoP5BCt4x .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uHoP5BCt4x .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uHoP5BCt4x .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: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-uHoP5BCt4x .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-uHoP5BCt4x .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-uHoP5BCt4x .navbar-toggler {
  position: relative;
}
.cid-uHoP5BCt4x .dropdown-item.active,
.cid-uHoP5BCt4x .dropdown-item:active {
  color: initial;
}
.cid-uHoP5BCt4x .widget-title {
  color: #57468b;
}
.cid-uHoP5BCt4x .widget-text {
  color: #57468b;
}
.cid-uHoP5BCt4x .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
.cid-uHoP5BCt4x .icons-menu .mbr-iconfont {
  font-size: 1rem;
  color: #432480;
  display: inline-flex;
  background-color: #eaebee;
  border-radius: 100%;
  transition: all 0.3s ease-in;
}
.cid-uHoP5BCt4x .icons-menu .mbr-iconfont:before {
  padding: .75rem;
}
.cid-uHoP5BCt4x .icons-menu .mbr-iconfont:hover {
  color: #ffffff;
  background-color: #432480;
  -webkit-animation-name: animation-pulse;
  animation-name: animation-pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  opacity: .9;
}
.cid-uHoP5BCt4x .soc-item {
  margin: .5rem .3rem;
}
@media (max-width: 768px) {
  .cid-uHoP5BCt4x .menu-content-top .icons-menu {
    padding-left: 0;
  }
  .cid-uHoP5BCt4x .menu-content-top .icons-menu .soc-item .mbr-iconfont {
    font-size: 14px;
  }
  .cid-uHoP5BCt4x .menu-content-top .icons-menu .soc-item .mbr-iconfont::before {
    padding: 0.44rem;
  }
  .cid-uHoP5BCt4x .menu-content-top .right-wrap .info-widget {
    margin-left: 20px;
  }
  .cid-uHoP5BCt4x .menu-content-top .right-wrap .info-widget:first-child {
    margin-left: 0;
  }
  .cid-uHoP5BCt4x .menu-content-top .right-wrap .info-widget .widget-content {
    display: none;
  }
  .cid-uHoP5BCt4x .menu-content-top .right-wrap .info-widget .widget-icon {
    font-size: 25px;
    padding-right: 0;
  }
  .cid-uHoP5BCt4x .navbar-brand {
    margin-left: 0 !important;
  }
}
@media (max-width: 576px) {
  .cid-uHoP5BCt4x .menu-content-top,
  .cid-uHoP5BCt4x .menu-bottom {
    padding: 0 15px;
  }
  .cid-uHoP5BCt4x button.navbar-toggler {
    align-self: center;
  }
}
@-webkit-keyframes phone-icon-animate {
  0%,
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    transform: rotate(20deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@keyframes phone-icon-animate {
  0%,
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    transform: rotate(20deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@-webkit-keyframes animation-pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
@keyframes animation-pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
.cid-uHoP5BCt4x .widget-title,
.cid-uHoP5BCt4x .widget-icon {
  color: #ffffff;
}
.cid-uHoP5C389m {
  padding-top: 165px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-uHoP5C389m H1 {
  text-align: center;
  color: #ff9800;
}
.cid-uHoP5C389m .mbr-text,
.cid-uHoP5C389m .mbr-section-btn {
  text-align: center;
}
.cid-uHoP5CgQoG {
  background-color: #ffffff;
}
.cid-uHoP5CgQoG img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-uHoP5CgQoG H1 {
  color: #57468b;
}
.cid-uHoP5CgQoG .mbr-text,
.cid-uHoP5CgQoG .mbr-section-btn {
  color: #716c80;
}
.cid-uHoP5CgQoG H3 {
  color: #716c80;
}
.cid-uHoP5CgQoG .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-uHoP5CgQoG .btn-info-outline {
  border: none;
  color: #57468b !important;
  padding: 0;
  margin: 0 0.25rem!important;
}
.cid-uHoP5CgQoG .btn-info-outline span {
  order: 2;
  font-size: 1.1rem;
  padding-top: 3px;
  transition: padding 0.3s!important;
}
.cid-uHoP5CgQoG .btn-info-outline:hover span {
  padding-left: 10px;
}
.cid-uHoP5CgQoG .btn-info-outline:hover {
  background-color: transparent!important;
  color: #432480 !important;
  box-shadow: none!important;
}
.cid-uHoP5CgQoG .btn-info-outline:active,
.cid-uHoP5CgQoG .btn-info-outline:focus {
  background-color: transparent!important;
  box-shadow: none!important;
}
.cid-uHoP5CgQoG DIV {
  color: #57468b;
}
.cid-uHoP5CgQoG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHoP5CgQoG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHoP5CgQoG .mbr-text,
.cid-uHoP5CgQoG .media-content,
.cid-uHoP5CgQoG .mbr-section-btn {
  color: #363636;
}
.cid-uHoP5Cx8oI {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/bg1-1-2000x1335.jpeg");
}
.cid-uHoP5Cx8oI h5,
.cid-uHoP5Cx8oI h4,
.cid-uHoP5Cx8oI p {
  margin-bottom: 0;
}
.cid-uHoP5Cx8oI p {
  color: #767676;
}
.cid-uHoP5Cx8oI .card-img {
  padding: 0;
}
.cid-uHoP5Cx8oI .mbr-section-btn {
  margin: 0;
  margin-top: 1.2rem;
  border-top: 1px solid #cccccc;
}
.cid-uHoP5Cx8oI .mbr-section-btn .btn {
  margin-top: 1.2rem !important;
}
.cid-uHoP5Cx8oI .card-wrapper {
  transition: all 0.3s;
  background-color: #ffffff;
}
.cid-uHoP5Cx8oI .card-wrapper:hover {
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-uHoP5Cx8oI .card-box {
  padding: 2rem;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uHoP5Cx8oI .card-box {
    padding: 2rem 0 0;
  }
  .cid-uHoP5Cx8oI .card-wrapper {
    display: block !important;
  }
}
.cid-uHoP5Cx8oI .card-wrapper {
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
}
.cid-uHoP5Cx8oI .card-title,
.cid-uHoP5Cx8oI .main-title {
  color: #57468b;
}
.cid-uHoP5Cx8oI .card-title {
  color: #432480;
}
.cid-uHoP5CYkWJ {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/04-2000x1335.jpeg");
}
.cid-uHoP5CYkWJ H1 {
  color: #432480;
}
.cid-uHoP5CYkWJ .mbr-text,
.cid-uHoP5CYkWJ .mbr-section-btn {
  color: #716c80;
}
.cid-uHoP5CYkWJ img {
  width: 80%;
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
@media (max-width: 992px) {
  .cid-uHoP5CYkWJ img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.cid-uHoP5Dcp2Z {
  padding-top: 225px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/03-1-2000x1335.jpeg");
}
.cid-uHoP5Dcp2Z H1 {
  color: #432480;
  text-align: left;
}
.cid-uHoP5Dcp2Z .mbr-text,
.cid-uHoP5Dcp2Z .mbr-section-btn {
  color: #363636;
  text-align: left;
}
.cid-uHoP5Dqzwz {
  padding-top: 90px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uHoP5Dqzwz .mbr-text {
  color: #716c80;
}
.cid-uHoP5Dqzwz .card-wrapper {
  display: flex;
  flex-direction: row;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  transition: all 0.3s;
  padding: 1rem 1rem !important;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-uHoP5Dqzwz .card-wrapper:hover {
  transform: translateY(-1rem);
}
.cid-uHoP5Dqzwz .card-wrapper:hover .ico2 {
  color: #432480 !important;
}
.cid-uHoP5Dqzwz .ico2 {
  color: #57468b !important;
  transition: all 0.6s;
}
.cid-uHoP5Dqzwz .text-info:hover {
  color: inherit!important;
}
.cid-uHoP5Dqzwz .card-box {
  padding: 0rem 1rem;
}
.cid-uHoP5Dqzwz .ico1 {
  font-size: 3rem !important;
}
.cid-uHoP5Dqzwz h3,
.cid-uHoP5Dqzwz h4 {
  padding: 0;
  margin: 0;
}
.cid-uHoP5Dqzwz .card-title,
.cid-uHoP5Dqzwz .card-img {
  color: #57468b;
}
.cid-uHoP5Dqzwz .card-title {
  color: #232323;
}
.cid-uHoP5DMizc {
  padding-top: 180px;
  padding-bottom: 75px;
  background-color: #432480;
  position: relative;
  overflow: hidden;
}
.cid-uHoP5DMizc .container {
  max-width: 1400px;
}
.cid-uHoP5DMizc .card-img2 span {
  padding-top: 6px;
}
.cid-uHoP5DMizc .soc-item a {
  padding-top: 5px;
}
.cid-uHoP5DMizc .btn {
  padding: 0.4rem 0.6rem!important;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-uHoP5DMizc .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-uHoP5DMizc .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-uHoP5DMizc .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uHoP5DMizc svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-uHoP5DMizc #e2_shape {
  fill: #ffffff !important;
}
.cid-uHoP5DMizc .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-uHoP5DMizc .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-uHoP5DMizc .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #ff9800;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uHoP5DMizc .card-img {
  width: auto;
}
.cid-uHoP5DMizc .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-uHoP5DMizc .soc-item span {
  font-size: 1.4rem;
}
.cid-uHoP5DMizc .soc-item:hover span {
  color: #432480 !important;
}
.cid-uHoP5DMizc .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-uHoP5DMizc .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-uHoP5DMizc .media-wrap {
  margin-bottom: 1rem;
}
.cid-uHoP5DMizc .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-uHoP5DMizc img {
  height: 4rem;
}
@media (max-width: 576px) {
  .cid-uHoP5DMizc .item {
    justify-content: center;
  }
  .cid-uHoP5DMizc .quote::after {
    left: 60px;
  }
}
.cid-uHoP5DMizc .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-uHoP5DMizc .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uHoP5DMizc .text1 {
  color: #ffffff;
}
.cid-uHoP5DMizc .item-title {
  color: #ffffff;
}
.cid-uHoP5DMizc H5 {
  color: #ff9800;
}
.cid-uHoP5DMizc .theme {
  color: #ffffff;
}
.cid-uHoP5DMizc .copyright > p {
  color: #ff3366;
}
.cid-uHoP5DMizc .text2 {
  color: #ffffff;
}
.cid-uHoP5Eik3X {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uHoP5Eik3X .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uI0fhckuoN .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-uI0fhckuoN .navbar-fixed-top {
  padding-top: 0;
}
.cid-uI0fhckuoN .navbar-collapse {
  flex-basis: auto;
  transition: all 0.3s ease-in;
}
.cid-uI0fhckuoN .navbar-collapse.show {
  position: absolute;
  opacity: 1;
  visibility: visible;
  top: 100%;
  z-index: 999;
  background-color: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 15px 20px;
  bottom: auto;
  left: 0px;
  right: 0px;
}
.cid-uI0fhckuoN .navbar-collapse.show .navbar-nav .nav-item {
  text-align: left;
  padding: 10px 0;
}
.cid-uI0fhckuoN .navbar-buttons {
  flex-wrap: wrap;
}
.cid-uI0fhckuoN .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-uI0fhckuoN .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-uI0fhckuoN .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  padding-right: 2rem;
}
.cid-uI0fhckuoN .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uI0fhckuoN .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uI0fhckuoN .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uI0fhckuoN .menu-content-top {
  background: #432480;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  width: 100%;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-uI0fhckuoN .menu-content-top .right-wrap .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-uI0fhckuoN .dropdown-item {
  font-weight: 400;
  margin: 0 !important;
  padding: 0 40px !important;
  line-height: 2.6;
}
.cid-uI0fhckuoN .dropdown-item,
.cid-uI0fhckuoN .nav-link,
.cid-uI0fhckuoN .brand-name {
  font-style: normal;
}
.cid-uI0fhckuoN .dropdown-item:hover,
.cid-uI0fhckuoN .nav-link:hover,
.cid-uI0fhckuoN .brand-name:hover {
  color: #ff9800 !important;
}
.cid-uI0fhckuoN .dropdown-menu {
  background-color: #ffffff;
}
.cid-uI0fhckuoN .dropdown-item:active {
  background-color: #ffffff;
}
.cid-uI0fhckuoN .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
  justify-content: center;
}
.cid-uI0fhckuoN .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uI0fhckuoN .nav-item {
  position: relative;
}
.cid-uI0fhckuoN .nav-item span {
  padding-right: 0.4em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-uI0fhckuoN .nav-item .nav-link {
  transition: all 0.3s ease-in-out 0ms;
}
.cid-uI0fhckuoN .nav-item .nav-link:focus {
  outline: none;
}
@media (min-width: 991px) {
  .cid-uI0fhckuoN .nav-link {
    line-height: 6.13;
  }
  .cid-uI0fhckuoN .navbar-nav > li > a:before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 0;
    margin: auto;
    opacity: 0;
    border-top: 2px solid #279e64;
    transition: all 0.3s ease-in-out 0ms;
  }
  .cid-uI0fhckuoN .navbar-nav > li:hover > a:before {
    opacity: 1;
    width: 100%;
  }
}
.cid-uI0fhckuoN .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uI0fhckuoN .content-text {
  margin-bottom: 0;
}
.cid-uI0fhckuoN .navbar-nav {
  position: relative;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-uI0fhckuoN .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #432480;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-uI0fhckuoN .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-uI0fhckuoN .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-uI0fhckuoN .navbar-nav .nav-item .link {
  margin: 0 20px !important;
}
.cid-uI0fhckuoN .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uI0fhckuoN .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-uI0fhckuoN .content-right-side {
  text-align: center;
}
.cid-uI0fhckuoN .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-uI0fhckuoN .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-uI0fhckuoN .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
  color: #5580ff;
}
.cid-uI0fhckuoN .widget-icon.mobi-mbri-phone {
  -webkit-animation: phone-icon-animate 1s ease-in-out infinite;
  animation: phone-icon-animate 1s ease-in-out infinite;
}
.cid-uI0fhckuoN .info-widget {
  margin-left: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uI0fhckuoN .info-widget:first-child {
  margin-left: 0;
}
.cid-uI0fhckuoN .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-uI0fhckuoN .widget-content .widget-title {
  margin-bottom: 3px;
  line-height: 1.7;
}
.cid-uI0fhckuoN .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-uI0fhckuoN .navbar .menu-content-top {
  display: flex;
  height: 90px;
  border-bottom: 1px solid #d9dade;
}
@media (min-width: 992px) {
  .cid-uI0fhckuoN .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
  }
  .cid-uI0fhckuoN .navbar {
    display: block;
    padding: 0;
  }
  .cid-uI0fhckuoN .navbar .menu-logo {
    margin: auto;
    display: flex;
    align-items: center;
  }
  .cid-uI0fhckuoN .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-uI0fhckuoN .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-uI0fhckuoN .navbar-toggler {
    display: none;
  }
  .cid-uI0fhckuoN .navbar-collapse {
    justify-content: center;
  }
}
.cid-uI0fhckuoN .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-uI0fhckuoN .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
  position: relative;
  overflow: hidden;
  margin-right: 0;
}
.cid-uI0fhckuoN .btn-sm {
  padding: 13px 29px;
}
.cid-uI0fhckuoN .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-uI0fhckuoN .btn::after {
  background-color: #57468b;
  content: "";
  height: 150px;
  left: -75px;
  position: absolute;
  top: -60px;
  transform: rotate(35deg);
  transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  width: 40px;
  opacity: 0;
  outline: none;
  text-decoration: none;
}
.cid-uI0fhckuoN .btn:hover::after {
  left: 250px;
  opacity: 0.8;
}
.cid-uI0fhckuoN .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-uI0fhckuoN .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-uI0fhckuoN .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  align-self: center;
}
.cid-uI0fhckuoN .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uI0fhckuoN .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding: 25px 0;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uI0fhckuoN .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uI0fhckuoN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uI0fhckuoN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uI0fhckuoN .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-uI0fhckuoN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uI0fhckuoN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uI0fhckuoN .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uI0fhckuoN .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uI0fhckuoN .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-uI0fhckuoN .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  transition: font-size 0.25s;
}
.cid-uI0fhckuoN .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uI0fhckuoN .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uI0fhckuoN .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uI0fhckuoN button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  margin-right: 0;
}
.cid-uI0fhckuoN button.navbar-toggler:focus {
  outline: none;
}
.cid-uI0fhckuoN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #282828;
}
.cid-uI0fhckuoN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uI0fhckuoN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uI0fhckuoN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uI0fhckuoN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uI0fhckuoN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uI0fhckuoN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uI0fhckuoN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uI0fhckuoN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uI0fhckuoN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uI0fhckuoN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uI0fhckuoN .collapsed .btn {
  display: flex;
}
.cid-uI0fhckuoN .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uI0fhckuoN .collapsed .navbar-collapse.collapsing,
.cid-uI0fhckuoN .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uI0fhckuoN .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uI0fhckuoN .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uI0fhckuoN .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uI0fhckuoN .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uI0fhckuoN .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uI0fhckuoN .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}
.cid-uI0fhckuoN .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uI0fhckuoN .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uI0fhckuoN .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uI0fhckuoN .collapsed button.navbar-toggler {
  display: block;
}
.cid-uI0fhckuoN .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-uI0fhckuoN .collapsed .navbar-toggleable-sm {
  flex-direction: column;
}
.cid-uI0fhckuoN .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-uI0fhckuoN .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uI0fhckuoN .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uI0fhckuoN .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: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-uI0fhckuoN .collapsed .menu-bottom {
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uI0fhckuoN .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
    padding-left: 20px !important;
  }
  .cid-uI0fhckuoN .dropdown-menu .dropdown-item {
    text-align: left;
    font-weight: 700;
  }
  .cid-uI0fhckuoN .menu-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-uI0fhckuoN .menu-bottom .menu-content-right {
    display: none;
  }
  .cid-uI0fhckuoN .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
    opacity: 0;
    transition: all 0.3s ease-in;
    position: absolute;
    top: 100%;
    bottom: auto;
    left: 0px;
    right: 0px;
    z-index: 999;
  }
  .cid-uI0fhckuoN .navbar-collapse .navbar-nav .nav-item {
    clear: both;
    text-align: left;
    padding: 10px 0;
  }
  .cid-uI0fhckuoN .navbar-collapse.collapsing,
  .cid-uI0fhckuoN .navbar-collapse.show {
    display: block !important;
  }
  .cid-uI0fhckuoN .navbar-collapse.collapsing .navbar-nav,
  .cid-uI0fhckuoN .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uI0fhckuoN .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uI0fhckuoN .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uI0fhckuoN .navbar-collapse.collapsing .navbar-nav .nav-item .nav-link,
  .cid-uI0fhckuoN .navbar-collapse.show .navbar-nav .nav-item .nav-link {
    font-weight: 700;
  }
  .cid-uI0fhckuoN .navbar-collapse.collapsing .navbar-buttons,
  .cid-uI0fhckuoN .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-uI0fhckuoN .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uI0fhckuoN .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uI0fhckuoN img {
    height: 3.8rem !important;
  }
  .cid-uI0fhckuoN .btn {
    display: flex;
  }
  .cid-uI0fhckuoN button.navbar-toggler {
    display: block;
    align-self: center;
  }
  .cid-uI0fhckuoN .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-uI0fhckuoN .navbar-toggleable-sm {
    flex-direction: column;
  }
  .cid-uI0fhckuoN .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-uI0fhckuoN .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uI0fhckuoN .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uI0fhckuoN .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: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-uI0fhckuoN .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-uI0fhckuoN .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-uI0fhckuoN .navbar-toggler {
  position: relative;
}
.cid-uI0fhckuoN .dropdown-item.active,
.cid-uI0fhckuoN .dropdown-item:active {
  color: initial;
}
.cid-uI0fhckuoN .widget-title {
  color: #57468b;
}
.cid-uI0fhckuoN .widget-text {
  color: #57468b;
}
.cid-uI0fhckuoN .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
.cid-uI0fhckuoN .icons-menu .mbr-iconfont {
  font-size: 1rem;
  color: #432480;
  display: inline-flex;
  background-color: #eaebee;
  border-radius: 100%;
  transition: all 0.3s ease-in;
}
.cid-uI0fhckuoN .icons-menu .mbr-iconfont:before {
  padding: .75rem;
}
.cid-uI0fhckuoN .icons-menu .mbr-iconfont:hover {
  color: #ffffff;
  background-color: #432480;
  -webkit-animation-name: animation-pulse;
  animation-name: animation-pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  opacity: .9;
}
.cid-uI0fhckuoN .soc-item {
  margin: .5rem .3rem;
}
@media (max-width: 768px) {
  .cid-uI0fhckuoN .menu-content-top .icons-menu {
    padding-left: 0;
  }
  .cid-uI0fhckuoN .menu-content-top .icons-menu .soc-item .mbr-iconfont {
    font-size: 14px;
  }
  .cid-uI0fhckuoN .menu-content-top .icons-menu .soc-item .mbr-iconfont::before {
    padding: 0.44rem;
  }
  .cid-uI0fhckuoN .menu-content-top .right-wrap .info-widget {
    margin-left: 20px;
  }
  .cid-uI0fhckuoN .menu-content-top .right-wrap .info-widget:first-child {
    margin-left: 0;
  }
  .cid-uI0fhckuoN .menu-content-top .right-wrap .info-widget .widget-content {
    display: none;
  }
  .cid-uI0fhckuoN .menu-content-top .right-wrap .info-widget .widget-icon {
    font-size: 25px;
    padding-right: 0;
  }
  .cid-uI0fhckuoN .navbar-brand {
    margin-left: 0 !important;
  }
}
@media (max-width: 576px) {
  .cid-uI0fhckuoN .menu-content-top,
  .cid-uI0fhckuoN .menu-bottom {
    padding: 0 15px;
  }
  .cid-uI0fhckuoN button.navbar-toggler {
    align-self: center;
  }
}
@-webkit-keyframes phone-icon-animate {
  0%,
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    transform: rotate(20deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@keyframes phone-icon-animate {
  0%,
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    transform: rotate(20deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@-webkit-keyframes animation-pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
@keyframes animation-pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
.cid-uI0fhckuoN .widget-title,
.cid-uI0fhckuoN .widget-icon {
  color: #ffffff;
}
.cid-uI0fhcIF5T {
  padding-top: 165px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-uI0fhcIF5T H1 {
  text-align: center;
  color: #ff9800;
}
.cid-uI0fhcIF5T .mbr-text,
.cid-uI0fhcIF5T .mbr-section-btn {
  text-align: center;
}
.cid-uI0fhcXhoB {
  background-color: #ffffff;
}
.cid-uI0fhcXhoB img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-uI0fhcXhoB H1 {
  color: #57468b;
}
.cid-uI0fhcXhoB .mbr-text,
.cid-uI0fhcXhoB .mbr-section-btn {
  color: #716c80;
}
.cid-uI0fhcXhoB H3 {
  color: #716c80;
}
.cid-uI0fhcXhoB .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-uI0fhcXhoB .btn-info-outline {
  border: none;
  color: #57468b !important;
  padding: 0;
  margin: 0 0.25rem!important;
}
.cid-uI0fhcXhoB .btn-info-outline span {
  order: 2;
  font-size: 1.1rem;
  padding-top: 3px;
  transition: padding 0.3s!important;
}
.cid-uI0fhcXhoB .btn-info-outline:hover span {
  padding-left: 10px;
}
.cid-uI0fhcXhoB .btn-info-outline:hover {
  background-color: transparent!important;
  color: #432480 !important;
  box-shadow: none!important;
}
.cid-uI0fhcXhoB .btn-info-outline:active,
.cid-uI0fhcXhoB .btn-info-outline:focus {
  background-color: transparent!important;
  box-shadow: none!important;
}
.cid-uI0fhcXhoB DIV {
  color: #57468b;
}
.cid-uI0fhcXhoB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uI0fhcXhoB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uI0fhcXhoB .mbr-text,
.cid-uI0fhcXhoB .media-content,
.cid-uI0fhcXhoB .mbr-section-btn {
  color: #363636;
}
.cid-uI0fhdd5GV {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/bg1-1-2000x1335.jpeg");
}
.cid-uI0fhdd5GV h5,
.cid-uI0fhdd5GV h4,
.cid-uI0fhdd5GV p {
  margin-bottom: 0;
}
.cid-uI0fhdd5GV p {
  color: #767676;
}
.cid-uI0fhdd5GV .card-img {
  padding: 0;
}
.cid-uI0fhdd5GV .mbr-section-btn {
  margin: 0;
  margin-top: 1.2rem;
  border-top: 1px solid #cccccc;
}
.cid-uI0fhdd5GV .mbr-section-btn .btn {
  margin-top: 1.2rem !important;
}
.cid-uI0fhdd5GV .card-wrapper {
  transition: all 0.3s;
  background-color: #ffffff;
}
.cid-uI0fhdd5GV .card-wrapper:hover {
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-uI0fhdd5GV .card-box {
  padding: 2rem;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uI0fhdd5GV .card-box {
    padding: 2rem 0 0;
  }
  .cid-uI0fhdd5GV .card-wrapper {
    display: block !important;
  }
}
.cid-uI0fhdd5GV .card-wrapper {
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
}
.cid-uI0fhdd5GV .card-title,
.cid-uI0fhdd5GV .main-title {
  color: #57468b;
}
.cid-uI0fhdd5GV .card-title {
  color: #432480;
}
.cid-uI0fhdCc3j {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/04-2000x1335.jpeg");
}
.cid-uI0fhdCc3j H1 {
  color: #432480;
}
.cid-uI0fhdCc3j .mbr-text,
.cid-uI0fhdCc3j .mbr-section-btn {
  color: #716c80;
}
.cid-uI0fhdCc3j img {
  width: 80%;
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
@media (max-width: 992px) {
  .cid-uI0fhdCc3j img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.cid-uI0fhdP2E7 {
  padding-top: 225px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/03-1-2000x1335.jpeg");
}
.cid-uI0fhdP2E7 H1 {
  color: #432480;
  text-align: left;
}
.cid-uI0fhdP2E7 .mbr-text,
.cid-uI0fhdP2E7 .mbr-section-btn {
  color: #363636;
  text-align: left;
}
.cid-uI0fhe2jbw {
  padding-top: 90px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uI0fhe2jbw .mbr-text {
  color: #716c80;
}
.cid-uI0fhe2jbw .card-wrapper {
  display: flex;
  flex-direction: row;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  transition: all 0.3s;
  padding: 1rem 1rem !important;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-uI0fhe2jbw .card-wrapper:hover {
  transform: translateY(-1rem);
}
.cid-uI0fhe2jbw .card-wrapper:hover .ico2 {
  color: #432480 !important;
}
.cid-uI0fhe2jbw .ico2 {
  color: #57468b !important;
  transition: all 0.6s;
}
.cid-uI0fhe2jbw .text-info:hover {
  color: inherit!important;
}
.cid-uI0fhe2jbw .card-box {
  padding: 0rem 1rem;
}
.cid-uI0fhe2jbw .ico1 {
  font-size: 3rem !important;
}
.cid-uI0fhe2jbw h3,
.cid-uI0fhe2jbw h4 {
  padding: 0;
  margin: 0;
}
.cid-uI0fhe2jbw .card-title,
.cid-uI0fhe2jbw .card-img {
  color: #57468b;
}
.cid-uI0fhe2jbw .card-title {
  color: #232323;
}
.cid-uI0fhepYzx {
  padding-top: 180px;
  padding-bottom: 75px;
  background-color: #432480;
  position: relative;
  overflow: hidden;
}
.cid-uI0fhepYzx .container {
  max-width: 1400px;
}
.cid-uI0fhepYzx .card-img2 span {
  padding-top: 6px;
}
.cid-uI0fhepYzx .soc-item a {
  padding-top: 5px;
}
.cid-uI0fhepYzx .btn {
  padding: 0.4rem 0.6rem!important;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-uI0fhepYzx .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-uI0fhepYzx .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-uI0fhepYzx .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uI0fhepYzx svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-uI0fhepYzx #e2_shape {
  fill: #ffffff !important;
}
.cid-uI0fhepYzx .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-uI0fhepYzx .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-uI0fhepYzx .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #ff9800;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uI0fhepYzx .card-img {
  width: auto;
}
.cid-uI0fhepYzx .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-uI0fhepYzx .soc-item span {
  font-size: 1.4rem;
}
.cid-uI0fhepYzx .soc-item:hover span {
  color: #432480 !important;
}
.cid-uI0fhepYzx .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-uI0fhepYzx .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-uI0fhepYzx .media-wrap {
  margin-bottom: 1rem;
}
.cid-uI0fhepYzx .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-uI0fhepYzx img {
  height: 4rem;
}
@media (max-width: 576px) {
  .cid-uI0fhepYzx .item {
    justify-content: center;
  }
  .cid-uI0fhepYzx .quote::after {
    left: 60px;
  }
}
.cid-uI0fhepYzx .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-uI0fhepYzx .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uI0fhepYzx .text1 {
  color: #ffffff;
}
.cid-uI0fhepYzx .item-title {
  color: #ffffff;
}
.cid-uI0fhepYzx H5 {
  color: #ff9800;
}
.cid-uI0fhepYzx .theme {
  color: #ffffff;
}
.cid-uI0fhepYzx .copyright > p {
  color: #ff3366;
}
.cid-uI0fhepYzx .text2 {
  color: #ffffff;
}
.cid-uI0fheQtKg {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uI0fheQtKg .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-v2TY48VAM9 .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-v2TY48VAM9 .navbar-fixed-top {
  padding-top: 0;
}
.cid-v2TY48VAM9 .navbar-collapse {
  flex-basis: auto;
  transition: all 0.3s ease-in;
}
.cid-v2TY48VAM9 .navbar-collapse.show {
  position: absolute;
  opacity: 1;
  visibility: visible;
  top: 100%;
  z-index: 999;
  background-color: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 15px 20px;
  bottom: auto;
  left: 0px;
  right: 0px;
}
.cid-v2TY48VAM9 .navbar-collapse.show .navbar-nav .nav-item {
  text-align: left;
  padding: 10px 0;
}
.cid-v2TY48VAM9 .navbar-buttons {
  flex-wrap: wrap;
}
.cid-v2TY48VAM9 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v2TY48VAM9 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-v2TY48VAM9 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  padding-right: 2rem;
}
.cid-v2TY48VAM9 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v2TY48VAM9 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v2TY48VAM9 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v2TY48VAM9 .menu-content-top {
  background: #432480;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  width: 100%;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-v2TY48VAM9 .menu-content-top .right-wrap .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-v2TY48VAM9 .dropdown-item {
  font-weight: 400;
  margin: 0 !important;
  padding: 0 40px !important;
  line-height: 2.6;
}
.cid-v2TY48VAM9 .dropdown-item,
.cid-v2TY48VAM9 .nav-link,
.cid-v2TY48VAM9 .brand-name {
  font-style: normal;
}
.cid-v2TY48VAM9 .dropdown-item:hover,
.cid-v2TY48VAM9 .nav-link:hover,
.cid-v2TY48VAM9 .brand-name:hover {
  color: #ff9800 !important;
}
.cid-v2TY48VAM9 .dropdown-menu {
  background-color: #ffffff;
}
.cid-v2TY48VAM9 .dropdown-item:active {
  background-color: #ffffff;
}
.cid-v2TY48VAM9 .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
  justify-content: center;
}
.cid-v2TY48VAM9 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-v2TY48VAM9 .nav-item {
  position: relative;
}
.cid-v2TY48VAM9 .nav-item span {
  padding-right: 0.4em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-v2TY48VAM9 .nav-item .nav-link {
  transition: all 0.3s ease-in-out 0ms;
}
.cid-v2TY48VAM9 .nav-item .nav-link:focus {
  outline: none;
}
@media (min-width: 991px) {
  .cid-v2TY48VAM9 .nav-link {
    line-height: 6.13;
  }
  .cid-v2TY48VAM9 .navbar-nav > li > a:before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 0;
    margin: auto;
    opacity: 0;
    border-top: 2px solid #279e64;
    transition: all 0.3s ease-in-out 0ms;
  }
  .cid-v2TY48VAM9 .navbar-nav > li:hover > a:before {
    opacity: 1;
    width: 100%;
  }
}
.cid-v2TY48VAM9 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v2TY48VAM9 .content-text {
  margin-bottom: 0;
}
.cid-v2TY48VAM9 .navbar-nav {
  position: relative;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-v2TY48VAM9 .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #432480;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-v2TY48VAM9 .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-v2TY48VAM9 .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-v2TY48VAM9 .navbar-nav .nav-item .link {
  margin: 0 20px !important;
}
.cid-v2TY48VAM9 .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v2TY48VAM9 .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-v2TY48VAM9 .content-right-side {
  text-align: center;
}
.cid-v2TY48VAM9 .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-v2TY48VAM9 .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-v2TY48VAM9 .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
  color: #5580ff;
}
.cid-v2TY48VAM9 .widget-icon.mobi-mbri-phone {
  -webkit-animation: phone-icon-animate 1s ease-in-out infinite;
  animation: phone-icon-animate 1s ease-in-out infinite;
}
.cid-v2TY48VAM9 .info-widget {
  margin-left: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v2TY48VAM9 .info-widget:first-child {
  margin-left: 0;
}
.cid-v2TY48VAM9 .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-v2TY48VAM9 .widget-content .widget-title {
  margin-bottom: 3px;
  line-height: 1.7;
}
.cid-v2TY48VAM9 .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-v2TY48VAM9 .navbar .menu-content-top {
  display: flex;
  height: 90px;
  border-bottom: 1px solid #d9dade;
}
@media (min-width: 992px) {
  .cid-v2TY48VAM9 .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
  }
  .cid-v2TY48VAM9 .navbar {
    display: block;
    padding: 0;
  }
  .cid-v2TY48VAM9 .navbar .menu-logo {
    margin: auto;
    display: flex;
    align-items: center;
  }
  .cid-v2TY48VAM9 .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-v2TY48VAM9 .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-v2TY48VAM9 .navbar-toggler {
    display: none;
  }
  .cid-v2TY48VAM9 .navbar-collapse {
    justify-content: center;
  }
}
.cid-v2TY48VAM9 .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-v2TY48VAM9 .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
  position: relative;
  overflow: hidden;
  margin-right: 0;
}
.cid-v2TY48VAM9 .btn-sm {
  padding: 13px 29px;
}
.cid-v2TY48VAM9 .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-v2TY48VAM9 .btn::after {
  background-color: #57468b;
  content: "";
  height: 150px;
  left: -75px;
  position: absolute;
  top: -60px;
  transform: rotate(35deg);
  transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  width: 40px;
  opacity: 0;
  outline: none;
  text-decoration: none;
}
.cid-v2TY48VAM9 .btn:hover::after {
  left: 250px;
  opacity: 0.8;
}
.cid-v2TY48VAM9 .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-v2TY48VAM9 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-v2TY48VAM9 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  align-self: center;
}
.cid-v2TY48VAM9 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v2TY48VAM9 .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding: 25px 0;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-v2TY48VAM9 .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-v2TY48VAM9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v2TY48VAM9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v2TY48VAM9 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-v2TY48VAM9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-v2TY48VAM9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v2TY48VAM9 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v2TY48VAM9 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v2TY48VAM9 .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-v2TY48VAM9 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  transition: font-size 0.25s;
}
.cid-v2TY48VAM9 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v2TY48VAM9 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v2TY48VAM9 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v2TY48VAM9 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  margin-right: 0;
}
.cid-v2TY48VAM9 button.navbar-toggler:focus {
  outline: none;
}
.cid-v2TY48VAM9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #282828;
}
.cid-v2TY48VAM9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v2TY48VAM9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2TY48VAM9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2TY48VAM9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v2TY48VAM9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2TY48VAM9 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v2TY48VAM9 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v2TY48VAM9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2TY48VAM9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v2TY48VAM9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v2TY48VAM9 .collapsed .btn {
  display: flex;
}
.cid-v2TY48VAM9 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v2TY48VAM9 .collapsed .navbar-collapse.collapsing,
.cid-v2TY48VAM9 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v2TY48VAM9 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v2TY48VAM9 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v2TY48VAM9 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v2TY48VAM9 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v2TY48VAM9 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v2TY48VAM9 .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}
.cid-v2TY48VAM9 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v2TY48VAM9 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-v2TY48VAM9 .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-v2TY48VAM9 .collapsed button.navbar-toggler {
  display: block;
}
.cid-v2TY48VAM9 .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-v2TY48VAM9 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
}
.cid-v2TY48VAM9 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-v2TY48VAM9 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v2TY48VAM9 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v2TY48VAM9 .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: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-v2TY48VAM9 .collapsed .menu-bottom {
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-v2TY48VAM9 .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
    padding-left: 20px !important;
  }
  .cid-v2TY48VAM9 .dropdown-menu .dropdown-item {
    text-align: left;
    font-weight: 700;
  }
  .cid-v2TY48VAM9 .menu-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-v2TY48VAM9 .menu-bottom .menu-content-right {
    display: none;
  }
  .cid-v2TY48VAM9 .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
    opacity: 0;
    transition: all 0.3s ease-in;
    position: absolute;
    top: 100%;
    bottom: auto;
    left: 0px;
    right: 0px;
    z-index: 999;
  }
  .cid-v2TY48VAM9 .navbar-collapse .navbar-nav .nav-item {
    clear: both;
    text-align: left;
    padding: 10px 0;
  }
  .cid-v2TY48VAM9 .navbar-collapse.collapsing,
  .cid-v2TY48VAM9 .navbar-collapse.show {
    display: block !important;
  }
  .cid-v2TY48VAM9 .navbar-collapse.collapsing .navbar-nav,
  .cid-v2TY48VAM9 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v2TY48VAM9 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v2TY48VAM9 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v2TY48VAM9 .navbar-collapse.collapsing .navbar-nav .nav-item .nav-link,
  .cid-v2TY48VAM9 .navbar-collapse.show .navbar-nav .nav-item .nav-link {
    font-weight: 700;
  }
  .cid-v2TY48VAM9 .navbar-collapse.collapsing .navbar-buttons,
  .cid-v2TY48VAM9 .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-v2TY48VAM9 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v2TY48VAM9 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v2TY48VAM9 img {
    height: 3.8rem !important;
  }
  .cid-v2TY48VAM9 .btn {
    display: flex;
  }
  .cid-v2TY48VAM9 button.navbar-toggler {
    display: block;
    align-self: center;
  }
  .cid-v2TY48VAM9 .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-v2TY48VAM9 .navbar-toggleable-sm {
    flex-direction: column;
  }
  .cid-v2TY48VAM9 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-v2TY48VAM9 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v2TY48VAM9 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v2TY48VAM9 .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: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-v2TY48VAM9 .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-v2TY48VAM9 .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-v2TY48VAM9 .navbar-toggler {
  position: relative;
}
.cid-v2TY48VAM9 .dropdown-item.active,
.cid-v2TY48VAM9 .dropdown-item:active {
  color: initial;
}
.cid-v2TY48VAM9 .widget-title {
  color: #57468b;
}
.cid-v2TY48VAM9 .widget-text {
  color: #57468b;
}
.cid-v2TY48VAM9 .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
.cid-v2TY48VAM9 .icons-menu .mbr-iconfont {
  font-size: 1rem;
  color: #432480;
  display: inline-flex;
  background-color: #eaebee;
  border-radius: 100%;
  transition: all 0.3s ease-in;
}
.cid-v2TY48VAM9 .icons-menu .mbr-iconfont:before {
  padding: .75rem;
}
.cid-v2TY48VAM9 .icons-menu .mbr-iconfont:hover {
  color: #ffffff;
  background-color: #432480;
  -webkit-animation-name: animation-pulse;
  animation-name: animation-pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  opacity: .9;
}
.cid-v2TY48VAM9 .soc-item {
  margin: .5rem .3rem;
}
@media (max-width: 768px) {
  .cid-v2TY48VAM9 .menu-content-top .icons-menu {
    padding-left: 0;
  }
  .cid-v2TY48VAM9 .menu-content-top .icons-menu .soc-item .mbr-iconfont {
    font-size: 14px;
  }
  .cid-v2TY48VAM9 .menu-content-top .icons-menu .soc-item .mbr-iconfont::before {
    padding: 0.44rem;
  }
  .cid-v2TY48VAM9 .menu-content-top .right-wrap .info-widget {
    margin-left: 20px;
  }
  .cid-v2TY48VAM9 .menu-content-top .right-wrap .info-widget:first-child {
    margin-left: 0;
  }
  .cid-v2TY48VAM9 .menu-content-top .right-wrap .info-widget .widget-content {
    display: none;
  }
  .cid-v2TY48VAM9 .menu-content-top .right-wrap .info-widget .widget-icon {
    font-size: 25px;
    padding-right: 0;
  }
  .cid-v2TY48VAM9 .navbar-brand {
    margin-left: 0 !important;
  }
}
@media (max-width: 576px) {
  .cid-v2TY48VAM9 .menu-content-top,
  .cid-v2TY48VAM9 .menu-bottom {
    padding: 0 15px;
  }
  .cid-v2TY48VAM9 button.navbar-toggler {
    align-self: center;
  }
}
@-webkit-keyframes phone-icon-animate {
  0%,
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    transform: rotate(20deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@keyframes phone-icon-animate {
  0%,
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    transform: rotate(20deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@-webkit-keyframes animation-pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
@keyframes animation-pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
.cid-v2TY48VAM9 .widget-title,
.cid-v2TY48VAM9 .widget-icon {
  color: #ffffff;
}
.cid-v2TY49oyeA {
  padding-top: 225px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/01.jpg-2000x1176.jpg");
}
.cid-v2TY49oyeA H1 {
  text-align: left;
  color: #ff9800;
}
.cid-v2TY49oyeA .mbr-text,
.cid-v2TY49oyeA .mbr-section-btn {
  text-align: left;
}
.cid-v2TZk6bbqu {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v2TZk6bbqu img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-v2TZk6bbqu H1 {
  color: #57468b;
}
.cid-v2TZk6bbqu .mbr-text,
.cid-v2TZk6bbqu .mbr-section-btn {
  color: #716c80;
}
.cid-v2TZk6bbqu H3 {
  color: #716c80;
}
.cid-v2TZk6bbqu .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-v2TZk6bbqu .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-v2TZk6bbqu .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-v2TZk6bbqu .link:hover {
  color: #432480 !important;
}
.cid-v2TZk6bbqu .link:hover .link-ico {
  color: #432480 !important;
  padding-left: 10px;
}
.cid-v2TZk6bbqu DIV {
  color: #57468b;
}
.cid-v2TZk6bbqu .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2TZk6bbqu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2TZk6bbqu .mbr-text,
.cid-v2TZk6bbqu .media-content {
  color: #545454;
}
.cid-v2TYvNt3qw {
  padding-top: 2rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-v2TYvNt3qw .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2TYvNt3qw .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-v2TYvNt3qw .container {
    padding: 0 30px;
  }
}
.cid-v2TYvNt3qw .row {
  justify-content: center;
}
.cid-v2TYvNt3qw .title-wrapper {
  margin-bottom: 140px;
}
.cid-v2TYvNt3qw .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-v2TYvNt3qw .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v2TYvNt3qw .card .card-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0 4px;
  padding: 45px 36px 66px;
  background-color: #ff9800;
  border-radius: 10px;
  overflow: visible;
}
@media (max-width: 992px) {
  .cid-v2TYvNt3qw .card .card-wrapper {
    margin: 0 0 50px;
    padding: 45px 22px 66px;
  }
}
.cid-v2TYvNt3qw .card .card-wrapper .best-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -3.4rem;
  left: 0;
  width: 100%;
  min-height: 54px;
  background-color: #ff6839;
  padding: 18px 8px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.cid-v2TYvNt3qw .card .card-wrapper .best-wrap .best-wrapper {
  width: 100%;
}
.cid-v2TYvNt3qw .card .card-wrapper .best-wrap .best-wrapper .mbr-best {
  margin-bottom: 0;
}
.cid-v2TYvNt3qw .card .card-wrapper .card-content .mbr-card-title {
  margin: 25px 0;
}
.cid-v2TYvNt3qw .card .card-wrapper .card-content .price-wrap .mbr-price {
  margin-bottom: 25px;
  position: relative;
  display: inline-flex;
}
.cid-v2TYvNt3qw .card .card-wrapper .card-content .price-wrap .mbr-price span {
  position: absolute;
  font-size: 50%;
  top: .4rem;
  left: -2rem;
}
.cid-v2TYvNt3qw .card .card-wrapper .card-content .mbr-desc {
  margin-bottom: 25px;
}
.cid-v2TYvNt3qw .card .card-wrapper .card-content .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v2TYvNt3qw .card .card-wrapper .card-content .list .item-wrap {
  line-height: 1.625;
  margin-bottom: 10px;
}
.cid-v2TYvNt3qw .card .card-wrapper .mbr-section-btn {
  margin-top: 18px;
}
.cid-v2TYvNt3qw .mbr-section-title {
  color: #002047;
  text-align: center;
}
.cid-v2TYvNt3qw .mbr-text {
  color: #93dce7;
  text-align: center;
}
.cid-v2TYvNt3qw .mbr-best {
  color: #ffffff;
  text-align: center;
}
.cid-v2TYvNt3qw .mbr-card-title {
  color: #000000;
}
.cid-v2TYvNt3qw .mbr-price,
.cid-v2TYvNt3qw .price-wrap {
  color: #002047;
  text-align: center;
}
.cid-v2TYvNt3qw .mbr-desc {
  color: #000000;
  text-align: center;
}
.cid-v2TYvNt3qw .list {
  color: #ffffff;
  text-align: center;
}
.cid-v2TYvNt3qw .mbr-card-title,
.cid-v2TYvNt3qw .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-v3uKL0VJ5H {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #ff9800;
}
.cid-v3uKL0VJ5H H1 {
  color: #ffffff;
}
.cid-v3uKL0VJ5H .mbr-text,
.cid-v3uKL0VJ5H .mbr-section-btn {
  color: #716c80;
}
.cid-v3uKL0VJ5H .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3uKL0VJ5H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3uLGPZoiw {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-v3uLGPZoiw H1 {
  color: #432480;
}
.cid-v3uLGPZoiw .mbr-text,
.cid-v3uLGPZoiw .mbr-section-btn {
  color: #363636;
}
.cid-v3uLKUcQHu {
  padding-top: 45px;
  padding-bottom: 75px;
  background-color: #f2f2f4;
}
.cid-v3uLKUcQHu .mbr-text {
  color: #767676;
}
.cid-v3uLKUcQHu img {
  width: 100%;
}
.cid-v3uLKUcQHu .card-img {
  margin-bottom: 0rem;
}
.cid-v3uLKUcQHu .card-wrapper {
  background: #ffffff;
  border-radius: 3px;
  overflow: hidden;
}
.cid-v3uLKUcQHu .card-box {
  padding: 2rem 1rem;
}
.cid-v3uLKUcQHu p {
  font-weight: 400;
}
.cid-v3uLKUcQHu .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-v3uLKUcQHu .card {
    margin-bottom: 2rem;
  }
}
.cid-v3uLKUcQHu .mbr-text,
.cid-v3uLKUcQHu .mbr-section-btn {
  text-align: center;
}
.cid-v3uLKUcQHu .card-title,
.cid-v3uLKUcQHu .card-img {
  text-align: center;
  color: #432480;
}
.cid-v2TY4akMIN {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v2TY4akMIN H1 {
  color: #363636;
}
.cid-v2TY4akMIN .mbr-text,
.cid-v2TY4akMIN .mbr-section-btn {
  color: #363636;
}
.cid-v2TY4aAmdY {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-v2TY4aAmdY H1 {
  color: #ff9800;
  text-align: center;
}
.cid-v2TY4aAmdY .mbr-text,
.cid-v2TY4aAmdY .mbr-section-btn {
  color: #716c80;
}
.cid-v2TY4aAmdY H3 {
  color: #716c80;
}
.cid-v2TY4aQBhi {
  padding-top: 105px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/87-2000x1335.jpg");
  background-size: cover;
}
.cid-v2TY4aQBhi .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-v2TY4aQBhi h4 {
  text-align: center;
}
.cid-v2TY4aQBhi p {
  text-align: center;
}
.cid-v2TY4aQBhi .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-v2TY4aQBhi .mbr-iconfont {
  transition: all 0.3s;
  color: #ff9800 !important;
  font-size: 3rem !important;
}
.cid-v2TY4aQBhi .card {
  transition: all 0.3s;
  padding: 2rem!important;
}
.cid-v2TY4aQBhi .card:hover .card-title {
  color: #f2f6ff !important;
  cursor: pointer;
}
.cid-v2TY4aQBhi .card-title {
  transition: color 0.3s;
}
.cid-v2TY4aQBhi .card-title,
.cid-v2TY4aQBhi .card-img {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-v2TY4aQBhi .card {
    padding: 2rem 0rem 0rem 0rem!important;
  }
}
.cid-v2TY4bo4el {
  padding-top: 105px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-v2TY4bo4el H1 {
  color: #363636;
}
.cid-v2TY4bo4el .mbr-text,
.cid-v2TY4bo4el .mbr-section-btn {
  color: #716c80;
}
.cid-v2TY4bo4el H3 {
  color: #716c80;
}
.cid-v2TY4bFPXE {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/bg2-2000x1335.jpeg");
}
.cid-v2TY4bFPXE h5,
.cid-v2TY4bFPXE h4,
.cid-v2TY4bFPXE p {
  margin-bottom: 0;
}
.cid-v2TY4bFPXE p {
  color: #767676;
}
.cid-v2TY4bFPXE .card-img {
  padding: 0;
}
.cid-v2TY4bFPXE .mbr-section-btn {
  margin: 0;
  margin-top: 1.2rem;
  border-top: 1px solid #cccccc;
}
.cid-v2TY4bFPXE .mbr-section-btn .btn {
  margin-top: 1.2rem !important;
}
.cid-v2TY4bFPXE .card-wrapper {
  transition: all 0.3s;
  background-color: #ffffff;
}
.cid-v2TY4bFPXE .card-wrapper:hover {
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-v2TY4bFPXE .card-box {
  padding: 2rem;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-v2TY4bFPXE .card-box {
    padding: 2rem 0 0;
  }
  .cid-v2TY4bFPXE .card-wrapper {
    display: block !important;
  }
}
.cid-v2TY4bFPXE .card-wrapper {
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
}
.cid-v2TY4bFPXE .card-title,
.cid-v2TY4bFPXE .main-title {
  color: #57468b;
}
.cid-v2TY4bFPXE .card-title {
  color: #363636;
}
.cid-v2TY4c9Rqr {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/04-2000x1335.jpeg");
}
.cid-v2TY4c9Rqr H1 {
  color: #363636;
}
.cid-v2TY4c9Rqr .mbr-text,
.cid-v2TY4c9Rqr .mbr-section-btn {
  color: #716c80;
}
.cid-v2TY4c9Rqr img {
  width: 80%;
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
@media (max-width: 992px) {
  .cid-v2TY4c9Rqr img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.cid-v2TY4csxhQ {
  padding-top: 225px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/03-1-2000x1335.jpeg");
}
.cid-v2TY4csxhQ H1 {
  color: #432480;
  text-align: left;
}
.cid-v2TY4csxhQ .mbr-text,
.cid-v2TY4csxhQ .mbr-section-btn {
  color: #363636;
  text-align: left;
}
.cid-v2TY4cKIXs {
  padding-top: 120px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v2TY4cKIXs .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v2TY4cKIXs .btn {
  font-size: 16px;
  padding: 0.5rem 2rem;
}
.cid-v2TY4cKIXs .btn-primary-outline {
  border: none;
  color: gray;
}
.cid-v2TY4cKIXs .btn-primary-outline:active {
  color: gray;
}
.cid-v2TY4cKIXs .btn-primary-outline:hover {
  color: white;
}
.cid-v2TY4cKIXs .mbr-gallery-title:before {
  border-radius: 0px 0px 10px 10px;
}
.cid-v2TY4cKIXs div {
  overflow: hidden;
}
.cid-v2TY4cKIXs .btn-primary-outline.active {
  color: white;
}
.cid-v2TY4cKIXs .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v2TY4cKIXs .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v2TY4cKIXs .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v2TY4cKIXs .mbr-gallery-item {
  overflow: hidden;
}
.cid-v2TY4cKIXs .mbr-gallery-item img {
  transition: all 0.3s;
  border-radius: 10px;
}
.cid-v2TY4cKIXs .mbr-gallery-filter {
  padding-top: 20px;
  padding-bottom: 20px;
}
.cid-v2TY4cKIXs .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-v2TY4cKIXs .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v2TY4cKIXs .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-v2TY4cKIXs .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v2TY4cKIXs .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-v2TY4dkPb5 {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-v2TY4dkPb5 .mbr-text {
  color: #716c80;
}
.cid-v2TY4dkPb5 .card-wrapper {
  display: flex;
  flex-direction: row;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  transition: all 0.3s;
  padding: 1rem 1rem !important;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-v2TY4dkPb5 .card-wrapper:hover {
  transform: translateY(-1rem);
}
.cid-v2TY4dkPb5 .card-wrapper:hover .ico2 {
  color: #432480 !important;
}
.cid-v2TY4dkPb5 .ico2 {
  color: #57468b !important;
  transition: all 0.6s;
}
.cid-v2TY4dkPb5 .text-info:hover {
  color: inherit!important;
}
.cid-v2TY4dkPb5 .card-box {
  padding: 0rem 1rem;
}
.cid-v2TY4dkPb5 .ico1 {
  font-size: 3rem !important;
}
.cid-v2TY4dkPb5 h3,
.cid-v2TY4dkPb5 h4 {
  padding: 0;
  margin: 0;
}
.cid-v2TY4dkPb5 .card-title,
.cid-v2TY4dkPb5 .card-img {
  color: #57468b;
}
.cid-v2TY4dkPb5 .card-title {
  color: #232323;
}
.cid-v4ajGOzD4a {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-v4ajGOzD4a h4 {
  margin-bottom: 0;
}
.cid-v4ajGOzD4a p {
  color: #767676;
}
.cid-v4ajGOzD4a .card:hover img {
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-v4ajGOzD4a .btn-info-outline {
  border: none;
  color: #57468b !important;
  padding: 0;
  margin: 0 0.25rem!important;
}
.cid-v4ajGOzD4a .btn-info-outline span {
  order: 2;
  font-size: 1.1rem;
  padding-top: 3px;
  transition: padding 0.3s!important;
}
.cid-v4ajGOzD4a .btn-info-outline:hover span {
  padding-left: 10px;
}
.cid-v4ajGOzD4a .btn-info-outline:hover {
  background-color: transparent!important;
  color: #432480 !important;
  box-shadow: none!important;
}
.cid-v4ajGOzD4a .btn-info-outline:active,
.cid-v4ajGOzD4a .btn-info-outline:focus {
  background-color: transparent!important;
  box-shadow: none!important;
}
.cid-v4ajGOzD4a .card-box {
  padding-top: 2rem;
}
.cid-v4ajGOzD4a .card-wrapper {
  height: 100%;
}
.cid-v4ajGOzD4a .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-v4ajGOzD4a img {
  transition: all 0.3s;
  border-radius: 8px;
}
.cid-v4ajGOzD4a .card-title {
  color: #57468b;
}
.cid-v4ajGOzD4a .main-title {
  color: #57468b;
}
.cid-v4ajGOzD4a DIV {
  color: #57468b;
}
.cid-v4ajGOzD4a .card-img {
  width: auto;
}
.cid-v4ajGOzD4a .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4ajGOzD4a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4ajHbnxGk {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-v4ajHbnxGk h4 {
  margin-bottom: 0;
}
.cid-v4ajHbnxGk p {
  color: #767676;
}
.cid-v4ajHbnxGk .card:hover img {
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-v4ajHbnxGk .btn-info-outline {
  border: none;
  color: #57468b !important;
  padding: 0;
  margin: 0 0.25rem!important;
}
.cid-v4ajHbnxGk .btn-info-outline span {
  order: 2;
  font-size: 1.1rem;
  padding-top: 3px;
  transition: padding 0.3s!important;
}
.cid-v4ajHbnxGk .btn-info-outline:hover span {
  padding-left: 10px;
}
.cid-v4ajHbnxGk .btn-info-outline:hover {
  background-color: transparent!important;
  color: #432480 !important;
  box-shadow: none!important;
}
.cid-v4ajHbnxGk .btn-info-outline:active,
.cid-v4ajHbnxGk .btn-info-outline:focus {
  background-color: transparent!important;
  box-shadow: none!important;
}
.cid-v4ajHbnxGk .card-box {
  padding-top: 2rem;
}
.cid-v4ajHbnxGk .card-wrapper {
  height: 100%;
}
.cid-v4ajHbnxGk .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-v4ajHbnxGk img {
  transition: all 0.3s;
  border-radius: 8px;
}
.cid-v4ajHbnxGk .card-title {
  color: #57468b;
}
.cid-v4ajHbnxGk .main-title {
  color: #57468b;
}
.cid-v4ajHbnxGk DIV {
  color: #57468b;
}
.cid-v4ajHbnxGk .card-img {
  width: auto;
}
.cid-v4ajHbnxGk .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4ajHbnxGk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4ajHsDz7K {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f2f6ff;
}
.cid-v4ajHsDz7K H1 {
  color: #57468b;
}
.cid-v4ajHsDz7K .mbr-text,
.cid-v4ajHsDz7K .mbr-section-btn {
  color: #716c80;
}
.cid-v4ajHsDz7K .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4ajHsDz7K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2TY4dQ0i4 {
  padding-top: 180px;
  padding-bottom: 75px;
  background-color: #432480;
  position: relative;
  overflow: hidden;
}
.cid-v2TY4dQ0i4 .container {
  max-width: 1400px;
}
.cid-v2TY4dQ0i4 .card-img2 span {
  padding-top: 6px;
}
.cid-v2TY4dQ0i4 .soc-item a {
  padding-top: 5px;
}
.cid-v2TY4dQ0i4 .btn {
  padding: 0.4rem 0.6rem!important;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-v2TY4dQ0i4 .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-v2TY4dQ0i4 .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-v2TY4dQ0i4 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-v2TY4dQ0i4 svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-v2TY4dQ0i4 #e2_shape {
  fill: #ffffff !important;
}
.cid-v2TY4dQ0i4 .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-v2TY4dQ0i4 .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-v2TY4dQ0i4 .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #ff9800;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v2TY4dQ0i4 .card-img {
  width: auto;
}
.cid-v2TY4dQ0i4 .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-v2TY4dQ0i4 .soc-item span {
  font-size: 1.4rem;
}
.cid-v2TY4dQ0i4 .soc-item:hover span {
  color: #432480 !important;
}
.cid-v2TY4dQ0i4 .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-v2TY4dQ0i4 .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-v2TY4dQ0i4 .media-wrap {
  margin-bottom: 1rem;
}
.cid-v2TY4dQ0i4 .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-v2TY4dQ0i4 img {
  height: 4rem;
}
@media (max-width: 576px) {
  .cid-v2TY4dQ0i4 .item {
    justify-content: center;
  }
  .cid-v2TY4dQ0i4 .quote::after {
    left: 60px;
  }
}
.cid-v2TY4dQ0i4 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-v2TY4dQ0i4 .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v2TY4dQ0i4 .text1 {
  color: #ffffff;
}
.cid-v2TY4dQ0i4 .item-title {
  color: #ffffff;
}
.cid-v2TY4dQ0i4 H5 {
  color: #ff9800;
}
.cid-v2TY4dQ0i4 .theme {
  color: #ffffff;
}
.cid-v2TY4dQ0i4 .copyright > p {
  color: #ff3366;
}
.cid-v2TY4dQ0i4 .text2 {
  color: #ffffff;
}
.cid-v2TY4epVzG {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-v2TY4epVzG .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-v3uLT9U3zO .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-v3uLT9U3zO .navbar-fixed-top {
  padding-top: 0;
}
.cid-v3uLT9U3zO .navbar-collapse {
  flex-basis: auto;
  transition: all 0.3s ease-in;
}
.cid-v3uLT9U3zO .navbar-collapse.show {
  position: absolute;
  opacity: 1;
  visibility: visible;
  top: 100%;
  z-index: 999;
  background-color: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 15px 20px;
  bottom: auto;
  left: 0px;
  right: 0px;
}
.cid-v3uLT9U3zO .navbar-collapse.show .navbar-nav .nav-item {
  text-align: left;
  padding: 10px 0;
}
.cid-v3uLT9U3zO .navbar-buttons {
  flex-wrap: wrap;
}
.cid-v3uLT9U3zO .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3uLT9U3zO .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-v3uLT9U3zO .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  padding-right: 2rem;
}
.cid-v3uLT9U3zO .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3uLT9U3zO .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3uLT9U3zO .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3uLT9U3zO .menu-content-top {
  background: #432480;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  width: 100%;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-v3uLT9U3zO .menu-content-top .right-wrap .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-v3uLT9U3zO .dropdown-item {
  font-weight: 400;
  margin: 0 !important;
  padding: 0 40px !important;
  line-height: 2.6;
}
.cid-v3uLT9U3zO .dropdown-item,
.cid-v3uLT9U3zO .nav-link,
.cid-v3uLT9U3zO .brand-name {
  font-style: normal;
}
.cid-v3uLT9U3zO .dropdown-item:hover,
.cid-v3uLT9U3zO .nav-link:hover,
.cid-v3uLT9U3zO .brand-name:hover {
  color: #ff9800 !important;
}
.cid-v3uLT9U3zO .dropdown-menu {
  background-color: #ffffff;
}
.cid-v3uLT9U3zO .dropdown-item:active {
  background-color: #ffffff;
}
.cid-v3uLT9U3zO .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
  justify-content: center;
}
.cid-v3uLT9U3zO .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-v3uLT9U3zO .nav-item {
  position: relative;
}
.cid-v3uLT9U3zO .nav-item span {
  padding-right: 0.4em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-v3uLT9U3zO .nav-item .nav-link {
  transition: all 0.3s ease-in-out 0ms;
}
.cid-v3uLT9U3zO .nav-item .nav-link:focus {
  outline: none;
}
@media (min-width: 991px) {
  .cid-v3uLT9U3zO .nav-link {
    line-height: 6.13;
  }
  .cid-v3uLT9U3zO .navbar-nav > li > a:before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 0;
    margin: auto;
    opacity: 0;
    border-top: 2px solid #279e64;
    transition: all 0.3s ease-in-out 0ms;
  }
  .cid-v3uLT9U3zO .navbar-nav > li:hover > a:before {
    opacity: 1;
    width: 100%;
  }
}
.cid-v3uLT9U3zO .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v3uLT9U3zO .content-text {
  margin-bottom: 0;
}
.cid-v3uLT9U3zO .navbar-nav {
  position: relative;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-v3uLT9U3zO .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #432480;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-v3uLT9U3zO .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-v3uLT9U3zO .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-v3uLT9U3zO .navbar-nav .nav-item .link {
  margin: 0 20px !important;
}
.cid-v3uLT9U3zO .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v3uLT9U3zO .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-v3uLT9U3zO .content-right-side {
  text-align: center;
}
.cid-v3uLT9U3zO .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-v3uLT9U3zO .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-v3uLT9U3zO .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
  color: #5580ff;
}
.cid-v3uLT9U3zO .widget-icon.mobi-mbri-phone {
  -webkit-animation: phone-icon-animate 1s ease-in-out infinite;
  animation: phone-icon-animate 1s ease-in-out infinite;
}
.cid-v3uLT9U3zO .info-widget {
  margin-left: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v3uLT9U3zO .info-widget:first-child {
  margin-left: 0;
}
.cid-v3uLT9U3zO .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-v3uLT9U3zO .widget-content .widget-title {
  margin-bottom: 3px;
  line-height: 1.7;
}
.cid-v3uLT9U3zO .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-v3uLT9U3zO .navbar .menu-content-top {
  display: flex;
  height: 90px;
  border-bottom: 1px solid #d9dade;
}
@media (min-width: 992px) {
  .cid-v3uLT9U3zO .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
  }
  .cid-v3uLT9U3zO .navbar {
    display: block;
    padding: 0;
  }
  .cid-v3uLT9U3zO .navbar .menu-logo {
    margin: auto;
    display: flex;
    align-items: center;
  }
  .cid-v3uLT9U3zO .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-v3uLT9U3zO .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-v3uLT9U3zO .navbar-toggler {
    display: none;
  }
  .cid-v3uLT9U3zO .navbar-collapse {
    justify-content: center;
  }
}
.cid-v3uLT9U3zO .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-v3uLT9U3zO .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
  position: relative;
  overflow: hidden;
  margin-right: 0;
}
.cid-v3uLT9U3zO .btn-sm {
  padding: 13px 29px;
}
.cid-v3uLT9U3zO .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-v3uLT9U3zO .btn::after {
  background-color: #57468b;
  content: "";
  height: 150px;
  left: -75px;
  position: absolute;
  top: -60px;
  transform: rotate(35deg);
  transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  width: 40px;
  opacity: 0;
  outline: none;
  text-decoration: none;
}
.cid-v3uLT9U3zO .btn:hover::after {
  left: 250px;
  opacity: 0.8;
}
.cid-v3uLT9U3zO .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-v3uLT9U3zO .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3uLT9U3zO .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  align-self: center;
}
.cid-v3uLT9U3zO .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3uLT9U3zO .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding: 25px 0;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-v3uLT9U3zO .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-v3uLT9U3zO .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v3uLT9U3zO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3uLT9U3zO .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-v3uLT9U3zO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-v3uLT9U3zO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v3uLT9U3zO .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3uLT9U3zO .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3uLT9U3zO .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-v3uLT9U3zO .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  transition: font-size 0.25s;
}
.cid-v3uLT9U3zO .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3uLT9U3zO .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3uLT9U3zO .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3uLT9U3zO button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  margin-right: 0;
}
.cid-v3uLT9U3zO button.navbar-toggler:focus {
  outline: none;
}
.cid-v3uLT9U3zO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #282828;
}
.cid-v3uLT9U3zO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v3uLT9U3zO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3uLT9U3zO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3uLT9U3zO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v3uLT9U3zO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3uLT9U3zO nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v3uLT9U3zO nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v3uLT9U3zO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3uLT9U3zO .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v3uLT9U3zO .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v3uLT9U3zO .collapsed .btn {
  display: flex;
}
.cid-v3uLT9U3zO .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3uLT9U3zO .collapsed .navbar-collapse.collapsing,
.cid-v3uLT9U3zO .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3uLT9U3zO .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3uLT9U3zO .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3uLT9U3zO .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3uLT9U3zO .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3uLT9U3zO .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3uLT9U3zO .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}
.cid-v3uLT9U3zO .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3uLT9U3zO .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-v3uLT9U3zO .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-v3uLT9U3zO .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3uLT9U3zO .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-v3uLT9U3zO .collapsed .navbar-toggleable-sm {
  flex-direction: column;
}
.cid-v3uLT9U3zO .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-v3uLT9U3zO .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3uLT9U3zO .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3uLT9U3zO .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: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-v3uLT9U3zO .collapsed .menu-bottom {
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-v3uLT9U3zO .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
    padding-left: 20px !important;
  }
  .cid-v3uLT9U3zO .dropdown-menu .dropdown-item {
    text-align: left;
    font-weight: 700;
  }
  .cid-v3uLT9U3zO .menu-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-v3uLT9U3zO .menu-bottom .menu-content-right {
    display: none;
  }
  .cid-v3uLT9U3zO .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
    opacity: 0;
    transition: all 0.3s ease-in;
    position: absolute;
    top: 100%;
    bottom: auto;
    left: 0px;
    right: 0px;
    z-index: 999;
  }
  .cid-v3uLT9U3zO .navbar-collapse .navbar-nav .nav-item {
    clear: both;
    text-align: left;
    padding: 10px 0;
  }
  .cid-v3uLT9U3zO .navbar-collapse.collapsing,
  .cid-v3uLT9U3zO .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3uLT9U3zO .navbar-collapse.collapsing .navbar-nav,
  .cid-v3uLT9U3zO .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3uLT9U3zO .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3uLT9U3zO .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3uLT9U3zO .navbar-collapse.collapsing .navbar-nav .nav-item .nav-link,
  .cid-v3uLT9U3zO .navbar-collapse.show .navbar-nav .nav-item .nav-link {
    font-weight: 700;
  }
  .cid-v3uLT9U3zO .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3uLT9U3zO .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-v3uLT9U3zO .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3uLT9U3zO .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3uLT9U3zO img {
    height: 3.8rem !important;
  }
  .cid-v3uLT9U3zO .btn {
    display: flex;
  }
  .cid-v3uLT9U3zO button.navbar-toggler {
    display: block;
    align-self: center;
  }
  .cid-v3uLT9U3zO .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-v3uLT9U3zO .navbar-toggleable-sm {
    flex-direction: column;
  }
  .cid-v3uLT9U3zO .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-v3uLT9U3zO .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3uLT9U3zO .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3uLT9U3zO .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: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-v3uLT9U3zO .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-v3uLT9U3zO .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-v3uLT9U3zO .navbar-toggler {
  position: relative;
}
.cid-v3uLT9U3zO .dropdown-item.active,
.cid-v3uLT9U3zO .dropdown-item:active {
  color: initial;
}
.cid-v3uLT9U3zO .widget-title {
  color: #57468b;
}
.cid-v3uLT9U3zO .widget-text {
  color: #57468b;
}
.cid-v3uLT9U3zO .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
.cid-v3uLT9U3zO .icons-menu .mbr-iconfont {
  font-size: 1rem;
  color: #432480;
  display: inline-flex;
  background-color: #eaebee;
  border-radius: 100%;
  transition: all 0.3s ease-in;
}
.cid-v3uLT9U3zO .icons-menu .mbr-iconfont:before {
  padding: .75rem;
}
.cid-v3uLT9U3zO .icons-menu .mbr-iconfont:hover {
  color: #ffffff;
  background-color: #432480;
  -webkit-animation-name: animation-pulse;
  animation-name: animation-pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  opacity: .9;
}
.cid-v3uLT9U3zO .soc-item {
  margin: .5rem .3rem;
}
@media (max-width: 768px) {
  .cid-v3uLT9U3zO .menu-content-top .icons-menu {
    padding-left: 0;
  }
  .cid-v3uLT9U3zO .menu-content-top .icons-menu .soc-item .mbr-iconfont {
    font-size: 14px;
  }
  .cid-v3uLT9U3zO .menu-content-top .icons-menu .soc-item .mbr-iconfont::before {
    padding: 0.44rem;
  }
  .cid-v3uLT9U3zO .menu-content-top .right-wrap .info-widget {
    margin-left: 20px;
  }
  .cid-v3uLT9U3zO .menu-content-top .right-wrap .info-widget:first-child {
    margin-left: 0;
  }
  .cid-v3uLT9U3zO .menu-content-top .right-wrap .info-widget .widget-content {
    display: none;
  }
  .cid-v3uLT9U3zO .menu-content-top .right-wrap .info-widget .widget-icon {
    font-size: 25px;
    padding-right: 0;
  }
  .cid-v3uLT9U3zO .navbar-brand {
    margin-left: 0 !important;
  }
}
@media (max-width: 576px) {
  .cid-v3uLT9U3zO .menu-content-top,
  .cid-v3uLT9U3zO .menu-bottom {
    padding: 0 15px;
  }
  .cid-v3uLT9U3zO button.navbar-toggler {
    align-self: center;
  }
}
@-webkit-keyframes phone-icon-animate {
  0%,
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    transform: rotate(20deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@keyframes phone-icon-animate {
  0%,
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    transform: rotate(20deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@-webkit-keyframes animation-pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
@keyframes animation-pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
.cid-v3uLT9U3zO .widget-title,
.cid-v3uLT9U3zO .widget-icon {
  color: #ffffff;
}
.cid-v3uLTaoO6t {
  padding-top: 225px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/02.jpg-2000x1176.jpg");
}
.cid-v3uLTaoO6t H1 {
  text-align: left;
  color: #ff9800;
}
.cid-v3uLTaoO6t .mbr-text,
.cid-v3uLTaoO6t .mbr-section-btn {
  text-align: left;
}
.cid-v3uLTaFqgW {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v3uLTaFqgW img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-v3uLTaFqgW H1 {
  color: #57468b;
}
.cid-v3uLTaFqgW .mbr-text,
.cid-v3uLTaFqgW .mbr-section-btn {
  color: #716c80;
}
.cid-v3uLTaFqgW H3 {
  color: #716c80;
}
.cid-v3uLTaFqgW .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-v3uLTaFqgW .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-v3uLTaFqgW .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-v3uLTaFqgW .link:hover {
  color: #432480 !important;
}
.cid-v3uLTaFqgW .link:hover .link-ico {
  color: #432480 !important;
  padding-left: 10px;
}
.cid-v3uLTaFqgW DIV {
  color: #57468b;
}
.cid-v3uLTaFqgW .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3uLTaFqgW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3uLTaFqgW .mbr-text,
.cid-v3uLTaFqgW .media-content {
  color: #545454;
}
.cid-v3uLTaTDuJ {
  padding-top: 2rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-v3uLTaTDuJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3uLTaTDuJ .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-v3uLTaTDuJ .container {
    padding: 0 30px;
  }
}
.cid-v3uLTaTDuJ .row {
  justify-content: center;
}
.cid-v3uLTaTDuJ .title-wrapper {
  margin-bottom: 140px;
}
.cid-v3uLTaTDuJ .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-v3uLTaTDuJ .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v3uLTaTDuJ .card .card-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0 4px;
  padding: 45px 36px 66px;
  background-color: #ff9800;
  border-radius: 10px;
  overflow: visible;
}
@media (max-width: 992px) {
  .cid-v3uLTaTDuJ .card .card-wrapper {
    margin: 0 0 50px;
    padding: 45px 22px 66px;
  }
}
.cid-v3uLTaTDuJ .card .card-wrapper .best-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -3.4rem;
  left: 0;
  width: 100%;
  min-height: 54px;
  background-color: #ff6839;
  padding: 18px 8px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.cid-v3uLTaTDuJ .card .card-wrapper .best-wrap .best-wrapper {
  width: 100%;
}
.cid-v3uLTaTDuJ .card .card-wrapper .best-wrap .best-wrapper .mbr-best {
  margin-bottom: 0;
}
.cid-v3uLTaTDuJ .card .card-wrapper .card-content .mbr-card-title {
  margin: 25px 0;
}
.cid-v3uLTaTDuJ .card .card-wrapper .card-content .price-wrap .mbr-price {
  margin-bottom: 25px;
  position: relative;
  display: inline-flex;
}
.cid-v3uLTaTDuJ .card .card-wrapper .card-content .price-wrap .mbr-price span {
  position: absolute;
  font-size: 50%;
  top: .4rem;
  left: -2rem;
}
.cid-v3uLTaTDuJ .card .card-wrapper .card-content .mbr-desc {
  margin-bottom: 25px;
}
.cid-v3uLTaTDuJ .card .card-wrapper .card-content .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3uLTaTDuJ .card .card-wrapper .card-content .list .item-wrap {
  line-height: 1.625;
  margin-bottom: 10px;
}
.cid-v3uLTaTDuJ .card .card-wrapper .mbr-section-btn {
  margin-top: 18px;
}
.cid-v3uLTaTDuJ .mbr-section-title {
  color: #002047;
  text-align: center;
}
.cid-v3uLTaTDuJ .mbr-text {
  color: #93dce7;
  text-align: center;
}
.cid-v3uLTaTDuJ .mbr-best {
  color: #ffffff;
  text-align: center;
}
.cid-v3uLTaTDuJ .mbr-card-title {
  color: #000000;
}
.cid-v3uLTaTDuJ .mbr-price,
.cid-v3uLTaTDuJ .price-wrap {
  color: #002047;
  text-align: center;
}
.cid-v3uLTaTDuJ .mbr-desc {
  color: #000000;
  text-align: center;
}
.cid-v3uLTaTDuJ .list {
  color: #ffffff;
  text-align: center;
}
.cid-v3uLTaTDuJ .mbr-card-title,
.cid-v3uLTaTDuJ .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-v3uLTbezLl {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #ff9800;
}
.cid-v3uLTbezLl H1 {
  color: #ffffff;
}
.cid-v3uLTbezLl .mbr-text,
.cid-v3uLTbezLl .mbr-section-btn {
  color: #716c80;
}
.cid-v3uLTbezLl .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3uLTbezLl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3uLTbuXTS {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-v3uLTbuXTS H1 {
  color: #432480;
}
.cid-v3uLTbuXTS .mbr-text,
.cid-v3uLTbuXTS .mbr-section-btn {
  color: #363636;
}
.cid-v3uLTbKdwi {
  padding-top: 45px;
  padding-bottom: 75px;
  background-color: #f2f2f4;
}
.cid-v3uLTbKdwi .mbr-text {
  color: #767676;
}
.cid-v3uLTbKdwi img {
  width: 100%;
}
.cid-v3uLTbKdwi .card-img {
  margin-bottom: 0rem;
}
.cid-v3uLTbKdwi .card-wrapper {
  background: #ffffff;
  border-radius: 3px;
  overflow: hidden;
}
.cid-v3uLTbKdwi .card-box {
  padding: 2rem 1rem;
}
.cid-v3uLTbKdwi p {
  font-weight: 400;
}
.cid-v3uLTbKdwi .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-v3uLTbKdwi .card {
    margin-bottom: 2rem;
  }
}
.cid-v3uLTbKdwi .mbr-text,
.cid-v3uLTbKdwi .mbr-section-btn {
  text-align: center;
}
.cid-v3uLTbKdwi .card-title,
.cid-v3uLTbKdwi .card-img {
  text-align: center;
  color: #432480;
}
.cid-v3uLTcaI2F {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v3uLTcaI2F H1 {
  color: #363636;
}
.cid-v3uLTcaI2F .mbr-text,
.cid-v3uLTcaI2F .mbr-section-btn {
  color: #363636;
}
.cid-v3uLTcqtwq {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-v3uLTcqtwq H1 {
  color: #ff9800;
  text-align: center;
}
.cid-v3uLTcqtwq .mbr-text,
.cid-v3uLTcqtwq .mbr-section-btn {
  color: #716c80;
}
.cid-v3uLTcqtwq H3 {
  color: #716c80;
}
.cid-v3uLTcGBt0 {
  padding-top: 105px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/87-2000x1335.jpg");
  background-size: cover;
}
.cid-v3uLTcGBt0 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-v3uLTcGBt0 h4 {
  text-align: center;
}
.cid-v3uLTcGBt0 p {
  text-align: center;
}
.cid-v3uLTcGBt0 .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-v3uLTcGBt0 .mbr-iconfont {
  transition: all 0.3s;
  color: #ff9800 !important;
  font-size: 3rem !important;
}
.cid-v3uLTcGBt0 .card {
  transition: all 0.3s;
  padding: 2rem!important;
}
.cid-v3uLTcGBt0 .card:hover .card-title {
  color: #f2f6ff !important;
  cursor: pointer;
}
.cid-v3uLTcGBt0 .card-title {
  transition: color 0.3s;
}
.cid-v3uLTcGBt0 .card-title,
.cid-v3uLTcGBt0 .card-img {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-v3uLTcGBt0 .card {
    padding: 2rem 0rem 0rem 0rem!important;
  }
}
.cid-v3uLTdgyVr {
  padding-top: 105px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-v3uLTdgyVr H1 {
  color: #363636;
}
.cid-v3uLTdgyVr .mbr-text,
.cid-v3uLTdgyVr .mbr-section-btn {
  color: #716c80;
}
.cid-v3uLTdgyVr H3 {
  color: #716c80;
}
.cid-v3uLTdyBk6 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/bg2-2000x1335.jpeg");
}
.cid-v3uLTdyBk6 h5,
.cid-v3uLTdyBk6 h4,
.cid-v3uLTdyBk6 p {
  margin-bottom: 0;
}
.cid-v3uLTdyBk6 p {
  color: #767676;
}
.cid-v3uLTdyBk6 .card-img {
  padding: 0;
}
.cid-v3uLTdyBk6 .mbr-section-btn {
  margin: 0;
  margin-top: 1.2rem;
  border-top: 1px solid #cccccc;
}
.cid-v3uLTdyBk6 .mbr-section-btn .btn {
  margin-top: 1.2rem !important;
}
.cid-v3uLTdyBk6 .card-wrapper {
  transition: all 0.3s;
  background-color: #ffffff;
}
.cid-v3uLTdyBk6 .card-wrapper:hover {
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-v3uLTdyBk6 .card-box {
  padding: 2rem;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-v3uLTdyBk6 .card-box {
    padding: 2rem 0 0;
  }
  .cid-v3uLTdyBk6 .card-wrapper {
    display: block !important;
  }
}
.cid-v3uLTdyBk6 .card-wrapper {
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
}
.cid-v3uLTdyBk6 .card-title,
.cid-v3uLTdyBk6 .main-title {
  color: #57468b;
}
.cid-v3uLTdyBk6 .card-title {
  color: #363636;
}
.cid-v3uLTe2xLL {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/04-2000x1335.jpeg");
}
.cid-v3uLTe2xLL H1 {
  color: #363636;
}
.cid-v3uLTe2xLL .mbr-text,
.cid-v3uLTe2xLL .mbr-section-btn {
  color: #716c80;
}
.cid-v3uLTe2xLL img {
  width: 80%;
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
@media (max-width: 992px) {
  .cid-v3uLTe2xLL img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.cid-v3uLTemWbN {
  padding-top: 225px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/03-1-2000x1335.jpeg");
}
.cid-v3uLTemWbN H1 {
  color: #432480;
  text-align: left;
}
.cid-v3uLTemWbN .mbr-text,
.cid-v3uLTemWbN .mbr-section-btn {
  color: #363636;
  text-align: left;
}
.cid-v3uLTeEBps {
  padding-top: 120px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v3uLTeEBps .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v3uLTeEBps .btn {
  font-size: 16px;
  padding: 0.5rem 2rem;
}
.cid-v3uLTeEBps .btn-primary-outline {
  border: none;
  color: gray;
}
.cid-v3uLTeEBps .btn-primary-outline:active {
  color: gray;
}
.cid-v3uLTeEBps .btn-primary-outline:hover {
  color: white;
}
.cid-v3uLTeEBps .mbr-gallery-title:before {
  border-radius: 0px 0px 10px 10px;
}
.cid-v3uLTeEBps div {
  overflow: hidden;
}
.cid-v3uLTeEBps .btn-primary-outline.active {
  color: white;
}
.cid-v3uLTeEBps .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v3uLTeEBps .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v3uLTeEBps .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v3uLTeEBps .mbr-gallery-item {
  overflow: hidden;
}
.cid-v3uLTeEBps .mbr-gallery-item img {
  transition: all 0.3s;
  border-radius: 10px;
}
.cid-v3uLTeEBps .mbr-gallery-filter {
  padding-top: 20px;
  padding-bottom: 20px;
}
.cid-v3uLTeEBps .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-v3uLTeEBps .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v3uLTeEBps .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-v3uLTeEBps .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v3uLTeEBps .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-v3uLTfbve3 {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-v3uLTfbve3 .mbr-text {
  color: #716c80;
}
.cid-v3uLTfbve3 .card-wrapper {
  display: flex;
  flex-direction: row;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  transition: all 0.3s;
  padding: 1rem 1rem !important;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-v3uLTfbve3 .card-wrapper:hover {
  transform: translateY(-1rem);
}
.cid-v3uLTfbve3 .card-wrapper:hover .ico2 {
  color: #432480 !important;
}
.cid-v3uLTfbve3 .ico2 {
  color: #57468b !important;
  transition: all 0.6s;
}
.cid-v3uLTfbve3 .text-info:hover {
  color: inherit!important;
}
.cid-v3uLTfbve3 .card-box {
  padding: 0rem 1rem;
}
.cid-v3uLTfbve3 .ico1 {
  font-size: 3rem !important;
}
.cid-v3uLTfbve3 h3,
.cid-v3uLTfbve3 h4 {
  padding: 0;
  margin: 0;
}
.cid-v3uLTfbve3 .card-title,
.cid-v3uLTfbve3 .card-img {
  color: #57468b;
}
.cid-v3uLTfbve3 .card-title {
  color: #232323;
}
.cid-v4ak062jOr {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-v4ak062jOr h4 {
  margin-bottom: 0;
}
.cid-v4ak062jOr p {
  color: #767676;
}
.cid-v4ak062jOr .card:hover img {
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-v4ak062jOr .btn-info-outline {
  border: none;
  color: #57468b !important;
  padding: 0;
  margin: 0 0.25rem!important;
}
.cid-v4ak062jOr .btn-info-outline span {
  order: 2;
  font-size: 1.1rem;
  padding-top: 3px;
  transition: padding 0.3s!important;
}
.cid-v4ak062jOr .btn-info-outline:hover span {
  padding-left: 10px;
}
.cid-v4ak062jOr .btn-info-outline:hover {
  background-color: transparent!important;
  color: #432480 !important;
  box-shadow: none!important;
}
.cid-v4ak062jOr .btn-info-outline:active,
.cid-v4ak062jOr .btn-info-outline:focus {
  background-color: transparent!important;
  box-shadow: none!important;
}
.cid-v4ak062jOr .card-box {
  padding-top: 2rem;
}
.cid-v4ak062jOr .card-wrapper {
  height: 100%;
}
.cid-v4ak062jOr .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-v4ak062jOr img {
  transition: all 0.3s;
  border-radius: 8px;
}
.cid-v4ak062jOr .card-title {
  color: #57468b;
}
.cid-v4ak062jOr .main-title {
  color: #57468b;
}
.cid-v4ak062jOr DIV {
  color: #57468b;
}
.cid-v4ak062jOr .card-img {
  width: auto;
}
.cid-v4ak062jOr .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4ak062jOr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4ak0uLDwo {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-v4ak0uLDwo h4 {
  margin-bottom: 0;
}
.cid-v4ak0uLDwo p {
  color: #767676;
}
.cid-v4ak0uLDwo .card:hover img {
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-v4ak0uLDwo .btn-info-outline {
  border: none;
  color: #57468b !important;
  padding: 0;
  margin: 0 0.25rem!important;
}
.cid-v4ak0uLDwo .btn-info-outline span {
  order: 2;
  font-size: 1.1rem;
  padding-top: 3px;
  transition: padding 0.3s!important;
}
.cid-v4ak0uLDwo .btn-info-outline:hover span {
  padding-left: 10px;
}
.cid-v4ak0uLDwo .btn-info-outline:hover {
  background-color: transparent!important;
  color: #432480 !important;
  box-shadow: none!important;
}
.cid-v4ak0uLDwo .btn-info-outline:active,
.cid-v4ak0uLDwo .btn-info-outline:focus {
  background-color: transparent!important;
  box-shadow: none!important;
}
.cid-v4ak0uLDwo .card-box {
  padding-top: 2rem;
}
.cid-v4ak0uLDwo .card-wrapper {
  height: 100%;
}
.cid-v4ak0uLDwo .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-v4ak0uLDwo img {
  transition: all 0.3s;
  border-radius: 8px;
}
.cid-v4ak0uLDwo .card-title {
  color: #57468b;
}
.cid-v4ak0uLDwo .main-title {
  color: #57468b;
}
.cid-v4ak0uLDwo DIV {
  color: #57468b;
}
.cid-v4ak0uLDwo .card-img {
  width: auto;
}
.cid-v4ak0uLDwo .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4ak0uLDwo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4ak0NTQlN {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f2f6ff;
}
.cid-v4ak0NTQlN H1 {
  color: #57468b;
}
.cid-v4ak0NTQlN .mbr-text,
.cid-v4ak0NTQlN .mbr-section-btn {
  color: #716c80;
}
.cid-v4ak0NTQlN .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4ak0NTQlN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3uLTfARee {
  padding-top: 180px;
  padding-bottom: 75px;
  background-color: #432480;
  position: relative;
  overflow: hidden;
}
.cid-v3uLTfARee .container {
  max-width: 1400px;
}
.cid-v3uLTfARee .card-img2 span {
  padding-top: 6px;
}
.cid-v3uLTfARee .soc-item a {
  padding-top: 5px;
}
.cid-v3uLTfARee .btn {
  padding: 0.4rem 0.6rem!important;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-v3uLTfARee .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-v3uLTfARee .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-v3uLTfARee .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-v3uLTfARee svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-v3uLTfARee #e2_shape {
  fill: #ffffff !important;
}
.cid-v3uLTfARee .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-v3uLTfARee .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-v3uLTfARee .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #ff9800;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v3uLTfARee .card-img {
  width: auto;
}
.cid-v3uLTfARee .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-v3uLTfARee .soc-item span {
  font-size: 1.4rem;
}
.cid-v3uLTfARee .soc-item:hover span {
  color: #432480 !important;
}
.cid-v3uLTfARee .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-v3uLTfARee .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-v3uLTfARee .media-wrap {
  margin-bottom: 1rem;
}
.cid-v3uLTfARee .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-v3uLTfARee img {
  height: 4rem;
}
@media (max-width: 576px) {
  .cid-v3uLTfARee .item {
    justify-content: center;
  }
  .cid-v3uLTfARee .quote::after {
    left: 60px;
  }
}
.cid-v3uLTfARee .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-v3uLTfARee .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v3uLTfARee .text1 {
  color: #ffffff;
}
.cid-v3uLTfARee .item-title {
  color: #ffffff;
}
.cid-v3uLTfARee H5 {
  color: #ff9800;
}
.cid-v3uLTfARee .theme {
  color: #ffffff;
}
.cid-v3uLTfARee .copyright > p {
  color: #ff3366;
}
.cid-v3uLTfARee .text2 {
  color: #ffffff;
}
.cid-v3uLTg8Ncr {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-v3uLTg8Ncr .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-v3B5eVQXy2 .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-v3B5eVQXy2 .navbar-fixed-top {
  padding-top: 0;
}
.cid-v3B5eVQXy2 .navbar-collapse {
  flex-basis: auto;
  transition: all 0.3s ease-in;
}
.cid-v3B5eVQXy2 .navbar-collapse.show {
  position: absolute;
  opacity: 1;
  visibility: visible;
  top: 100%;
  z-index: 999;
  background-color: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 15px 20px;
  bottom: auto;
  left: 0px;
  right: 0px;
}
.cid-v3B5eVQXy2 .navbar-collapse.show .navbar-nav .nav-item {
  text-align: left;
  padding: 10px 0;
}
.cid-v3B5eVQXy2 .navbar-buttons {
  flex-wrap: wrap;
}
.cid-v3B5eVQXy2 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3B5eVQXy2 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-v3B5eVQXy2 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  padding-right: 2rem;
}
.cid-v3B5eVQXy2 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3B5eVQXy2 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3B5eVQXy2 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3B5eVQXy2 .menu-content-top {
  background: #432480;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  width: 100%;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-v3B5eVQXy2 .menu-content-top .right-wrap .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-v3B5eVQXy2 .dropdown-item {
  font-weight: 400;
  margin: 0 !important;
  padding: 0 40px !important;
  line-height: 2.6;
}
.cid-v3B5eVQXy2 .dropdown-item,
.cid-v3B5eVQXy2 .nav-link,
.cid-v3B5eVQXy2 .brand-name {
  font-style: normal;
}
.cid-v3B5eVQXy2 .dropdown-item:hover,
.cid-v3B5eVQXy2 .nav-link:hover,
.cid-v3B5eVQXy2 .brand-name:hover {
  color: #ff9800 !important;
}
.cid-v3B5eVQXy2 .dropdown-menu {
  background-color: #ffffff;
}
.cid-v3B5eVQXy2 .dropdown-item:active {
  background-color: #ffffff;
}
.cid-v3B5eVQXy2 .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
  justify-content: center;
}
.cid-v3B5eVQXy2 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-v3B5eVQXy2 .nav-item {
  position: relative;
}
.cid-v3B5eVQXy2 .nav-item span {
  padding-right: 0.4em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-v3B5eVQXy2 .nav-item .nav-link {
  transition: all 0.3s ease-in-out 0ms;
}
.cid-v3B5eVQXy2 .nav-item .nav-link:focus {
  outline: none;
}
@media (min-width: 991px) {
  .cid-v3B5eVQXy2 .nav-link {
    line-height: 6.13;
  }
  .cid-v3B5eVQXy2 .navbar-nav > li > a:before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 0;
    margin: auto;
    opacity: 0;
    border-top: 2px solid #279e64;
    transition: all 0.3s ease-in-out 0ms;
  }
  .cid-v3B5eVQXy2 .navbar-nav > li:hover > a:before {
    opacity: 1;
    width: 100%;
  }
}
.cid-v3B5eVQXy2 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v3B5eVQXy2 .content-text {
  margin-bottom: 0;
}
.cid-v3B5eVQXy2 .navbar-nav {
  position: relative;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-v3B5eVQXy2 .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #432480;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-v3B5eVQXy2 .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-v3B5eVQXy2 .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-v3B5eVQXy2 .navbar-nav .nav-item .link {
  margin: 0 20px !important;
}
.cid-v3B5eVQXy2 .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v3B5eVQXy2 .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-v3B5eVQXy2 .content-right-side {
  text-align: center;
}
.cid-v3B5eVQXy2 .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-v3B5eVQXy2 .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-v3B5eVQXy2 .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
  color: #5580ff;
}
.cid-v3B5eVQXy2 .widget-icon.mobi-mbri-phone {
  -webkit-animation: phone-icon-animate 1s ease-in-out infinite;
  animation: phone-icon-animate 1s ease-in-out infinite;
}
.cid-v3B5eVQXy2 .info-widget {
  margin-left: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v3B5eVQXy2 .info-widget:first-child {
  margin-left: 0;
}
.cid-v3B5eVQXy2 .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-v3B5eVQXy2 .widget-content .widget-title {
  margin-bottom: 3px;
  line-height: 1.7;
}
.cid-v3B5eVQXy2 .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-v3B5eVQXy2 .navbar .menu-content-top {
  display: flex;
  height: 90px;
  border-bottom: 1px solid #d9dade;
}
@media (min-width: 992px) {
  .cid-v3B5eVQXy2 .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
  }
  .cid-v3B5eVQXy2 .navbar {
    display: block;
    padding: 0;
  }
  .cid-v3B5eVQXy2 .navbar .menu-logo {
    margin: auto;
    display: flex;
    align-items: center;
  }
  .cid-v3B5eVQXy2 .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-v3B5eVQXy2 .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-v3B5eVQXy2 .navbar-toggler {
    display: none;
  }
  .cid-v3B5eVQXy2 .navbar-collapse {
    justify-content: center;
  }
}
.cid-v3B5eVQXy2 .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-v3B5eVQXy2 .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
  position: relative;
  overflow: hidden;
  margin-right: 0;
}
.cid-v3B5eVQXy2 .btn-sm {
  padding: 13px 29px;
}
.cid-v3B5eVQXy2 .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-v3B5eVQXy2 .btn::after {
  background-color: #57468b;
  content: "";
  height: 150px;
  left: -75px;
  position: absolute;
  top: -60px;
  transform: rotate(35deg);
  transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  width: 40px;
  opacity: 0;
  outline: none;
  text-decoration: none;
}
.cid-v3B5eVQXy2 .btn:hover::after {
  left: 250px;
  opacity: 0.8;
}
.cid-v3B5eVQXy2 .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-v3B5eVQXy2 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3B5eVQXy2 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  align-self: center;
}
.cid-v3B5eVQXy2 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3B5eVQXy2 .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding: 25px 0;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-v3B5eVQXy2 .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-v3B5eVQXy2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v3B5eVQXy2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3B5eVQXy2 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-v3B5eVQXy2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-v3B5eVQXy2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v3B5eVQXy2 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3B5eVQXy2 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3B5eVQXy2 .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-v3B5eVQXy2 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  transition: font-size 0.25s;
}
.cid-v3B5eVQXy2 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3B5eVQXy2 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3B5eVQXy2 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3B5eVQXy2 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  margin-right: 0;
}
.cid-v3B5eVQXy2 button.navbar-toggler:focus {
  outline: none;
}
.cid-v3B5eVQXy2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #282828;
}
.cid-v3B5eVQXy2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v3B5eVQXy2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3B5eVQXy2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3B5eVQXy2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v3B5eVQXy2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3B5eVQXy2 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v3B5eVQXy2 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v3B5eVQXy2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3B5eVQXy2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v3B5eVQXy2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v3B5eVQXy2 .collapsed .btn {
  display: flex;
}
.cid-v3B5eVQXy2 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3B5eVQXy2 .collapsed .navbar-collapse.collapsing,
.cid-v3B5eVQXy2 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3B5eVQXy2 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3B5eVQXy2 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3B5eVQXy2 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3B5eVQXy2 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3B5eVQXy2 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3B5eVQXy2 .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}
.cid-v3B5eVQXy2 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3B5eVQXy2 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-v3B5eVQXy2 .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-v3B5eVQXy2 .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3B5eVQXy2 .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-v3B5eVQXy2 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
}
.cid-v3B5eVQXy2 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-v3B5eVQXy2 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3B5eVQXy2 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3B5eVQXy2 .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: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-v3B5eVQXy2 .collapsed .menu-bottom {
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-v3B5eVQXy2 .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
    padding-left: 20px !important;
  }
  .cid-v3B5eVQXy2 .dropdown-menu .dropdown-item {
    text-align: left;
    font-weight: 700;
  }
  .cid-v3B5eVQXy2 .menu-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-v3B5eVQXy2 .menu-bottom .menu-content-right {
    display: none;
  }
  .cid-v3B5eVQXy2 .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
    opacity: 0;
    transition: all 0.3s ease-in;
    position: absolute;
    top: 100%;
    bottom: auto;
    left: 0px;
    right: 0px;
    z-index: 999;
  }
  .cid-v3B5eVQXy2 .navbar-collapse .navbar-nav .nav-item {
    clear: both;
    text-align: left;
    padding: 10px 0;
  }
  .cid-v3B5eVQXy2 .navbar-collapse.collapsing,
  .cid-v3B5eVQXy2 .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3B5eVQXy2 .navbar-collapse.collapsing .navbar-nav,
  .cid-v3B5eVQXy2 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3B5eVQXy2 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3B5eVQXy2 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3B5eVQXy2 .navbar-collapse.collapsing .navbar-nav .nav-item .nav-link,
  .cid-v3B5eVQXy2 .navbar-collapse.show .navbar-nav .nav-item .nav-link {
    font-weight: 700;
  }
  .cid-v3B5eVQXy2 .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3B5eVQXy2 .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-v3B5eVQXy2 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3B5eVQXy2 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3B5eVQXy2 img {
    height: 3.8rem !important;
  }
  .cid-v3B5eVQXy2 .btn {
    display: flex;
  }
  .cid-v3B5eVQXy2 button.navbar-toggler {
    display: block;
    align-self: center;
  }
  .cid-v3B5eVQXy2 .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-v3B5eVQXy2 .navbar-toggleable-sm {
    flex-direction: column;
  }
  .cid-v3B5eVQXy2 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-v3B5eVQXy2 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3B5eVQXy2 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3B5eVQXy2 .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: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-v3B5eVQXy2 .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-v3B5eVQXy2 .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-v3B5eVQXy2 .navbar-toggler {
  position: relative;
}
.cid-v3B5eVQXy2 .dropdown-item.active,
.cid-v3B5eVQXy2 .dropdown-item:active {
  color: initial;
}
.cid-v3B5eVQXy2 .widget-title {
  color: #57468b;
}
.cid-v3B5eVQXy2 .widget-text {
  color: #57468b;
}
.cid-v3B5eVQXy2 .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
.cid-v3B5eVQXy2 .icons-menu .mbr-iconfont {
  font-size: 1rem;
  color: #432480;
  display: inline-flex;
  background-color: #eaebee;
  border-radius: 100%;
  transition: all 0.3s ease-in;
}
.cid-v3B5eVQXy2 .icons-menu .mbr-iconfont:before {
  padding: .75rem;
}
.cid-v3B5eVQXy2 .icons-menu .mbr-iconfont:hover {
  color: #ffffff;
  background-color: #432480;
  -webkit-animation-name: animation-pulse;
  animation-name: animation-pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  opacity: .9;
}
.cid-v3B5eVQXy2 .soc-item {
  margin: .5rem .3rem;
}
@media (max-width: 768px) {
  .cid-v3B5eVQXy2 .menu-content-top .icons-menu {
    padding-left: 0;
  }
  .cid-v3B5eVQXy2 .menu-content-top .icons-menu .soc-item .mbr-iconfont {
    font-size: 14px;
  }
  .cid-v3B5eVQXy2 .menu-content-top .icons-menu .soc-item .mbr-iconfont::before {
    padding: 0.44rem;
  }
  .cid-v3B5eVQXy2 .menu-content-top .right-wrap .info-widget {
    margin-left: 20px;
  }
  .cid-v3B5eVQXy2 .menu-content-top .right-wrap .info-widget:first-child {
    margin-left: 0;
  }
  .cid-v3B5eVQXy2 .menu-content-top .right-wrap .info-widget .widget-content {
    display: none;
  }
  .cid-v3B5eVQXy2 .menu-content-top .right-wrap .info-widget .widget-icon {
    font-size: 25px;
    padding-right: 0;
  }
  .cid-v3B5eVQXy2 .navbar-brand {
    margin-left: 0 !important;
  }
}
@media (max-width: 576px) {
  .cid-v3B5eVQXy2 .menu-content-top,
  .cid-v3B5eVQXy2 .menu-bottom {
    padding: 0 15px;
  }
  .cid-v3B5eVQXy2 button.navbar-toggler {
    align-self: center;
  }
}
@-webkit-keyframes phone-icon-animate {
  0%,
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    transform: rotate(20deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@keyframes phone-icon-animate {
  0%,
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    transform: rotate(20deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@-webkit-keyframes animation-pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
@keyframes animation-pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
.cid-v3B5eVQXy2 .widget-title,
.cid-v3B5eVQXy2 .widget-icon {
  color: #ffffff;
}
.cid-v3B5eWfzmd {
  padding-top: 225px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/img-20191209-wa0026-1168x876.jpeg");
}
.cid-v3B5eWfzmd H1 {
  text-align: left;
  color: #ff9800;
}
.cid-v3B5eWfzmd .mbr-text,
.cid-v3B5eWfzmd .mbr-section-btn {
  text-align: left;
}
.cid-v3B5eWrkT8 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v3B5eWrkT8 img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-v3B5eWrkT8 H1 {
  color: #57468b;
}
.cid-v3B5eWrkT8 .mbr-text,
.cid-v3B5eWrkT8 .mbr-section-btn {
  color: #716c80;
}
.cid-v3B5eWrkT8 H3 {
  color: #716c80;
}
.cid-v3B5eWrkT8 .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-v3B5eWrkT8 .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-v3B5eWrkT8 .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-v3B5eWrkT8 .link:hover {
  color: #432480 !important;
}
.cid-v3B5eWrkT8 .link:hover .link-ico {
  color: #432480 !important;
  padding-left: 10px;
}
.cid-v3B5eWrkT8 DIV {
  color: #57468b;
}
.cid-v3B5eWrkT8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3B5eWrkT8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3B5eWrkT8 .mbr-text,
.cid-v3B5eWrkT8 .media-content {
  color: #545454;
}
.cid-v3B5eWDjry {
  padding-top: 2rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-v3B5eWDjry .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3B5eWDjry .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-v3B5eWDjry .container {
    padding: 0 30px;
  }
}
.cid-v3B5eWDjry .row {
  justify-content: center;
}
.cid-v3B5eWDjry .title-wrapper {
  margin-bottom: 140px;
}
.cid-v3B5eWDjry .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-v3B5eWDjry .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v3B5eWDjry .card .card-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0 4px;
  padding: 45px 36px 66px;
  background-color: #ff9800;
  border-radius: 10px;
  overflow: visible;
}
@media (max-width: 992px) {
  .cid-v3B5eWDjry .card .card-wrapper {
    margin: 0 0 50px;
    padding: 45px 22px 66px;
  }
}
.cid-v3B5eWDjry .card .card-wrapper .best-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -3.4rem;
  left: 0;
  width: 100%;
  min-height: 54px;
  background-color: #ff6839;
  padding: 18px 8px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.cid-v3B5eWDjry .card .card-wrapper .best-wrap .best-wrapper {
  width: 100%;
}
.cid-v3B5eWDjry .card .card-wrapper .best-wrap .best-wrapper .mbr-best {
  margin-bottom: 0;
}
.cid-v3B5eWDjry .card .card-wrapper .card-content .mbr-card-title {
  margin: 25px 0;
}
.cid-v3B5eWDjry .card .card-wrapper .card-content .price-wrap .mbr-price {
  margin-bottom: 25px;
  position: relative;
  display: inline-flex;
}
.cid-v3B5eWDjry .card .card-wrapper .card-content .price-wrap .mbr-price span {
  position: absolute;
  font-size: 50%;
  top: .4rem;
  left: -2rem;
}
.cid-v3B5eWDjry .card .card-wrapper .card-content .mbr-desc {
  margin-bottom: 25px;
}
.cid-v3B5eWDjry .card .card-wrapper .card-content .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3B5eWDjry .card .card-wrapper .card-content .list .item-wrap {
  line-height: 1.625;
  margin-bottom: 10px;
}
.cid-v3B5eWDjry .card .card-wrapper .mbr-section-btn {
  margin-top: 18px;
}
.cid-v3B5eWDjry .mbr-section-title {
  color: #002047;
  text-align: center;
}
.cid-v3B5eWDjry .mbr-text {
  color: #93dce7;
  text-align: center;
}
.cid-v3B5eWDjry .mbr-best {
  color: #ffffff;
  text-align: center;
}
.cid-v3B5eWDjry .mbr-card-title {
  color: #000000;
}
.cid-v3B5eWDjry .mbr-price,
.cid-v3B5eWDjry .price-wrap {
  color: #002047;
  text-align: center;
}
.cid-v3B5eWDjry .mbr-desc {
  color: #000000;
  text-align: center;
}
.cid-v3B5eWDjry .list {
  color: #ffffff;
  text-align: center;
}
.cid-v3B5eWDjry .mbr-card-title,
.cid-v3B5eWDjry .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-v3B5eWYm4m {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #ff9800;
}
.cid-v3B5eWYm4m H1 {
  color: #ffffff;
}
.cid-v3B5eWYm4m .mbr-text,
.cid-v3B5eWYm4m .mbr-section-btn {
  color: #716c80;
}
.cid-v3B5eWYm4m .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3B5eWYm4m .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3B5eXcNS0 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-v3B5eXcNS0 H1 {
  color: #432480;
}
.cid-v3B5eXcNS0 .mbr-text,
.cid-v3B5eXcNS0 .mbr-section-btn {
  color: #363636;
}
.cid-v3B5eXqtll {
  padding-top: 45px;
  padding-bottom: 75px;
  background-color: #f2f2f4;
}
.cid-v3B5eXqtll .mbr-text {
  color: #767676;
}
.cid-v3B5eXqtll img {
  width: 100%;
}
.cid-v3B5eXqtll .card-img {
  margin-bottom: 0rem;
}
.cid-v3B5eXqtll .card-wrapper {
  background: #ffffff;
  border-radius: 3px;
  overflow: hidden;
}
.cid-v3B5eXqtll .card-box {
  padding: 2rem 1rem;
}
.cid-v3B5eXqtll p {
  font-weight: 400;
}
.cid-v3B5eXqtll .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-v3B5eXqtll .card {
    margin-bottom: 2rem;
  }
}
.cid-v3B5eXqtll .mbr-text,
.cid-v3B5eXqtll .mbr-section-btn {
  text-align: center;
}
.cid-v3B5eXqtll .card-title,
.cid-v3B5eXqtll .card-img {
  text-align: center;
  color: #432480;
}
.cid-v3B5eXMXLE {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v3B5eXMXLE H1 {
  color: #363636;
}
.cid-v3B5eXMXLE .mbr-text,
.cid-v3B5eXMXLE .mbr-section-btn {
  color: #363636;
}
.cid-v3B5eY1W2i {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-v3B5eY1W2i H1 {
  color: #ff9800;
  text-align: center;
}
.cid-v3B5eY1W2i .mbr-text,
.cid-v3B5eY1W2i .mbr-section-btn {
  color: #716c80;
}
.cid-v3B5eY1W2i H3 {
  color: #716c80;
}
.cid-v3B5eYiOQn {
  padding-top: 105px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/87-2000x1335.jpg");
  background-size: cover;
}
.cid-v3B5eYiOQn .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-v3B5eYiOQn h4 {
  text-align: center;
}
.cid-v3B5eYiOQn p {
  text-align: center;
}
.cid-v3B5eYiOQn .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-v3B5eYiOQn .mbr-iconfont {
  transition: all 0.3s;
  color: #ff9800 !important;
  font-size: 3rem !important;
}
.cid-v3B5eYiOQn .card {
  transition: all 0.3s;
  padding: 2rem!important;
}
.cid-v3B5eYiOQn .card:hover .card-title {
  color: #f2f6ff !important;
  cursor: pointer;
}
.cid-v3B5eYiOQn .card-title {
  transition: color 0.3s;
}
.cid-v3B5eYiOQn .card-title,
.cid-v3B5eYiOQn .card-img {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-v3B5eYiOQn .card {
    padding: 2rem 0rem 0rem 0rem!important;
  }
}
.cid-v3B5eYJv86 {
  padding-top: 105px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-v3B5eYJv86 H1 {
  color: #363636;
}
.cid-v3B5eYJv86 .mbr-text,
.cid-v3B5eYJv86 .mbr-section-btn {
  color: #716c80;
}
.cid-v3B5eYJv86 H3 {
  color: #716c80;
}
.cid-v3B5eYYbW8 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/bg2-2000x1335.jpeg");
}
.cid-v3B5eYYbW8 h5,
.cid-v3B5eYYbW8 h4,
.cid-v3B5eYYbW8 p {
  margin-bottom: 0;
}
.cid-v3B5eYYbW8 p {
  color: #767676;
}
.cid-v3B5eYYbW8 .card-img {
  padding: 0;
}
.cid-v3B5eYYbW8 .mbr-section-btn {
  margin: 0;
  margin-top: 1.2rem;
  border-top: 1px solid #cccccc;
}
.cid-v3B5eYYbW8 .mbr-section-btn .btn {
  margin-top: 1.2rem !important;
}
.cid-v3B5eYYbW8 .card-wrapper {
  transition: all 0.3s;
  background-color: #ffffff;
}
.cid-v3B5eYYbW8 .card-wrapper:hover {
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-v3B5eYYbW8 .card-box {
  padding: 2rem;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-v3B5eYYbW8 .card-box {
    padding: 2rem 0 0;
  }
  .cid-v3B5eYYbW8 .card-wrapper {
    display: block !important;
  }
}
.cid-v3B5eYYbW8 .card-wrapper {
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
}
.cid-v3B5eYYbW8 .card-title,
.cid-v3B5eYYbW8 .main-title {
  color: #57468b;
}
.cid-v3B5eYYbW8 .card-title {
  color: #363636;
}
.cid-v3B5eZo6Yt {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/04-2000x1335.jpeg");
}
.cid-v3B5eZo6Yt H1 {
  color: #363636;
}
.cid-v3B5eZo6Yt .mbr-text,
.cid-v3B5eZo6Yt .mbr-section-btn {
  color: #716c80;
}
.cid-v3B5eZo6Yt img {
  width: 80%;
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
@media (max-width: 992px) {
  .cid-v3B5eZo6Yt img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.cid-v3B5eZHHZW {
  padding-top: 225px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/03-1-2000x1335.jpeg");
}
.cid-v3B5eZHHZW H1 {
  color: #432480;
  text-align: left;
}
.cid-v3B5eZHHZW .mbr-text,
.cid-v3B5eZHHZW .mbr-section-btn {
  color: #363636;
  text-align: left;
}
.cid-v3B5eZYvGZ {
  padding-top: 120px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v3B5eZYvGZ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v3B5eZYvGZ .btn {
  font-size: 16px;
  padding: 0.5rem 2rem;
}
.cid-v3B5eZYvGZ .btn-primary-outline {
  border: none;
  color: gray;
}
.cid-v3B5eZYvGZ .btn-primary-outline:active {
  color: gray;
}
.cid-v3B5eZYvGZ .btn-primary-outline:hover {
  color: white;
}
.cid-v3B5eZYvGZ .mbr-gallery-title:before {
  border-radius: 0px 0px 10px 10px;
}
.cid-v3B5eZYvGZ div {
  overflow: hidden;
}
.cid-v3B5eZYvGZ .btn-primary-outline.active {
  color: white;
}
.cid-v3B5eZYvGZ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v3B5eZYvGZ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v3B5eZYvGZ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v3B5eZYvGZ .mbr-gallery-item {
  overflow: hidden;
}
.cid-v3B5eZYvGZ .mbr-gallery-item img {
  transition: all 0.3s;
  border-radius: 10px;
}
.cid-v3B5eZYvGZ .mbr-gallery-filter {
  padding-top: 20px;
  padding-bottom: 20px;
}
.cid-v3B5eZYvGZ .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-v3B5eZYvGZ .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v3B5eZYvGZ .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-v3B5eZYvGZ .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v3B5eZYvGZ .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-v3B5f0uScy {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-v3B5f0uScy .mbr-text {
  color: #716c80;
}
.cid-v3B5f0uScy .card-wrapper {
  display: flex;
  flex-direction: row;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  transition: all 0.3s;
  padding: 1rem 1rem !important;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-v3B5f0uScy .card-wrapper:hover {
  transform: translateY(-1rem);
}
.cid-v3B5f0uScy .card-wrapper:hover .ico2 {
  color: #432480 !important;
}
.cid-v3B5f0uScy .ico2 {
  color: #57468b !important;
  transition: all 0.6s;
}
.cid-v3B5f0uScy .text-info:hover {
  color: inherit!important;
}
.cid-v3B5f0uScy .card-box {
  padding: 0rem 1rem;
}
.cid-v3B5f0uScy .ico1 {
  font-size: 3rem !important;
}
.cid-v3B5f0uScy h3,
.cid-v3B5f0uScy h4 {
  padding: 0;
  margin: 0;
}
.cid-v3B5f0uScy .card-title,
.cid-v3B5f0uScy .card-img {
  color: #57468b;
}
.cid-v3B5f0uScy .card-title {
  color: #232323;
}
.cid-v4ajMaOBTd {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-v4ajMaOBTd h4 {
  margin-bottom: 0;
}
.cid-v4ajMaOBTd p {
  color: #767676;
}
.cid-v4ajMaOBTd .card:hover img {
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-v4ajMaOBTd .btn-info-outline {
  border: none;
  color: #57468b !important;
  padding: 0;
  margin: 0 0.25rem!important;
}
.cid-v4ajMaOBTd .btn-info-outline span {
  order: 2;
  font-size: 1.1rem;
  padding-top: 3px;
  transition: padding 0.3s!important;
}
.cid-v4ajMaOBTd .btn-info-outline:hover span {
  padding-left: 10px;
}
.cid-v4ajMaOBTd .btn-info-outline:hover {
  background-color: transparent!important;
  color: #432480 !important;
  box-shadow: none!important;
}
.cid-v4ajMaOBTd .btn-info-outline:active,
.cid-v4ajMaOBTd .btn-info-outline:focus {
  background-color: transparent!important;
  box-shadow: none!important;
}
.cid-v4ajMaOBTd .card-box {
  padding-top: 2rem;
}
.cid-v4ajMaOBTd .card-wrapper {
  height: 100%;
}
.cid-v4ajMaOBTd .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-v4ajMaOBTd img {
  transition: all 0.3s;
  border-radius: 8px;
}
.cid-v4ajMaOBTd .card-title {
  color: #57468b;
}
.cid-v4ajMaOBTd .main-title {
  color: #57468b;
}
.cid-v4ajMaOBTd DIV {
  color: #57468b;
}
.cid-v4ajMaOBTd .card-img {
  width: auto;
}
.cid-v4ajMaOBTd .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4ajMaOBTd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4ajMwqpcz {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-v4ajMwqpcz h4 {
  margin-bottom: 0;
}
.cid-v4ajMwqpcz p {
  color: #767676;
}
.cid-v4ajMwqpcz .card:hover img {
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-v4ajMwqpcz .btn-info-outline {
  border: none;
  color: #57468b !important;
  padding: 0;
  margin: 0 0.25rem!important;
}
.cid-v4ajMwqpcz .btn-info-outline span {
  order: 2;
  font-size: 1.1rem;
  padding-top: 3px;
  transition: padding 0.3s!important;
}
.cid-v4ajMwqpcz .btn-info-outline:hover span {
  padding-left: 10px;
}
.cid-v4ajMwqpcz .btn-info-outline:hover {
  background-color: transparent!important;
  color: #432480 !important;
  box-shadow: none!important;
}
.cid-v4ajMwqpcz .btn-info-outline:active,
.cid-v4ajMwqpcz .btn-info-outline:focus {
  background-color: transparent!important;
  box-shadow: none!important;
}
.cid-v4ajMwqpcz .card-box {
  padding-top: 2rem;
}
.cid-v4ajMwqpcz .card-wrapper {
  height: 100%;
}
.cid-v4ajMwqpcz .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-v4ajMwqpcz img {
  transition: all 0.3s;
  border-radius: 8px;
}
.cid-v4ajMwqpcz .card-title {
  color: #57468b;
}
.cid-v4ajMwqpcz .main-title {
  color: #57468b;
}
.cid-v4ajMwqpcz DIV {
  color: #57468b;
}
.cid-v4ajMwqpcz .card-img {
  width: auto;
}
.cid-v4ajMwqpcz .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4ajMwqpcz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4ajMNMhtm {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f2f6ff;
}
.cid-v4ajMNMhtm H1 {
  color: #57468b;
}
.cid-v4ajMNMhtm .mbr-text,
.cid-v4ajMNMhtm .mbr-section-btn {
  color: #716c80;
}
.cid-v4ajMNMhtm .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4ajMNMhtm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3B5f0Wk13 {
  padding-top: 180px;
  padding-bottom: 75px;
  background-color: #432480;
  position: relative;
  overflow: hidden;
}
.cid-v3B5f0Wk13 .container {
  max-width: 1400px;
}
.cid-v3B5f0Wk13 .card-img2 span {
  padding-top: 6px;
}
.cid-v3B5f0Wk13 .soc-item a {
  padding-top: 5px;
}
.cid-v3B5f0Wk13 .btn {
  padding: 0.4rem 0.6rem!important;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-v3B5f0Wk13 .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-v3B5f0Wk13 .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-v3B5f0Wk13 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-v3B5f0Wk13 svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-v3B5f0Wk13 #e2_shape {
  fill: #ffffff !important;
}
.cid-v3B5f0Wk13 .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-v3B5f0Wk13 .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-v3B5f0Wk13 .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #ff9800;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v3B5f0Wk13 .card-img {
  width: auto;
}
.cid-v3B5f0Wk13 .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-v3B5f0Wk13 .soc-item span {
  font-size: 1.4rem;
}
.cid-v3B5f0Wk13 .soc-item:hover span {
  color: #432480 !important;
}
.cid-v3B5f0Wk13 .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-v3B5f0Wk13 .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-v3B5f0Wk13 .media-wrap {
  margin-bottom: 1rem;
}
.cid-v3B5f0Wk13 .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-v3B5f0Wk13 img {
  height: 4rem;
}
@media (max-width: 576px) {
  .cid-v3B5f0Wk13 .item {
    justify-content: center;
  }
  .cid-v3B5f0Wk13 .quote::after {
    left: 60px;
  }
}
.cid-v3B5f0Wk13 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-v3B5f0Wk13 .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v3B5f0Wk13 .text1 {
  color: #ffffff;
}
.cid-v3B5f0Wk13 .item-title {
  color: #ffffff;
}
.cid-v3B5f0Wk13 H5 {
  color: #ff9800;
}
.cid-v3B5f0Wk13 .theme {
  color: #ffffff;
}
.cid-v3B5f0Wk13 .copyright > p {
  color: #ff3366;
}
.cid-v3B5f0Wk13 .text2 {
  color: #ffffff;
}
.cid-v3B5f1pBwL {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-v3B5f1pBwL .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-v3B6E6QwYT .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-v3B6E6QwYT .navbar-fixed-top {
  padding-top: 0;
}
.cid-v3B6E6QwYT .navbar-collapse {
  flex-basis: auto;
  transition: all 0.3s ease-in;
}
.cid-v3B6E6QwYT .navbar-collapse.show {
  position: absolute;
  opacity: 1;
  visibility: visible;
  top: 100%;
  z-index: 999;
  background-color: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 15px 20px;
  bottom: auto;
  left: 0px;
  right: 0px;
}
.cid-v3B6E6QwYT .navbar-collapse.show .navbar-nav .nav-item {
  text-align: left;
  padding: 10px 0;
}
.cid-v3B6E6QwYT .navbar-buttons {
  flex-wrap: wrap;
}
.cid-v3B6E6QwYT .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3B6E6QwYT .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-v3B6E6QwYT .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  padding-right: 2rem;
}
.cid-v3B6E6QwYT .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3B6E6QwYT .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3B6E6QwYT .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3B6E6QwYT .menu-content-top {
  background: #432480;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  width: 100%;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-v3B6E6QwYT .menu-content-top .right-wrap .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-v3B6E6QwYT .dropdown-item {
  font-weight: 400;
  margin: 0 !important;
  padding: 0 40px !important;
  line-height: 2.6;
}
.cid-v3B6E6QwYT .dropdown-item,
.cid-v3B6E6QwYT .nav-link,
.cid-v3B6E6QwYT .brand-name {
  font-style: normal;
}
.cid-v3B6E6QwYT .dropdown-item:hover,
.cid-v3B6E6QwYT .nav-link:hover,
.cid-v3B6E6QwYT .brand-name:hover {
  color: #ff9800 !important;
}
.cid-v3B6E6QwYT .dropdown-menu {
  background-color: #ffffff;
}
.cid-v3B6E6QwYT .dropdown-item:active {
  background-color: #ffffff;
}
.cid-v3B6E6QwYT .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
  justify-content: center;
}
.cid-v3B6E6QwYT .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-v3B6E6QwYT .nav-item {
  position: relative;
}
.cid-v3B6E6QwYT .nav-item span {
  padding-right: 0.4em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-v3B6E6QwYT .nav-item .nav-link {
  transition: all 0.3s ease-in-out 0ms;
}
.cid-v3B6E6QwYT .nav-item .nav-link:focus {
  outline: none;
}
@media (min-width: 991px) {
  .cid-v3B6E6QwYT .nav-link {
    line-height: 6.13;
  }
  .cid-v3B6E6QwYT .navbar-nav > li > a:before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 0;
    margin: auto;
    opacity: 0;
    border-top: 2px solid #279e64;
    transition: all 0.3s ease-in-out 0ms;
  }
  .cid-v3B6E6QwYT .navbar-nav > li:hover > a:before {
    opacity: 1;
    width: 100%;
  }
}
.cid-v3B6E6QwYT .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v3B6E6QwYT .content-text {
  margin-bottom: 0;
}
.cid-v3B6E6QwYT .navbar-nav {
  position: relative;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-v3B6E6QwYT .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #432480;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-v3B6E6QwYT .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-v3B6E6QwYT .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-v3B6E6QwYT .navbar-nav .nav-item .link {
  margin: 0 20px !important;
}
.cid-v3B6E6QwYT .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v3B6E6QwYT .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-v3B6E6QwYT .content-right-side {
  text-align: center;
}
.cid-v3B6E6QwYT .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-v3B6E6QwYT .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-v3B6E6QwYT .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
  color: #5580ff;
}
.cid-v3B6E6QwYT .widget-icon.mobi-mbri-phone {
  -webkit-animation: phone-icon-animate 1s ease-in-out infinite;
  animation: phone-icon-animate 1s ease-in-out infinite;
}
.cid-v3B6E6QwYT .info-widget {
  margin-left: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v3B6E6QwYT .info-widget:first-child {
  margin-left: 0;
}
.cid-v3B6E6QwYT .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-v3B6E6QwYT .widget-content .widget-title {
  margin-bottom: 3px;
  line-height: 1.7;
}
.cid-v3B6E6QwYT .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-v3B6E6QwYT .navbar .menu-content-top {
  display: flex;
  height: 90px;
  border-bottom: 1px solid #d9dade;
}
@media (min-width: 992px) {
  .cid-v3B6E6QwYT .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
  }
  .cid-v3B6E6QwYT .navbar {
    display: block;
    padding: 0;
  }
  .cid-v3B6E6QwYT .navbar .menu-logo {
    margin: auto;
    display: flex;
    align-items: center;
  }
  .cid-v3B6E6QwYT .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-v3B6E6QwYT .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-v3B6E6QwYT .navbar-toggler {
    display: none;
  }
  .cid-v3B6E6QwYT .navbar-collapse {
    justify-content: center;
  }
}
.cid-v3B6E6QwYT .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-v3B6E6QwYT .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
  position: relative;
  overflow: hidden;
  margin-right: 0;
}
.cid-v3B6E6QwYT .btn-sm {
  padding: 13px 29px;
}
.cid-v3B6E6QwYT .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-v3B6E6QwYT .btn::after {
  background-color: #57468b;
  content: "";
  height: 150px;
  left: -75px;
  position: absolute;
  top: -60px;
  transform: rotate(35deg);
  transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  width: 40px;
  opacity: 0;
  outline: none;
  text-decoration: none;
}
.cid-v3B6E6QwYT .btn:hover::after {
  left: 250px;
  opacity: 0.8;
}
.cid-v3B6E6QwYT .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-v3B6E6QwYT .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3B6E6QwYT .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  align-self: center;
}
.cid-v3B6E6QwYT .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3B6E6QwYT .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding: 25px 0;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-v3B6E6QwYT .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-v3B6E6QwYT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v3B6E6QwYT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3B6E6QwYT .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-v3B6E6QwYT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-v3B6E6QwYT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v3B6E6QwYT .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3B6E6QwYT .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3B6E6QwYT .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-v3B6E6QwYT .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  transition: font-size 0.25s;
}
.cid-v3B6E6QwYT .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3B6E6QwYT .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3B6E6QwYT .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3B6E6QwYT button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  margin-right: 0;
}
.cid-v3B6E6QwYT button.navbar-toggler:focus {
  outline: none;
}
.cid-v3B6E6QwYT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #282828;
}
.cid-v3B6E6QwYT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v3B6E6QwYT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3B6E6QwYT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3B6E6QwYT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v3B6E6QwYT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3B6E6QwYT nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v3B6E6QwYT nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v3B6E6QwYT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3B6E6QwYT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v3B6E6QwYT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v3B6E6QwYT .collapsed .btn {
  display: flex;
}
.cid-v3B6E6QwYT .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3B6E6QwYT .collapsed .navbar-collapse.collapsing,
.cid-v3B6E6QwYT .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3B6E6QwYT .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3B6E6QwYT .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3B6E6QwYT .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3B6E6QwYT .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3B6E6QwYT .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3B6E6QwYT .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}
.cid-v3B6E6QwYT .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3B6E6QwYT .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-v3B6E6QwYT .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-v3B6E6QwYT .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3B6E6QwYT .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-v3B6E6QwYT .collapsed .navbar-toggleable-sm {
  flex-direction: column;
}
.cid-v3B6E6QwYT .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-v3B6E6QwYT .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3B6E6QwYT .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3B6E6QwYT .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: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-v3B6E6QwYT .collapsed .menu-bottom {
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-v3B6E6QwYT .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
    padding-left: 20px !important;
  }
  .cid-v3B6E6QwYT .dropdown-menu .dropdown-item {
    text-align: left;
    font-weight: 700;
  }
  .cid-v3B6E6QwYT .menu-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-v3B6E6QwYT .menu-bottom .menu-content-right {
    display: none;
  }
  .cid-v3B6E6QwYT .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
    opacity: 0;
    transition: all 0.3s ease-in;
    position: absolute;
    top: 100%;
    bottom: auto;
    left: 0px;
    right: 0px;
    z-index: 999;
  }
  .cid-v3B6E6QwYT .navbar-collapse .navbar-nav .nav-item {
    clear: both;
    text-align: left;
    padding: 10px 0;
  }
  .cid-v3B6E6QwYT .navbar-collapse.collapsing,
  .cid-v3B6E6QwYT .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3B6E6QwYT .navbar-collapse.collapsing .navbar-nav,
  .cid-v3B6E6QwYT .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3B6E6QwYT .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3B6E6QwYT .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3B6E6QwYT .navbar-collapse.collapsing .navbar-nav .nav-item .nav-link,
  .cid-v3B6E6QwYT .navbar-collapse.show .navbar-nav .nav-item .nav-link {
    font-weight: 700;
  }
  .cid-v3B6E6QwYT .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3B6E6QwYT .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-v3B6E6QwYT .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3B6E6QwYT .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3B6E6QwYT img {
    height: 3.8rem !important;
  }
  .cid-v3B6E6QwYT .btn {
    display: flex;
  }
  .cid-v3B6E6QwYT button.navbar-toggler {
    display: block;
    align-self: center;
  }
  .cid-v3B6E6QwYT .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-v3B6E6QwYT .navbar-toggleable-sm {
    flex-direction: column;
  }
  .cid-v3B6E6QwYT .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-v3B6E6QwYT .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3B6E6QwYT .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3B6E6QwYT .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: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-v3B6E6QwYT .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-v3B6E6QwYT .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-v3B6E6QwYT .navbar-toggler {
  position: relative;
}
.cid-v3B6E6QwYT .dropdown-item.active,
.cid-v3B6E6QwYT .dropdown-item:active {
  color: initial;
}
.cid-v3B6E6QwYT .widget-title {
  color: #57468b;
}
.cid-v3B6E6QwYT .widget-text {
  color: #57468b;
}
.cid-v3B6E6QwYT .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
.cid-v3B6E6QwYT .icons-menu .mbr-iconfont {
  font-size: 1rem;
  color: #432480;
  display: inline-flex;
  background-color: #eaebee;
  border-radius: 100%;
  transition: all 0.3s ease-in;
}
.cid-v3B6E6QwYT .icons-menu .mbr-iconfont:before {
  padding: .75rem;
}
.cid-v3B6E6QwYT .icons-menu .mbr-iconfont:hover {
  color: #ffffff;
  background-color: #432480;
  -webkit-animation-name: animation-pulse;
  animation-name: animation-pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  opacity: .9;
}
.cid-v3B6E6QwYT .soc-item {
  margin: .5rem .3rem;
}
@media (max-width: 768px) {
  .cid-v3B6E6QwYT .menu-content-top .icons-menu {
    padding-left: 0;
  }
  .cid-v3B6E6QwYT .menu-content-top .icons-menu .soc-item .mbr-iconfont {
    font-size: 14px;
  }
  .cid-v3B6E6QwYT .menu-content-top .icons-menu .soc-item .mbr-iconfont::before {
    padding: 0.44rem;
  }
  .cid-v3B6E6QwYT .menu-content-top .right-wrap .info-widget {
    margin-left: 20px;
  }
  .cid-v3B6E6QwYT .menu-content-top .right-wrap .info-widget:first-child {
    margin-left: 0;
  }
  .cid-v3B6E6QwYT .menu-content-top .right-wrap .info-widget .widget-content {
    display: none;
  }
  .cid-v3B6E6QwYT .menu-content-top .right-wrap .info-widget .widget-icon {
    font-size: 25px;
    padding-right: 0;
  }
  .cid-v3B6E6QwYT .navbar-brand {
    margin-left: 0 !important;
  }
}
@media (max-width: 576px) {
  .cid-v3B6E6QwYT .menu-content-top,
  .cid-v3B6E6QwYT .menu-bottom {
    padding: 0 15px;
  }
  .cid-v3B6E6QwYT button.navbar-toggler {
    align-self: center;
  }
}
@-webkit-keyframes phone-icon-animate {
  0%,
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    transform: rotate(20deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@keyframes phone-icon-animate {
  0%,
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    transform: rotate(20deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@-webkit-keyframes animation-pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
@keyframes animation-pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
.cid-v3B6E6QwYT .widget-title,
.cid-v3B6E6QwYT .widget-icon {
  color: #ffffff;
}
.cid-v3B6E7knYd {
  padding-top: 225px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/img-20191209-wa0026-1168x876.jpeg");
}
.cid-v3B6E7knYd H1 {
  text-align: left;
  color: #ff9800;
}
.cid-v3B6E7knYd .mbr-text,
.cid-v3B6E7knYd .mbr-section-btn {
  text-align: left;
}
.cid-v3B6E7zsrl {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v3B6E7zsrl img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-v3B6E7zsrl H1 {
  color: #57468b;
}
.cid-v3B6E7zsrl .mbr-text,
.cid-v3B6E7zsrl .mbr-section-btn {
  color: #716c80;
}
.cid-v3B6E7zsrl H3 {
  color: #716c80;
}
.cid-v3B6E7zsrl .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-v3B6E7zsrl .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-v3B6E7zsrl .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-v3B6E7zsrl .link:hover {
  color: #432480 !important;
}
.cid-v3B6E7zsrl .link:hover .link-ico {
  color: #432480 !important;
  padding-left: 10px;
}
.cid-v3B6E7zsrl DIV {
  color: #57468b;
}
.cid-v3B6E7zsrl .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3B6E7zsrl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3B6E7zsrl .mbr-text,
.cid-v3B6E7zsrl .media-content {
  color: #545454;
}
.cid-v3B6E7OVeM {
  padding-top: 2rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-v3B6E7OVeM .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3B6E7OVeM .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-v3B6E7OVeM .container {
    padding: 0 30px;
  }
}
.cid-v3B6E7OVeM .row {
  justify-content: center;
}
.cid-v3B6E7OVeM .title-wrapper {
  margin-bottom: 140px;
}
.cid-v3B6E7OVeM .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-v3B6E7OVeM .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v3B6E7OVeM .card .card-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0 4px;
  padding: 45px 36px 66px;
  background-color: #ff9800;
  border-radius: 10px;
  overflow: visible;
}
@media (max-width: 992px) {
  .cid-v3B6E7OVeM .card .card-wrapper {
    margin: 0 0 50px;
    padding: 45px 22px 66px;
  }
}
.cid-v3B6E7OVeM .card .card-wrapper .best-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -3.4rem;
  left: 0;
  width: 100%;
  min-height: 54px;
  background-color: #ff6839;
  padding: 18px 8px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.cid-v3B6E7OVeM .card .card-wrapper .best-wrap .best-wrapper {
  width: 100%;
}
.cid-v3B6E7OVeM .card .card-wrapper .best-wrap .best-wrapper .mbr-best {
  margin-bottom: 0;
}
.cid-v3B6E7OVeM .card .card-wrapper .card-content .mbr-card-title {
  margin: 25px 0;
}
.cid-v3B6E7OVeM .card .card-wrapper .card-content .price-wrap .mbr-price {
  margin-bottom: 25px;
  position: relative;
  display: inline-flex;
}
.cid-v3B6E7OVeM .card .card-wrapper .card-content .price-wrap .mbr-price span {
  position: absolute;
  font-size: 50%;
  top: .4rem;
  left: -2rem;
}
.cid-v3B6E7OVeM .card .card-wrapper .card-content .mbr-desc {
  margin-bottom: 25px;
}
.cid-v3B6E7OVeM .card .card-wrapper .card-content .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3B6E7OVeM .card .card-wrapper .card-content .list .item-wrap {
  line-height: 1.625;
  margin-bottom: 10px;
}
.cid-v3B6E7OVeM .card .card-wrapper .mbr-section-btn {
  margin-top: 18px;
}
.cid-v3B6E7OVeM .mbr-section-title {
  color: #002047;
  text-align: center;
}
.cid-v3B6E7OVeM .mbr-text {
  color: #93dce7;
  text-align: center;
}
.cid-v3B6E7OVeM .mbr-best {
  color: #ffffff;
  text-align: center;
}
.cid-v3B6E7OVeM .mbr-card-title {
  color: #000000;
}
.cid-v3B6E7OVeM .mbr-price,
.cid-v3B6E7OVeM .price-wrap {
  color: #002047;
  text-align: center;
}
.cid-v3B6E7OVeM .mbr-desc {
  color: #000000;
  text-align: center;
}
.cid-v3B6E7OVeM .list {
  color: #ffffff;
  text-align: center;
}
.cid-v3B6E7OVeM .mbr-card-title,
.cid-v3B6E7OVeM .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-v3B6E89iHQ {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #ff9800;
}
.cid-v3B6E89iHQ H1 {
  color: #ffffff;
}
.cid-v3B6E89iHQ .mbr-text,
.cid-v3B6E89iHQ .mbr-section-btn {
  color: #716c80;
}
.cid-v3B6E89iHQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3B6E89iHQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3B6E8pfke {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-v3B6E8pfke H1 {
  color: #432480;
}
.cid-v3B6E8pfke .mbr-text,
.cid-v3B6E8pfke .mbr-section-btn {
  color: #363636;
}
.cid-v3B6E8D39Y {
  padding-top: 45px;
  padding-bottom: 75px;
  background-color: #f2f2f4;
}
.cid-v3B6E8D39Y .mbr-text {
  color: #767676;
}
.cid-v3B6E8D39Y img {
  width: 100%;
}
.cid-v3B6E8D39Y .card-img {
  margin-bottom: 0rem;
}
.cid-v3B6E8D39Y .card-wrapper {
  background: #ffffff;
  border-radius: 3px;
  overflow: hidden;
}
.cid-v3B6E8D39Y .card-box {
  padding: 2rem 1rem;
}
.cid-v3B6E8D39Y p {
  font-weight: 400;
}
.cid-v3B6E8D39Y .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-v3B6E8D39Y .card {
    margin-bottom: 2rem;
  }
}
.cid-v3B6E8D39Y .mbr-text,
.cid-v3B6E8D39Y .mbr-section-btn {
  text-align: center;
}
.cid-v3B6E8D39Y .card-title,
.cid-v3B6E8D39Y .card-img {
  text-align: center;
  color: #432480;
}
.cid-v3B6E96Ce8 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v3B6E96Ce8 H1 {
  color: #363636;
}
.cid-v3B6E96Ce8 .mbr-text,
.cid-v3B6E96Ce8 .mbr-section-btn {
  color: #363636;
}
.cid-v3B6E9lR63 {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-v3B6E9lR63 H1 {
  color: #ff9800;
  text-align: center;
}
.cid-v3B6E9lR63 .mbr-text,
.cid-v3B6E9lR63 .mbr-section-btn {
  color: #716c80;
}
.cid-v3B6E9lR63 H3 {
  color: #716c80;
}
.cid-v3B6E9BLsQ {
  padding-top: 105px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/87-2000x1335.jpg");
  background-size: cover;
}
.cid-v3B6E9BLsQ .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-v3B6E9BLsQ h4 {
  text-align: center;
}
.cid-v3B6E9BLsQ p {
  text-align: center;
}
.cid-v3B6E9BLsQ .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-v3B6E9BLsQ .mbr-iconfont {
  transition: all 0.3s;
  color: #ff9800 !important;
  font-size: 3rem !important;
}
.cid-v3B6E9BLsQ .card {
  transition: all 0.3s;
  padding: 2rem!important;
}
.cid-v3B6E9BLsQ .card:hover .card-title {
  color: #f2f6ff !important;
  cursor: pointer;
}
.cid-v3B6E9BLsQ .card-title {
  transition: color 0.3s;
}
.cid-v3B6E9BLsQ .card-title,
.cid-v3B6E9BLsQ .card-img {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-v3B6E9BLsQ .card {
    padding: 2rem 0rem 0rem 0rem!important;
  }
}
.cid-v3B6Ea7qlf {
  padding-top: 105px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-v3B6Ea7qlf H1 {
  color: #363636;
}
.cid-v3B6Ea7qlf .mbr-text,
.cid-v3B6Ea7qlf .mbr-section-btn {
  color: #716c80;
}
.cid-v3B6Ea7qlf H3 {
  color: #716c80;
}
.cid-v3B6Eaozfe {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/bg2-2000x1335.jpeg");
}
.cid-v3B6Eaozfe h5,
.cid-v3B6Eaozfe h4,
.cid-v3B6Eaozfe p {
  margin-bottom: 0;
}
.cid-v3B6Eaozfe p {
  color: #767676;
}
.cid-v3B6Eaozfe .card-img {
  padding: 0;
}
.cid-v3B6Eaozfe .mbr-section-btn {
  margin: 0;
  margin-top: 1.2rem;
  border-top: 1px solid #cccccc;
}
.cid-v3B6Eaozfe .mbr-section-btn .btn {
  margin-top: 1.2rem !important;
}
.cid-v3B6Eaozfe .card-wrapper {
  transition: all 0.3s;
  background-color: #ffffff;
}
.cid-v3B6Eaozfe .card-wrapper:hover {
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-v3B6Eaozfe .card-box {
  padding: 2rem;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-v3B6Eaozfe .card-box {
    padding: 2rem 0 0;
  }
  .cid-v3B6Eaozfe .card-wrapper {
    display: block !important;
  }
}
.cid-v3B6Eaozfe .card-wrapper {
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
}
.cid-v3B6Eaozfe .card-title,
.cid-v3B6Eaozfe .main-title {
  color: #57468b;
}
.cid-v3B6Eaozfe .card-title {
  color: #363636;
}
.cid-v3B6EaQUnK {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/04-2000x1335.jpeg");
}
.cid-v3B6EaQUnK H1 {
  color: #363636;
}
.cid-v3B6EaQUnK .mbr-text,
.cid-v3B6EaQUnK .mbr-section-btn {
  color: #716c80;
}
.cid-v3B6EaQUnK img {
  width: 80%;
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
@media (max-width: 992px) {
  .cid-v3B6EaQUnK img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.cid-v3B6Eb75No {
  padding-top: 225px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/03-1-2000x1335.jpeg");
}
.cid-v3B6Eb75No H1 {
  color: #432480;
  text-align: left;
}
.cid-v3B6Eb75No .mbr-text,
.cid-v3B6Eb75No .mbr-section-btn {
  color: #363636;
  text-align: left;
}
.cid-v3B6EbpSdh {
  padding-top: 120px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v3B6EbpSdh .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v3B6EbpSdh .btn {
  font-size: 16px;
  padding: 0.5rem 2rem;
}
.cid-v3B6EbpSdh .btn-primary-outline {
  border: none;
  color: gray;
}
.cid-v3B6EbpSdh .btn-primary-outline:active {
  color: gray;
}
.cid-v3B6EbpSdh .btn-primary-outline:hover {
  color: white;
}
.cid-v3B6EbpSdh .mbr-gallery-title:before {
  border-radius: 0px 0px 10px 10px;
}
.cid-v3B6EbpSdh div {
  overflow: hidden;
}
.cid-v3B6EbpSdh .btn-primary-outline.active {
  color: white;
}
.cid-v3B6EbpSdh .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v3B6EbpSdh .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v3B6EbpSdh .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v3B6EbpSdh .mbr-gallery-item {
  overflow: hidden;
}
.cid-v3B6EbpSdh .mbr-gallery-item img {
  transition: all 0.3s;
  border-radius: 10px;
}
.cid-v3B6EbpSdh .mbr-gallery-filter {
  padding-top: 20px;
  padding-bottom: 20px;
}
.cid-v3B6EbpSdh .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-v3B6EbpSdh .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v3B6EbpSdh .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-v3B6EbpSdh .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v3B6EbpSdh .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-v3B6Ec3tzm {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-v3B6Ec3tzm .mbr-text {
  color: #716c80;
}
.cid-v3B6Ec3tzm .card-wrapper {
  display: flex;
  flex-direction: row;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  transition: all 0.3s;
  padding: 1rem 1rem !important;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-v3B6Ec3tzm .card-wrapper:hover {
  transform: translateY(-1rem);
}
.cid-v3B6Ec3tzm .card-wrapper:hover .ico2 {
  color: #432480 !important;
}
.cid-v3B6Ec3tzm .ico2 {
  color: #57468b !important;
  transition: all 0.6s;
}
.cid-v3B6Ec3tzm .text-info:hover {
  color: inherit!important;
}
.cid-v3B6Ec3tzm .card-box {
  padding: 0rem 1rem;
}
.cid-v3B6Ec3tzm .ico1 {
  font-size: 3rem !important;
}
.cid-v3B6Ec3tzm h3,
.cid-v3B6Ec3tzm h4 {
  padding: 0;
  margin: 0;
}
.cid-v3B6Ec3tzm .card-title,
.cid-v3B6Ec3tzm .card-img {
  color: #57468b;
}
.cid-v3B6Ec3tzm .card-title {
  color: #232323;
}
.cid-v4ajPCnvAc {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-v4ajPCnvAc h4 {
  margin-bottom: 0;
}
.cid-v4ajPCnvAc p {
  color: #767676;
}
.cid-v4ajPCnvAc .card:hover img {
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-v4ajPCnvAc .btn-info-outline {
  border: none;
  color: #57468b !important;
  padding: 0;
  margin: 0 0.25rem!important;
}
.cid-v4ajPCnvAc .btn-info-outline span {
  order: 2;
  font-size: 1.1rem;
  padding-top: 3px;
  transition: padding 0.3s!important;
}
.cid-v4ajPCnvAc .btn-info-outline:hover span {
  padding-left: 10px;
}
.cid-v4ajPCnvAc .btn-info-outline:hover {
  background-color: transparent!important;
  color: #432480 !important;
  box-shadow: none!important;
}
.cid-v4ajPCnvAc .btn-info-outline:active,
.cid-v4ajPCnvAc .btn-info-outline:focus {
  background-color: transparent!important;
  box-shadow: none!important;
}
.cid-v4ajPCnvAc .card-box {
  padding-top: 2rem;
}
.cid-v4ajPCnvAc .card-wrapper {
  height: 100%;
}
.cid-v4ajPCnvAc .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-v4ajPCnvAc img {
  transition: all 0.3s;
  border-radius: 8px;
}
.cid-v4ajPCnvAc .card-title {
  color: #57468b;
}
.cid-v4ajPCnvAc .main-title {
  color: #57468b;
}
.cid-v4ajPCnvAc DIV {
  color: #57468b;
}
.cid-v4ajPCnvAc .card-img {
  width: auto;
}
.cid-v4ajPCnvAc .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4ajPCnvAc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4ajPYHsNo {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-v4ajPYHsNo h4 {
  margin-bottom: 0;
}
.cid-v4ajPYHsNo p {
  color: #767676;
}
.cid-v4ajPYHsNo .card:hover img {
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-v4ajPYHsNo .btn-info-outline {
  border: none;
  color: #57468b !important;
  padding: 0;
  margin: 0 0.25rem!important;
}
.cid-v4ajPYHsNo .btn-info-outline span {
  order: 2;
  font-size: 1.1rem;
  padding-top: 3px;
  transition: padding 0.3s!important;
}
.cid-v4ajPYHsNo .btn-info-outline:hover span {
  padding-left: 10px;
}
.cid-v4ajPYHsNo .btn-info-outline:hover {
  background-color: transparent!important;
  color: #432480 !important;
  box-shadow: none!important;
}
.cid-v4ajPYHsNo .btn-info-outline:active,
.cid-v4ajPYHsNo .btn-info-outline:focus {
  background-color: transparent!important;
  box-shadow: none!important;
}
.cid-v4ajPYHsNo .card-box {
  padding-top: 2rem;
}
.cid-v4ajPYHsNo .card-wrapper {
  height: 100%;
}
.cid-v4ajPYHsNo .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-v4ajPYHsNo img {
  transition: all 0.3s;
  border-radius: 8px;
}
.cid-v4ajPYHsNo .card-title {
  color: #57468b;
}
.cid-v4ajPYHsNo .main-title {
  color: #57468b;
}
.cid-v4ajPYHsNo DIV {
  color: #57468b;
}
.cid-v4ajPYHsNo .card-img {
  width: auto;
}
.cid-v4ajPYHsNo .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4ajPYHsNo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4ajQeoJEn {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f2f6ff;
}
.cid-v4ajQeoJEn H1 {
  color: #57468b;
}
.cid-v4ajQeoJEn .mbr-text,
.cid-v4ajQeoJEn .mbr-section-btn {
  color: #716c80;
}
.cid-v4ajQeoJEn .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4ajQeoJEn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3B6EcviTU {
  padding-top: 180px;
  padding-bottom: 75px;
  background-color: #432480;
  position: relative;
  overflow: hidden;
}
.cid-v3B6EcviTU .container {
  max-width: 1400px;
}
.cid-v3B6EcviTU .card-img2 span {
  padding-top: 6px;
}
.cid-v3B6EcviTU .soc-item a {
  padding-top: 5px;
}
.cid-v3B6EcviTU .btn {
  padding: 0.4rem 0.6rem!important;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-v3B6EcviTU .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-v3B6EcviTU .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-v3B6EcviTU .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-v3B6EcviTU svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-v3B6EcviTU #e2_shape {
  fill: #ffffff !important;
}
.cid-v3B6EcviTU .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-v3B6EcviTU .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-v3B6EcviTU .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #ff9800;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v3B6EcviTU .card-img {
  width: auto;
}
.cid-v3B6EcviTU .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-v3B6EcviTU .soc-item span {
  font-size: 1.4rem;
}
.cid-v3B6EcviTU .soc-item:hover span {
  color: #432480 !important;
}
.cid-v3B6EcviTU .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-v3B6EcviTU .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-v3B6EcviTU .media-wrap {
  margin-bottom: 1rem;
}
.cid-v3B6EcviTU .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-v3B6EcviTU img {
  height: 4rem;
}
@media (max-width: 576px) {
  .cid-v3B6EcviTU .item {
    justify-content: center;
  }
  .cid-v3B6EcviTU .quote::after {
    left: 60px;
  }
}
.cid-v3B6EcviTU .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-v3B6EcviTU .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v3B6EcviTU .text1 {
  color: #ffffff;
}
.cid-v3B6EcviTU .item-title {
  color: #ffffff;
}
.cid-v3B6EcviTU H5 {
  color: #ff9800;
}
.cid-v3B6EcviTU .theme {
  color: #ffffff;
}
.cid-v3B6EcviTU .copyright > p {
  color: #ff3366;
}
.cid-v3B6EcviTU .text2 {
  color: #ffffff;
}
.cid-v3B6Ed5ZQk {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-v3B6Ed5ZQk .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-v3B7rLzoxV .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-v3B7rLzoxV .navbar-fixed-top {
  padding-top: 0;
}
.cid-v3B7rLzoxV .navbar-collapse {
  flex-basis: auto;
  transition: all 0.3s ease-in;
}
.cid-v3B7rLzoxV .navbar-collapse.show {
  position: absolute;
  opacity: 1;
  visibility: visible;
  top: 100%;
  z-index: 999;
  background-color: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 15px 20px;
  bottom: auto;
  left: 0px;
  right: 0px;
}
.cid-v3B7rLzoxV .navbar-collapse.show .navbar-nav .nav-item {
  text-align: left;
  padding: 10px 0;
}
.cid-v3B7rLzoxV .navbar-buttons {
  flex-wrap: wrap;
}
.cid-v3B7rLzoxV .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-v3B7rLzoxV .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-v3B7rLzoxV .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  padding-right: 2rem;
}
.cid-v3B7rLzoxV .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v3B7rLzoxV .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v3B7rLzoxV .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v3B7rLzoxV .menu-content-top {
  background: #432480;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  width: 100%;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-v3B7rLzoxV .menu-content-top .right-wrap .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-v3B7rLzoxV .dropdown-item {
  font-weight: 400;
  margin: 0 !important;
  padding: 0 40px !important;
  line-height: 2.6;
}
.cid-v3B7rLzoxV .dropdown-item,
.cid-v3B7rLzoxV .nav-link,
.cid-v3B7rLzoxV .brand-name {
  font-style: normal;
}
.cid-v3B7rLzoxV .dropdown-item:hover,
.cid-v3B7rLzoxV .nav-link:hover,
.cid-v3B7rLzoxV .brand-name:hover {
  color: #ff9800 !important;
}
.cid-v3B7rLzoxV .dropdown-menu {
  background-color: #ffffff;
}
.cid-v3B7rLzoxV .dropdown-item:active {
  background-color: #ffffff;
}
.cid-v3B7rLzoxV .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
  justify-content: center;
}
.cid-v3B7rLzoxV .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-v3B7rLzoxV .nav-item {
  position: relative;
}
.cid-v3B7rLzoxV .nav-item span {
  padding-right: 0.4em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-v3B7rLzoxV .nav-item .nav-link {
  transition: all 0.3s ease-in-out 0ms;
}
.cid-v3B7rLzoxV .nav-item .nav-link:focus {
  outline: none;
}
@media (min-width: 991px) {
  .cid-v3B7rLzoxV .nav-link {
    line-height: 6.13;
  }
  .cid-v3B7rLzoxV .navbar-nav > li > a:before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 0;
    margin: auto;
    opacity: 0;
    border-top: 2px solid #279e64;
    transition: all 0.3s ease-in-out 0ms;
  }
  .cid-v3B7rLzoxV .navbar-nav > li:hover > a:before {
    opacity: 1;
    width: 100%;
  }
}
.cid-v3B7rLzoxV .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v3B7rLzoxV .content-text {
  margin-bottom: 0;
}
.cid-v3B7rLzoxV .navbar-nav {
  position: relative;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-v3B7rLzoxV .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #432480;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-v3B7rLzoxV .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-v3B7rLzoxV .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-v3B7rLzoxV .navbar-nav .nav-item .link {
  margin: 0 20px !important;
}
.cid-v3B7rLzoxV .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v3B7rLzoxV .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-v3B7rLzoxV .content-right-side {
  text-align: center;
}
.cid-v3B7rLzoxV .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-v3B7rLzoxV .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-v3B7rLzoxV .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
  color: #5580ff;
}
.cid-v3B7rLzoxV .widget-icon.mobi-mbri-phone {
  -webkit-animation: phone-icon-animate 1s ease-in-out infinite;
  animation: phone-icon-animate 1s ease-in-out infinite;
}
.cid-v3B7rLzoxV .info-widget {
  margin-left: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v3B7rLzoxV .info-widget:first-child {
  margin-left: 0;
}
.cid-v3B7rLzoxV .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-v3B7rLzoxV .widget-content .widget-title {
  margin-bottom: 3px;
  line-height: 1.7;
}
.cid-v3B7rLzoxV .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-v3B7rLzoxV .navbar .menu-content-top {
  display: flex;
  height: 90px;
  border-bottom: 1px solid #d9dade;
}
@media (min-width: 992px) {
  .cid-v3B7rLzoxV .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
  }
  .cid-v3B7rLzoxV .navbar {
    display: block;
    padding: 0;
  }
  .cid-v3B7rLzoxV .navbar .menu-logo {
    margin: auto;
    display: flex;
    align-items: center;
  }
  .cid-v3B7rLzoxV .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-v3B7rLzoxV .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-v3B7rLzoxV .navbar-toggler {
    display: none;
  }
  .cid-v3B7rLzoxV .navbar-collapse {
    justify-content: center;
  }
}
.cid-v3B7rLzoxV .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-v3B7rLzoxV .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
  position: relative;
  overflow: hidden;
  margin-right: 0;
}
.cid-v3B7rLzoxV .btn-sm {
  padding: 13px 29px;
}
.cid-v3B7rLzoxV .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-v3B7rLzoxV .btn::after {
  background-color: #57468b;
  content: "";
  height: 150px;
  left: -75px;
  position: absolute;
  top: -60px;
  transform: rotate(35deg);
  transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  width: 40px;
  opacity: 0;
  outline: none;
  text-decoration: none;
}
.cid-v3B7rLzoxV .btn:hover::after {
  left: 250px;
  opacity: 0.8;
}
.cid-v3B7rLzoxV .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-v3B7rLzoxV .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-v3B7rLzoxV .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  align-self: center;
}
.cid-v3B7rLzoxV .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v3B7rLzoxV .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding: 25px 0;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-v3B7rLzoxV .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-v3B7rLzoxV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v3B7rLzoxV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3B7rLzoxV .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-v3B7rLzoxV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-v3B7rLzoxV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v3B7rLzoxV .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v3B7rLzoxV .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3B7rLzoxV .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-v3B7rLzoxV .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  transition: font-size 0.25s;
}
.cid-v3B7rLzoxV .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v3B7rLzoxV .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v3B7rLzoxV .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v3B7rLzoxV button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  margin-right: 0;
}
.cid-v3B7rLzoxV button.navbar-toggler:focus {
  outline: none;
}
.cid-v3B7rLzoxV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #282828;
}
.cid-v3B7rLzoxV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v3B7rLzoxV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3B7rLzoxV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3B7rLzoxV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v3B7rLzoxV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3B7rLzoxV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v3B7rLzoxV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v3B7rLzoxV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3B7rLzoxV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v3B7rLzoxV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v3B7rLzoxV .collapsed .btn {
  display: flex;
}
.cid-v3B7rLzoxV .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v3B7rLzoxV .collapsed .navbar-collapse.collapsing,
.cid-v3B7rLzoxV .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v3B7rLzoxV .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v3B7rLzoxV .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v3B7rLzoxV .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v3B7rLzoxV .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v3B7rLzoxV .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v3B7rLzoxV .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}
.cid-v3B7rLzoxV .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v3B7rLzoxV .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-v3B7rLzoxV .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-v3B7rLzoxV .collapsed button.navbar-toggler {
  display: block;
}
.cid-v3B7rLzoxV .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-v3B7rLzoxV .collapsed .navbar-toggleable-sm {
  flex-direction: column;
}
.cid-v3B7rLzoxV .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-v3B7rLzoxV .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v3B7rLzoxV .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v3B7rLzoxV .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: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-v3B7rLzoxV .collapsed .menu-bottom {
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-v3B7rLzoxV .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
    padding-left: 20px !important;
  }
  .cid-v3B7rLzoxV .dropdown-menu .dropdown-item {
    text-align: left;
    font-weight: 700;
  }
  .cid-v3B7rLzoxV .menu-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-v3B7rLzoxV .menu-bottom .menu-content-right {
    display: none;
  }
  .cid-v3B7rLzoxV .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
    opacity: 0;
    transition: all 0.3s ease-in;
    position: absolute;
    top: 100%;
    bottom: auto;
    left: 0px;
    right: 0px;
    z-index: 999;
  }
  .cid-v3B7rLzoxV .navbar-collapse .navbar-nav .nav-item {
    clear: both;
    text-align: left;
    padding: 10px 0;
  }
  .cid-v3B7rLzoxV .navbar-collapse.collapsing,
  .cid-v3B7rLzoxV .navbar-collapse.show {
    display: block !important;
  }
  .cid-v3B7rLzoxV .navbar-collapse.collapsing .navbar-nav,
  .cid-v3B7rLzoxV .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v3B7rLzoxV .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v3B7rLzoxV .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v3B7rLzoxV .navbar-collapse.collapsing .navbar-nav .nav-item .nav-link,
  .cid-v3B7rLzoxV .navbar-collapse.show .navbar-nav .nav-item .nav-link {
    font-weight: 700;
  }
  .cid-v3B7rLzoxV .navbar-collapse.collapsing .navbar-buttons,
  .cid-v3B7rLzoxV .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-v3B7rLzoxV .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v3B7rLzoxV .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v3B7rLzoxV img {
    height: 3.8rem !important;
  }
  .cid-v3B7rLzoxV .btn {
    display: flex;
  }
  .cid-v3B7rLzoxV button.navbar-toggler {
    display: block;
    align-self: center;
  }
  .cid-v3B7rLzoxV .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-v3B7rLzoxV .navbar-toggleable-sm {
    flex-direction: column;
  }
  .cid-v3B7rLzoxV .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-v3B7rLzoxV .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v3B7rLzoxV .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v3B7rLzoxV .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: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-v3B7rLzoxV .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-v3B7rLzoxV .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-v3B7rLzoxV .navbar-toggler {
  position: relative;
}
.cid-v3B7rLzoxV .dropdown-item.active,
.cid-v3B7rLzoxV .dropdown-item:active {
  color: initial;
}
.cid-v3B7rLzoxV .widget-title {
  color: #57468b;
}
.cid-v3B7rLzoxV .widget-text {
  color: #57468b;
}
.cid-v3B7rLzoxV .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
.cid-v3B7rLzoxV .icons-menu .mbr-iconfont {
  font-size: 1rem;
  color: #432480;
  display: inline-flex;
  background-color: #eaebee;
  border-radius: 100%;
  transition: all 0.3s ease-in;
}
.cid-v3B7rLzoxV .icons-menu .mbr-iconfont:before {
  padding: .75rem;
}
.cid-v3B7rLzoxV .icons-menu .mbr-iconfont:hover {
  color: #ffffff;
  background-color: #432480;
  -webkit-animation-name: animation-pulse;
  animation-name: animation-pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  opacity: .9;
}
.cid-v3B7rLzoxV .soc-item {
  margin: .5rem .3rem;
}
@media (max-width: 768px) {
  .cid-v3B7rLzoxV .menu-content-top .icons-menu {
    padding-left: 0;
  }
  .cid-v3B7rLzoxV .menu-content-top .icons-menu .soc-item .mbr-iconfont {
    font-size: 14px;
  }
  .cid-v3B7rLzoxV .menu-content-top .icons-menu .soc-item .mbr-iconfont::before {
    padding: 0.44rem;
  }
  .cid-v3B7rLzoxV .menu-content-top .right-wrap .info-widget {
    margin-left: 20px;
  }
  .cid-v3B7rLzoxV .menu-content-top .right-wrap .info-widget:first-child {
    margin-left: 0;
  }
  .cid-v3B7rLzoxV .menu-content-top .right-wrap .info-widget .widget-content {
    display: none;
  }
  .cid-v3B7rLzoxV .menu-content-top .right-wrap .info-widget .widget-icon {
    font-size: 25px;
    padding-right: 0;
  }
  .cid-v3B7rLzoxV .navbar-brand {
    margin-left: 0 !important;
  }
}
@media (max-width: 576px) {
  .cid-v3B7rLzoxV .menu-content-top,
  .cid-v3B7rLzoxV .menu-bottom {
    padding: 0 15px;
  }
  .cid-v3B7rLzoxV button.navbar-toggler {
    align-self: center;
  }
}
@-webkit-keyframes phone-icon-animate {
  0%,
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    transform: rotate(20deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@keyframes phone-icon-animate {
  0%,
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    transform: rotate(20deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@-webkit-keyframes animation-pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
@keyframes animation-pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
.cid-v3B7rLzoxV .widget-title,
.cid-v3B7rLzoxV .widget-icon {
  color: #ffffff;
}
.cid-v3B7rM0yWd {
  padding-top: 225px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/08-1.jpg");
}
.cid-v3B7rM0yWd H1 {
  text-align: left;
  color: #ff9800;
}
.cid-v3B7rM0yWd .mbr-text,
.cid-v3B7rM0yWd .mbr-section-btn {
  text-align: left;
}
.cid-v3B7rMfKjy {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v3B7rMfKjy img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-v3B7rMfKjy H1 {
  color: #57468b;
}
.cid-v3B7rMfKjy .mbr-text,
.cid-v3B7rMfKjy .mbr-section-btn {
  color: #716c80;
}
.cid-v3B7rMfKjy H3 {
  color: #716c80;
}
.cid-v3B7rMfKjy .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-v3B7rMfKjy .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-v3B7rMfKjy .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-v3B7rMfKjy .link:hover {
  color: #432480 !important;
}
.cid-v3B7rMfKjy .link:hover .link-ico {
  color: #432480 !important;
  padding-left: 10px;
}
.cid-v3B7rMfKjy DIV {
  color: #57468b;
}
.cid-v3B7rMfKjy .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3B7rMfKjy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3B7rMfKjy .mbr-text,
.cid-v3B7rMfKjy .media-content {
  color: #545454;
}
.cid-v3B7rMsEZO {
  padding-top: 2rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-v3B7rMsEZO .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3B7rMsEZO .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-v3B7rMsEZO .container {
    padding: 0 30px;
  }
}
.cid-v3B7rMsEZO .row {
  justify-content: center;
}
.cid-v3B7rMsEZO .title-wrapper {
  margin-bottom: 140px;
}
.cid-v3B7rMsEZO .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-v3B7rMsEZO .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v3B7rMsEZO .card .card-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0 4px;
  padding: 45px 36px 66px;
  background-color: #ff9800;
  border-radius: 10px;
  overflow: visible;
}
@media (max-width: 992px) {
  .cid-v3B7rMsEZO .card .card-wrapper {
    margin: 0 0 50px;
    padding: 45px 22px 66px;
  }
}
.cid-v3B7rMsEZO .card .card-wrapper .best-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -3.4rem;
  left: 0;
  width: 100%;
  min-height: 54px;
  background-color: #ff6839;
  padding: 18px 8px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.cid-v3B7rMsEZO .card .card-wrapper .best-wrap .best-wrapper {
  width: 100%;
}
.cid-v3B7rMsEZO .card .card-wrapper .best-wrap .best-wrapper .mbr-best {
  margin-bottom: 0;
}
.cid-v3B7rMsEZO .card .card-wrapper .card-content .mbr-card-title {
  margin: 25px 0;
}
.cid-v3B7rMsEZO .card .card-wrapper .card-content .price-wrap .mbr-price {
  margin-bottom: 25px;
  position: relative;
  display: inline-flex;
}
.cid-v3B7rMsEZO .card .card-wrapper .card-content .price-wrap .mbr-price span {
  position: absolute;
  font-size: 50%;
  top: .4rem;
  left: -2rem;
}
.cid-v3B7rMsEZO .card .card-wrapper .card-content .mbr-desc {
  margin-bottom: 25px;
}
.cid-v3B7rMsEZO .card .card-wrapper .card-content .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3B7rMsEZO .card .card-wrapper .card-content .list .item-wrap {
  line-height: 1.625;
  margin-bottom: 10px;
}
.cid-v3B7rMsEZO .card .card-wrapper .mbr-section-btn {
  margin-top: 18px;
}
.cid-v3B7rMsEZO .mbr-section-title {
  color: #002047;
  text-align: center;
}
.cid-v3B7rMsEZO .mbr-text {
  color: #93dce7;
  text-align: center;
}
.cid-v3B7rMsEZO .mbr-best {
  color: #ffffff;
  text-align: center;
}
.cid-v3B7rMsEZO .mbr-card-title {
  color: #000000;
}
.cid-v3B7rMsEZO .mbr-price,
.cid-v3B7rMsEZO .price-wrap {
  color: #002047;
  text-align: center;
}
.cid-v3B7rMsEZO .mbr-desc {
  color: #000000;
  text-align: center;
}
.cid-v3B7rMsEZO .list {
  color: #ffffff;
  text-align: center;
}
.cid-v3B7rMsEZO .mbr-card-title,
.cid-v3B7rMsEZO .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-v3B7rMLklZ {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #ff9800;
}
.cid-v3B7rMLklZ H1 {
  color: #ffffff;
}
.cid-v3B7rMLklZ .mbr-text,
.cid-v3B7rMLklZ .mbr-section-btn {
  color: #716c80;
}
.cid-v3B7rMLklZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3B7rMLklZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3B7rN2d3L {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-v3B7rN2d3L H1 {
  color: #432480;
}
.cid-v3B7rN2d3L .mbr-text,
.cid-v3B7rN2d3L .mbr-section-btn {
  color: #363636;
}
.cid-v3B7rNg1G0 {
  padding-top: 45px;
  padding-bottom: 75px;
  background-color: #f2f2f4;
}
.cid-v3B7rNg1G0 .mbr-text {
  color: #767676;
}
.cid-v3B7rNg1G0 img {
  width: 100%;
}
.cid-v3B7rNg1G0 .card-img {
  margin-bottom: 0rem;
}
.cid-v3B7rNg1G0 .card-wrapper {
  background: #ffffff;
  border-radius: 3px;
  overflow: hidden;
}
.cid-v3B7rNg1G0 .card-box {
  padding: 2rem 1rem;
}
.cid-v3B7rNg1G0 p {
  font-weight: 400;
}
.cid-v3B7rNg1G0 .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-v3B7rNg1G0 .card {
    margin-bottom: 2rem;
  }
}
.cid-v3B7rNg1G0 .mbr-text,
.cid-v3B7rNg1G0 .mbr-section-btn {
  text-align: center;
}
.cid-v3B7rNg1G0 .card-title,
.cid-v3B7rNg1G0 .card-img {
  text-align: center;
  color: #432480;
}
.cid-v3B7rNCDdg {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v3B7rNCDdg H1 {
  color: #363636;
}
.cid-v3B7rNCDdg .mbr-text,
.cid-v3B7rNCDdg .mbr-section-btn {
  color: #363636;
}
.cid-v3B7rNR3ZN {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-v3B7rNR3ZN H1 {
  color: #ff9800;
  text-align: center;
}
.cid-v3B7rNR3ZN .mbr-text,
.cid-v3B7rNR3ZN .mbr-section-btn {
  color: #716c80;
}
.cid-v3B7rNR3ZN H3 {
  color: #716c80;
}
.cid-v3B7rO71n7 {
  padding-top: 105px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/87-2000x1335.jpg");
  background-size: cover;
}
.cid-v3B7rO71n7 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-v3B7rO71n7 h4 {
  text-align: center;
}
.cid-v3B7rO71n7 p {
  text-align: center;
}
.cid-v3B7rO71n7 .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-v3B7rO71n7 .mbr-iconfont {
  transition: all 0.3s;
  color: #ff9800 !important;
  font-size: 3rem !important;
}
.cid-v3B7rO71n7 .card {
  transition: all 0.3s;
  padding: 2rem!important;
}
.cid-v3B7rO71n7 .card:hover .card-title {
  color: #f2f6ff !important;
  cursor: pointer;
}
.cid-v3B7rO71n7 .card-title {
  transition: color 0.3s;
}
.cid-v3B7rO71n7 .card-title,
.cid-v3B7rO71n7 .card-img {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-v3B7rO71n7 .card {
    padding: 2rem 0rem 0rem 0rem!important;
  }
}
.cid-v3B7rODtG5 {
  padding-top: 105px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-v3B7rODtG5 H1 {
  color: #363636;
}
.cid-v3B7rODtG5 .mbr-text,
.cid-v3B7rODtG5 .mbr-section-btn {
  color: #716c80;
}
.cid-v3B7rODtG5 H3 {
  color: #716c80;
}
.cid-v3B7rOTgah {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/bg2-2000x1335.jpeg");
}
.cid-v3B7rOTgah h5,
.cid-v3B7rOTgah h4,
.cid-v3B7rOTgah p {
  margin-bottom: 0;
}
.cid-v3B7rOTgah p {
  color: #767676;
}
.cid-v3B7rOTgah .card-img {
  padding: 0;
}
.cid-v3B7rOTgah .mbr-section-btn {
  margin: 0;
  margin-top: 1.2rem;
  border-top: 1px solid #cccccc;
}
.cid-v3B7rOTgah .mbr-section-btn .btn {
  margin-top: 1.2rem !important;
}
.cid-v3B7rOTgah .card-wrapper {
  transition: all 0.3s;
  background-color: #ffffff;
}
.cid-v3B7rOTgah .card-wrapper:hover {
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-v3B7rOTgah .card-box {
  padding: 2rem;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-v3B7rOTgah .card-box {
    padding: 2rem 0 0;
  }
  .cid-v3B7rOTgah .card-wrapper {
    display: block !important;
  }
}
.cid-v3B7rOTgah .card-wrapper {
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
}
.cid-v3B7rOTgah .card-title,
.cid-v3B7rOTgah .main-title {
  color: #57468b;
}
.cid-v3B7rOTgah .card-title {
  color: #363636;
}
.cid-v3B7rPkrQP {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/04-2000x1335.jpeg");
}
.cid-v3B7rPkrQP H1 {
  color: #363636;
}
.cid-v3B7rPkrQP .mbr-text,
.cid-v3B7rPkrQP .mbr-section-btn {
  color: #716c80;
}
.cid-v3B7rPkrQP img {
  width: 80%;
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
@media (max-width: 992px) {
  .cid-v3B7rPkrQP img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.cid-v3B7rPDB1r {
  padding-top: 225px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/03-1-2000x1335.jpeg");
}
.cid-v3B7rPDB1r H1 {
  color: #432480;
  text-align: left;
}
.cid-v3B7rPDB1r .mbr-text,
.cid-v3B7rPDB1r .mbr-section-btn {
  color: #363636;
  text-align: left;
}
.cid-v3B7rPUKPC {
  padding-top: 120px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-v3B7rPUKPC .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v3B7rPUKPC .btn {
  font-size: 16px;
  padding: 0.5rem 2rem;
}
.cid-v3B7rPUKPC .btn-primary-outline {
  border: none;
  color: gray;
}
.cid-v3B7rPUKPC .btn-primary-outline:active {
  color: gray;
}
.cid-v3B7rPUKPC .btn-primary-outline:hover {
  color: white;
}
.cid-v3B7rPUKPC .mbr-gallery-title:before {
  border-radius: 0px 0px 10px 10px;
}
.cid-v3B7rPUKPC div {
  overflow: hidden;
}
.cid-v3B7rPUKPC .btn-primary-outline.active {
  color: white;
}
.cid-v3B7rPUKPC .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v3B7rPUKPC .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v3B7rPUKPC .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v3B7rPUKPC .mbr-gallery-item {
  overflow: hidden;
}
.cid-v3B7rPUKPC .mbr-gallery-item img {
  transition: all 0.3s;
  border-radius: 10px;
}
.cid-v3B7rPUKPC .mbr-gallery-filter {
  padding-top: 20px;
  padding-bottom: 20px;
}
.cid-v3B7rPUKPC .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-v3B7rPUKPC .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v3B7rPUKPC .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-v3B7rPUKPC .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v3B7rPUKPC .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-v3B7rQqU6v {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-v3B7rQqU6v .mbr-text {
  color: #716c80;
}
.cid-v3B7rQqU6v .card-wrapper {
  display: flex;
  flex-direction: row;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  transition: all 0.3s;
  padding: 1rem 1rem !important;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-v3B7rQqU6v .card-wrapper:hover {
  transform: translateY(-1rem);
}
.cid-v3B7rQqU6v .card-wrapper:hover .ico2 {
  color: #432480 !important;
}
.cid-v3B7rQqU6v .ico2 {
  color: #57468b !important;
  transition: all 0.6s;
}
.cid-v3B7rQqU6v .text-info:hover {
  color: inherit!important;
}
.cid-v3B7rQqU6v .card-box {
  padding: 0rem 1rem;
}
.cid-v3B7rQqU6v .ico1 {
  font-size: 3rem !important;
}
.cid-v3B7rQqU6v h3,
.cid-v3B7rQqU6v h4 {
  padding: 0;
  margin: 0;
}
.cid-v3B7rQqU6v .card-title,
.cid-v3B7rQqU6v .card-img {
  color: #57468b;
}
.cid-v3B7rQqU6v .card-title {
  color: #232323;
}
.cid-v4ajV68C7n {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-v4ajV68C7n h4 {
  margin-bottom: 0;
}
.cid-v4ajV68C7n p {
  color: #767676;
}
.cid-v4ajV68C7n .card:hover img {
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-v4ajV68C7n .btn-info-outline {
  border: none;
  color: #57468b !important;
  padding: 0;
  margin: 0 0.25rem!important;
}
.cid-v4ajV68C7n .btn-info-outline span {
  order: 2;
  font-size: 1.1rem;
  padding-top: 3px;
  transition: padding 0.3s!important;
}
.cid-v4ajV68C7n .btn-info-outline:hover span {
  padding-left: 10px;
}
.cid-v4ajV68C7n .btn-info-outline:hover {
  background-color: transparent!important;
  color: #432480 !important;
  box-shadow: none!important;
}
.cid-v4ajV68C7n .btn-info-outline:active,
.cid-v4ajV68C7n .btn-info-outline:focus {
  background-color: transparent!important;
  box-shadow: none!important;
}
.cid-v4ajV68C7n .card-box {
  padding-top: 2rem;
}
.cid-v4ajV68C7n .card-wrapper {
  height: 100%;
}
.cid-v4ajV68C7n .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-v4ajV68C7n img {
  transition: all 0.3s;
  border-radius: 8px;
}
.cid-v4ajV68C7n .card-title {
  color: #57468b;
}
.cid-v4ajV68C7n .main-title {
  color: #57468b;
}
.cid-v4ajV68C7n DIV {
  color: #57468b;
}
.cid-v4ajV68C7n .card-img {
  width: auto;
}
.cid-v4ajV68C7n .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4ajV68C7n .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4ajVsTPcU {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-v4ajVsTPcU h4 {
  margin-bottom: 0;
}
.cid-v4ajVsTPcU p {
  color: #767676;
}
.cid-v4ajVsTPcU .card:hover img {
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-v4ajVsTPcU .btn-info-outline {
  border: none;
  color: #57468b !important;
  padding: 0;
  margin: 0 0.25rem!important;
}
.cid-v4ajVsTPcU .btn-info-outline span {
  order: 2;
  font-size: 1.1rem;
  padding-top: 3px;
  transition: padding 0.3s!important;
}
.cid-v4ajVsTPcU .btn-info-outline:hover span {
  padding-left: 10px;
}
.cid-v4ajVsTPcU .btn-info-outline:hover {
  background-color: transparent!important;
  color: #432480 !important;
  box-shadow: none!important;
}
.cid-v4ajVsTPcU .btn-info-outline:active,
.cid-v4ajVsTPcU .btn-info-outline:focus {
  background-color: transparent!important;
  box-shadow: none!important;
}
.cid-v4ajVsTPcU .card-box {
  padding-top: 2rem;
}
.cid-v4ajVsTPcU .card-wrapper {
  height: 100%;
}
.cid-v4ajVsTPcU .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-v4ajVsTPcU img {
  transition: all 0.3s;
  border-radius: 8px;
}
.cid-v4ajVsTPcU .card-title {
  color: #57468b;
}
.cid-v4ajVsTPcU .main-title {
  color: #57468b;
}
.cid-v4ajVsTPcU DIV {
  color: #57468b;
}
.cid-v4ajVsTPcU .card-img {
  width: auto;
}
.cid-v4ajVsTPcU .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4ajVsTPcU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4ajVKrZo6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f2f6ff;
}
.cid-v4ajVKrZo6 H1 {
  color: #57468b;
}
.cid-v4ajVKrZo6 .mbr-text,
.cid-v4ajVKrZo6 .mbr-section-btn {
  color: #716c80;
}
.cid-v4ajVKrZo6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4ajVKrZo6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3B7rQTwnS {
  padding-top: 180px;
  padding-bottom: 75px;
  background-color: #432480;
  position: relative;
  overflow: hidden;
}
.cid-v3B7rQTwnS .container {
  max-width: 1400px;
}
.cid-v3B7rQTwnS .card-img2 span {
  padding-top: 6px;
}
.cid-v3B7rQTwnS .soc-item a {
  padding-top: 5px;
}
.cid-v3B7rQTwnS .btn {
  padding: 0.4rem 0.6rem!important;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-v3B7rQTwnS .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-v3B7rQTwnS .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-v3B7rQTwnS .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-v3B7rQTwnS svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-v3B7rQTwnS #e2_shape {
  fill: #ffffff !important;
}
.cid-v3B7rQTwnS .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-v3B7rQTwnS .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-v3B7rQTwnS .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #ff9800;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v3B7rQTwnS .card-img {
  width: auto;
}
.cid-v3B7rQTwnS .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-v3B7rQTwnS .soc-item span {
  font-size: 1.4rem;
}
.cid-v3B7rQTwnS .soc-item:hover span {
  color: #432480 !important;
}
.cid-v3B7rQTwnS .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-v3B7rQTwnS .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-v3B7rQTwnS .media-wrap {
  margin-bottom: 1rem;
}
.cid-v3B7rQTwnS .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-v3B7rQTwnS img {
  height: 4rem;
}
@media (max-width: 576px) {
  .cid-v3B7rQTwnS .item {
    justify-content: center;
  }
  .cid-v3B7rQTwnS .quote::after {
    left: 60px;
  }
}
.cid-v3B7rQTwnS .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-v3B7rQTwnS .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v3B7rQTwnS .text1 {
  color: #ffffff;
}
.cid-v3B7rQTwnS .item-title {
  color: #ffffff;
}
.cid-v3B7rQTwnS H5 {
  color: #ff9800;
}
.cid-v3B7rQTwnS .theme {
  color: #ffffff;
}
.cid-v3B7rQTwnS .copyright > p {
  color: #ff3366;
}
.cid-v3B7rQTwnS .text2 {
  color: #ffffff;
}
.cid-v3B7rRmenY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-v3B7rRmenY .media-container-row .mbr-text {
  color: #ffffff;
}
