body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.6rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
}
.display-7 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}
/* ---- 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.08rem;
    font-size: calc( 1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.56rem + (2.6 - 1.56) * ((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.68rem;
    font-size: calc( 0.9475rem + (0.85 - 0.9475) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.9475rem + (0.85 - 0.9475) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((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: #29235c !important;
}
.bg-success {
  background-color: #ffd402 !important;
}
.bg-info {
  background-color: #0072c6 !important;
}
.bg-warning {
  background-color: #c5a307 !important;
}
.bg-danger {
  background-color: #ffffff !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #29235c !important;
  border-color: #29235c !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #29235c !important;
  border-color: #29235c !important;
}
.btn-primary:before {
  background-color: #100e25 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #100e25 !important;
  border-color: #100e25 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #29235c !important;
  border-color: #29235c !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #29235c !important;
  border-color: #29235c !important;
}
.btn-secondary:before {
  background-color: #100e25 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #100e25 !important;
  border-color: #100e25 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #0072c6 !important;
  border-color: #0072c6 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #0072c6 !important;
  border-color: #0072c6 !important;
}
.btn-info:before {
  background-color: #00467a !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #00467a !important;
  border-color: #00467a !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #ffd402 !important;
  border-color: #ffd402 !important;
  color: #020200 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #020200 !important;
  background-color: #ffd402 !important;
  border-color: #ffd402 !important;
}
.btn-success:before {
  background-color: #b49600 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #020200 !important;
  background-color: #b49600 !important;
  border-color: #b49600 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #c5a307 !important;
  border-color: #c5a307 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #c5a307 !important;
  border-color: #c5a307 !important;
}
.btn-warning:before {
  background-color: #7b6604 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #7b6604 !important;
  border-color: #7b6604 !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-danger:before {
  background-color: #d9d9d9 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-white:before {
  background-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-black:before {
  background-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #080712;
  color: #080712;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff;
  border-color: #29235c;
}
.btn-primary-outline:before {
  background-color: #29235c;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #29235c !important;
  border-color: #29235c !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #080712;
  color: #080712;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff;
  border-color: #29235c;
}
.btn-secondary-outline:before {
  background-color: #29235c;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #29235c !important;
  border-color: #29235c !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #003760;
  color: #003760;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff;
  border-color: #0072c6;
}
.btn-info-outline:before {
  background-color: #0072c6;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #0072c6 !important;
  border-color: #0072c6 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #9b8100;
  color: #9b8100;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #020200;
  border-color: #ffd402;
}
.btn-success-outline:before {
  background-color: #ffd402;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #ffd402 !important;
  border-color: #ffd402 !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #635204;
  color: #635204;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff;
  border-color: #c5a307;
}
.btn-warning-outline:before {
  background-color: #c5a307;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #c5a307 !important;
  border-color: #c5a307 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #cccccc;
  color: #cccccc;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #808080;
  border-color: #ffffff;
}
.btn-danger-outline:before {
  background-color: #ffffff;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff;
  border-color: #333333;
}
.btn-black-outline:before {
  background-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  border-color: #ffffff;
}
.btn-white-outline:before {
  background-color: #ffffff;
}
.btn-bgr {
  position: relative;
  transition: border 0.3s ease-in-out, color 0.5s;
  -webkit-mask-image: -webkit-radial-gradient(circle, white, black);
}
.btn-bgr span {
  position: relative;
  z-index: 12;
}
.btn-bgr:before {
  content: ' ';
  position: absolute;
  top: -2px;
  left: -2px;
  right: 105%;
  bottom: -2px;
  transition: right 0.3s ease-in-out;
  z-index: -1;
}
.btn-bgr:hover:before {
  right: -2px;
}
.btn-underline {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: color 0.2s ease-out;
}
.btn-underline:before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #29235c;
  -webkit-transition: width 0.2s ease-out;
  -moz-transition: width 0.2s ease-out;
  transition: width 0.2s ease-out;
}
.btn-underline:hover:before {
  width: 100%;
}
.text-primary {
  color: #29235c !important;
}
.text-secondary {
  color: #29235c !important;
}
.text-success {
  color: #ffd402 !important;
}
.text-info {
  color: #0072c6 !important;
}
.text-warning {
  color: #c5a307 !important;
}
.text-danger {
  color: #ffffff !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #080712 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #080712 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #9b8100 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #003760 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #635204 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #cccccc !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #0072c6;
}
.alert-warning {
  background-color: #c5a307;
}
.alert-danger {
  background-color: #ffffff;
}
.mbr-gallery-filter li.active .btn {
  background-color: #29235c;
  border-color: #29235c;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #29235c;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #5246b8;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #fff7ce;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #46b1ff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #f9db53;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
blockquote {
  border-color: #29235c;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #29235c;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #29235c;
}
/*Menu*/
.display-1 > .mbr-iconfont {
  font-size: 4.16rem;
}
.display-2 > .mbr-iconfont {
  font-size: 3.2rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.36rem;
}
.display-5 > .mbr-iconfont {
  font-size: 2.24rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.6rem;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #29235c;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #29235c;
  border-bottom-color: #29235c;
}
.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: #29235c !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: #29235c !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='%2329235c' %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-sptR8Jbe4V {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/header-blue-dark2-3-2000x668.png");
  overflow: hidden;
}
.cid-sptR8Jbe4V svg {
  fill: #ffffff !important;
  pointer-events: none;
}
.cid-sptR8Jbe4V #e2_shape {
  fill: #ffffff !important;
}
.cid-sptR8Jbe4V .mbr-section-title.display-1 {
  line-height: 1.24;
}
.cid-sptR8Jbe4V .mbr-text {
  font-weight: 300;
}
.cid-sptR8Jbe4V .mbr-text.display-5 {
  font-size: 24px;
  line-height: 1.416;
}
.cid-sptR8Jbe4V .btn-white {
  color: #404040 !important;
}
.cid-sptR8Jbe4V .btn.display-4 {
  font-size: 14px;
  line-height: 1;
  padding: 21px 30px 20px;
}
.cid-sptR8Jbe4V .btn.display-4 .mbr-iconfont {
  font-size: 0.9rem;
  margin-right: 5px;
}
@media (max-width: 991px) {
  .cid-sptR8Jbe4V .img-wrap {
    display: none;
  }
}
@media (max-width: 768px) {
  .cid-sptR8Jbe4V {
    padding: 30px;
  }
  .cid-sptR8Jbe4V svg {
    display: none;
  }
}
.cid-sptR8Jbe4V .mbr-section-title,
.cid-sptR8Jbe4V .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-sptR8Jbe4V .mbr-text,
.cid-sptR8Jbe4V .mbr-section-btn {
  color: #ffffff;
}
.cid-sptU8ZvFKZ {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sptU8ZvFKZ .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #29235c;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-sptU8ZvFKZ .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-sptU8ZvFKZ .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-sptU8ZvFKZ .main-title.display-2 {
  line-height: 1.375;
}
.cid-sptU8ZvFKZ .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-sptU8ZvFKZ .mbr-text {
  color: #606060;
}
.cid-sptU8ZvFKZ .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-sptU8ZvFKZ .mbr-section-btn {
  margin-top: 24px;
}
.cid-sptU8ZvFKZ .mbr-section-btn .btn {
  margin-left: 0;
  padding: 18px 26px;
}
.cid-sptU8ZvFKZ .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-sptU8ZvFKZ .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-sptU8ZvFKZ .main-title,
.cid-sptU8ZvFKZ .mbr-section-btn DIV {
  text-align: center;
}
.cid-sptU8ZvFKZ .main-title,
.cid-sptU8ZvFKZ .mbr-section-btn {
  color: #003eff;
}
.cid-sptU8ZvFKZ .mbr-text,
.cid-sptU8ZvFKZ .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-sqS3qurkMR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffd402;
}
.cid-sqS3qurkMR .back {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background-color: #ffffff;
}
.cid-sqS3qurkMR img {
  width: 90%;
  max-width: 750px;
  border-radius: 10px;
}
.cid-sqS3qurkMR p {
  margin-top: 0rem !important;
}
.cid-sqS3qurkMR .content-wrapper {
  max-width: 750px;
  margin: auto;
  position: relative;
  padding: 0 2rem;
}
.cid-sqS3qurkMR .content-wrapper {
  padding-top: 6rem;
}
.cid-sqS3qurkMR h4 {
  position: absolute;
  width: fit-content;
  padding: 0;
  margin: 0;
  bottom: 3rem !important;
  left: 6rem;
  transform: rotate(270deg);
  transform-origin: bottom left;
}
@media (max-width: 1200px) {
  .cid-sqS3qurkMR .content-wrapper {
    padding-top: 0rem;
  }
  .cid-sqS3qurkMR p {
    margin-top: 0rem;
  }
}
@media (max-width: 992px) {
  .cid-sqS3qurkMR .back {
    width: 100%;
    height: 75%;
  }
  .cid-sqS3qurkMR .content-wrapper {
    padding: 0 3rem;
    padding-bottom: 4rem;
  }
  .cid-sqS3qurkMR .content-wrapper h4 {
    bottom: 4rem;
  }
  .cid-sqS3qurkMR p {
    margin-top: 4rem;
  }
}
.cid-sqS3qurkMR .content-wrapper {
  padding-left: 8rem;
}
@media (max-width: 767px) {
  .cid-sqS3qurkMR .content-wrapper {
    padding: 0rem;
    padding-bottom: 4rem;
  }
  .cid-sqS3qurkMR .content-wrapper h4 {
    bottom: 4rem;
  }
  .cid-sqS3qurkMR .content-wrapper {
    padding-left: 3rem;
  }
  .cid-sqS3qurkMR h4 {
    left: 2rem;
  }
}
.cid-sqS3qurkMR H1 {
  color: #29235c;
}
.cid-sqS3qurkMR H4 {
  text-align: center;
  color: #0072c6;
}
.cid-sqS3qurkMR .mbr-text,
.cid-sqS3qurkMR .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-sqS3qurkMR H3 {
  color: #29235c;
}
.cid-sqSeBd9A7G {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sqSeBd9A7G .mbr-text {
  color: #767676;
}
.cid-sqSeBd9A7G .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sqSeBd9A7G .card-item {
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sqSeBd9A7G .card-item .card-icon {
  margin: 0 0.5rem 1rem;
}
.cid-sqSeBd9A7G .card-item .card-icon span {
  font-size: 4rem;
  padding: 0.5rem;
  color: #29235c;
  -webkit-transition: transform 0.4s cubic-bezier(0.38, 3, 0.57, 1.6);
  -moz-transition: transform 0.4s cubic-bezier(0.38, 3, 0.57, 1.6);
  transition: transform 0.4s cubic-bezier(0.38, 3, 0.57, 1.6);
}
.cid-sqSeBd9A7G .card-item:hover .card-icon span {
  -webkit-transform: translate3d(0, -5px, 0);
  -moz-transform: translate3d(0, -5px, 0);
  transform: translate3d(0, -5px, 0);
}
@media (min-width: 577px) {
  .cid-sqSeBd9A7G .card-item .card-icon {
    margin-right: 2rem;
    min-width: 5rem;
  }
}
@media (min-width: 992px) {
  .cid-sqSeBd9A7G .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
@media (max-width: 576px) {
  .cid-sqSeBd9A7G .card-item {
    padding: 0 0 1rem !important;
  }
  .cid-sqSeBd9A7G .card-item .card-icon {
    min-width: 4rem;
  }
  .cid-sqSeBd9A7G .card-item .card-icon span {
    font-size: 3rem;
  }
}
.cid-sqSeBd9A7G .card-title {
  color: #29235c;
}
.cid-rNR9l5RVZc {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rNR9l5RVZc .btn {
  border-radius: 20px;
}
.cid-sraQUa3Ig4 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sraQUa3Ig4 .mbr-text {
  color: #000000;
}
.cid-sraQUa3Ig4 h4 {
  text-align: center;
}
.cid-sraQUa3Ig4 p {
  text-align: center;
}
.cid-sraQUa3Ig4 .card .card-img span {
  font-size: 40px;
  padding: 1.5rem;
  background: #ffd402;
  border: 2px solid #ffd402;
  color: #ffffff;
  border-radius: 50%;
  transition: all .3s;
}
.cid-sraQUa3Ig4 .card:hover .card-img span {
  background: none;
  color: #ffd402;
}
.cid-sraQUa3Ig4 .card-title,
.cid-sraQUa3Ig4 .card-img {
  color: #000000;
}
.cid-rNR6SJlVJw {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rNR6SJlVJw .mbr-text,
.cid-rNR6SJlVJw .mbr-section-btn {
  color: #000000;
}
.cid-rNR6SJlVJw p {
  z-index: 2;
  position: relative;
}
.cid-rNR6SJlVJw .author-box {
  display: flex;
  flex-direction: row;
}
.cid-rNR6SJlVJw .col-lg-12 {
  box-shadow: 0 10px 55px 5px rgba(57, 49, 129, 0.35);
  padding: 1rem 1.5rem;
}
.cid-rNR6SJlVJw .ico1 {
  font-size: 2rem;
}
.cid-rNR6SJlVJw .ico2 {
  position: absolute;
  bottom: 15%;
  right: 1.5rem;
  font-size: 8rem;
  z-index: 1;
  opacity: 0.1;
}
.cid-rNR6SJlVJw H3 {
  color: #29235c;
  text-align: center;
}
.cid-rNR7O2d5Va {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNR7O2d5Va .block-text {
  color: #000000;
  text-align: center;
}
.cid-rNR6iWp6Kx {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rNR6iWp6Kx .btn {
  border-radius: 20px;
}
.cid-rNnCLpbVvx {
  padding-top: 180px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-blue-dark-3-2000x520.png");
  position: relative;
  overflow: hidden;
}
.cid-rNnCLpbVvx .container {
  max-width: 1400px;
}
.cid-rNnCLpbVvx .card-img2 span {
  padding-top: 6px;
}
.cid-rNnCLpbVvx .soc-item a {
  padding-top: 5px;
}
.cid-rNnCLpbVvx .btn {
  padding: 0.4rem 0.6rem!important;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-rNnCLpbVvx .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-rNnCLpbVvx .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-rNnCLpbVvx .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rNnCLpbVvx svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-rNnCLpbVvx #e2_shape {
  fill: #ffffff !important;
}
.cid-rNnCLpbVvx .quote {
  background-color: #ffd402;
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #0072c6;
  text-align: center;
}
.cid-rNnCLpbVvx .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: #e3b600 transparent transparent;
}
.cid-rNnCLpbVvx .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #ffffff;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-rNnCLpbVvx .card-img {
  width: auto;
}
.cid-rNnCLpbVvx .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-rNnCLpbVvx .soc-item span {
  font-size: 1.4rem;
}
.cid-rNnCLpbVvx .soc-item:hover span {
  color: #29235c !important;
}
.cid-rNnCLpbVvx .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-rNnCLpbVvx .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-rNnCLpbVvx .media-wrap {
  margin-bottom: 1rem;
}
.cid-rNnCLpbVvx .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rNnCLpbVvx img {
  height: 4rem;
}
@media (max-width: 576px) {
  .cid-rNnCLpbVvx .item {
    justify-content: center;
  }
  .cid-rNnCLpbVvx .quote::after {
    left: 60px;
  }
}
.cid-rNnCLpbVvx .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-rNnCLpbVvx .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rNnCLpbVvx .text1 {
  color: #ffffff;
}
.cid-rNnCLpbVvx .item-title {
  color: #ffffff;
}
.cid-rNnCLpbVvx H5 {
  color: #ffffff;
  text-align: left;
}
.cid-rNnCLpbVvx .theme {
  color: #ffffff;
}
.cid-rNnCLpbVvx .copyright > p {
  color: #ff3366;
}
.cid-rNnCLpbVvx .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-spo1qYs82G.popup-builder {
  background-color: #ffffff;
}
.cid-spo1qYs82G.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-spo1qYs82G.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-spo1qYs82G .modal-content,
.cid-spo1qYs82G .modal-dialog {
  height: auto;
}
.cid-spo1qYs82G .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-spo1qYs82G .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-spo1qYs82G .form-wrapper .mbr-form .form-group,
  .cid-spo1qYs82G .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-spo1qYs82G .card-img {
  width: 100%;
  margin: auto;
  border-radius: 15px;
}
.cid-spo1qYs82G .mbr-figure img {
  display: block;
  width: 100%;
  border-radius: 15px;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-spo1qYs82G .mbr-text {
  text-align: center;
}
.cid-spo1qYs82G .pt-0 {
  padding-top: 0 !important;
}
.cid-spo1qYs82G .pb-0 {
  padding-bottom: 0 !important;
}
.cid-spo1qYs82G .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-spo1qYs82G .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-spo1qYs82G .modal-open {
  overflow: hidden;
}
.cid-spo1qYs82G .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-spo1qYs82G .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-spo1qYs82G .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-spo1qYs82G .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-spo1qYs82G .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-spo1qYs82G .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-spo1qYs82G .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-spo1qYs82G .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-spo1qYs82G .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-spo1qYs82G .modal-backdrop.fade {
  opacity: 0;
}
.cid-spo1qYs82G .modal-backdrop.show {
  opacity: .5;
}
.cid-spo1qYs82G .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-spo1qYs82G .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-spo1qYs82G .modal-header .close:hover {
  opacity: 1;
}
.cid-spo1qYs82G .modal-header .close:focus {
  outline: none;
}
.cid-spo1qYs82G .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-spo1qYs82G .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-spo1qYs82G .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-spo1qYs82G .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-spo1qYs82G .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-spo1qYs82G .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-spo1qYs82G .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-spo1qYs82G .modal-sm {
    max-width: 300px;
  }
  .cid-spo1qYs82G .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-spo1qYs82G .modal-lg,
  .cid-spo1qYs82G .modal-xl {
    max-width: 800px;
  }
  .cid-spo1qYs82G .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-spo1qYs82G .modal-xl {
    max-width: 1140px;
  }
  .cid-spo1qYs82G .container {
    max-width: 1140px;
  }
}
.cid-spo1qYs82G .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-spo1qYs82G .container {
    max-width: 720px;
  }
}
.cid-spo1qYs82G .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-spo1qYs82G .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-spo1qYs82G .form-group {
  margin-bottom: 1rem;
}
.cid-spo1qYs82G .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-spo1qYs82G .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-spo1qYs82G .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sqIbVSCQxc .navbar {
  padding: .5rem 0;
  background: #29235c;
  transition: none;
  min-height: 50px;
}
.cid-sqIbVSCQxc .navbar-dropdown.bg-color.transparent.opened {
  background: #29235c;
}
.cid-sqIbVSCQxc a {
  font-style: normal;
}
.cid-sqIbVSCQxc .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sqIbVSCQxc .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-sqIbVSCQxc .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sqIbVSCQxc .content-text {
  margin-bottom: 0;
}
.cid-sqIbVSCQxc .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sqIbVSCQxc .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #29235c;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sqIbVSCQxc .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sqIbVSCQxc .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sqIbVSCQxc .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sqIbVSCQxc .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sqIbVSCQxc .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sqIbVSCQxc .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sqIbVSCQxc .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sqIbVSCQxc .nav-dropdown .link {
  font-weight: 400;
}
.cid-sqIbVSCQxc .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sqIbVSCQxc .content-right-side {
  text-align: center;
}
.cid-sqIbVSCQxc .menu-content-top {
  padding: 0 2rem;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-sqIbVSCQxc .menu-content-top {
    width: 100%;
    display: flex;
  }
  .cid-sqIbVSCQxc .menu-content-top .menu-content-right {
    display: block;
    position: absolute;
    visibility: hidden;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    transition: 0s all 0s;
  }
  .cid-sqIbVSCQxc .menu-content-top .menu-content-right .info-widget {
    padding: 1rem 0;
    text-align: center;
  }
  .cid-sqIbVSCQxc .navbar.opened .menu-content-right {
    visibility: visible;
    transition: 0s all 0.3s;
  }
  .cid-sqIbVSCQxc .menu-bottom {
    justify-content: flex-end;
  }
  .cid-sqIbVSCQxc img {
    height: 3.8rem !important;
  }
  .cid-sqIbVSCQxc .btn {
    display: -webkit-flex;
  }
  .cid-sqIbVSCQxc button.navbar-toggler {
    display: block;
  }
  .cid-sqIbVSCQxc .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-sqIbVSCQxc .navbar {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sqIbVSCQxc .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing,
  .cid-sqIbVSCQxc .navbar-collapse.show {
    display: block !important;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-nav,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-buttons,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sqIbVSCQxc .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-sqIbVSCQxc .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-sqIbVSCQxc .navbar.opened {
    padding-bottom: 8rem;
  }
  .cid-sqIbVSCQxc .navbar .navbar-collapse {
    max-height: calc(100vh - 8rem - 80px);
  }
}
@media (max-width: 575px) {
  .cid-sqIbVSCQxc .navbar.opened {
    padding-bottom: 10rem;
  }
  .cid-sqIbVSCQxc .navbar .navbar-collapse {
    max-height: calc(100vh - 10rem - 80px);
  }
}
.cid-sqIbVSCQxc .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sqIbVSCQxc .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sqIbVSCQxc .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sqIbVSCQxc .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid #e0e0e0;
}
.cid-sqIbVSCQxc .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqIbVSCQxc .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sqIbVSCQxc .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sqIbVSCQxc .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sqIbVSCQxc .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-sqIbVSCQxc .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-sqIbVSCQxc .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sqIbVSCQxc .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-sqIbVSCQxc .content-right-side {
    display: flex;
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sqIbVSCQxc .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-sqIbVSCQxc .navbar {
    display: block;
    padding: 0;
  }
  .cid-sqIbVSCQxc .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sqIbVSCQxc .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-sqIbVSCQxc .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-sqIbVSCQxc .navbar-short .menu-content-top {
    height: 0;
    min-height: 0;
    border: none;
  }
  .cid-sqIbVSCQxc .navbar-toggler {
    display: none;
  }
  .cid-sqIbVSCQxc .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sqIbVSCQxc .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqIbVSCQxc .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sqIbVSCQxc .menu-logo {
  margin-right: auto;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  border-radius: 10px;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu {
  background: #29235c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sqIbVSCQxc .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sqIbVSCQxc .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-sqIbVSCQxc .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sqIbVSCQxc button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sqIbVSCQxc button.navbar-toggler:focus {
  outline: none;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sqIbVSCQxc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sqIbVSCQxc .collapsed .btn {
  display: -webkit-flex;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sqIbVSCQxc .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1.5rem);
  }
  .cid-sqIbVSCQxc .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sqIbVSCQxc .collapsed button.navbar-toggler {
  display: block;
}
.cid-sqIbVSCQxc .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-sqIbVSCQxc .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sqIbVSCQxc .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-sqIbVSCQxc .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sqIbVSCQxc .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-sqIbVSCQxc .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-sqIbVSCQxc .nav-link:focus {
  outline: none;
}
.cid-sqIbVSCQxc .navbar-toggler {
  position: relative;
}
.cid-sqIbVSCQxc .dropdown-item.active,
.cid-sqIbVSCQxc .dropdown-item:active {
  background: #29235c;
  color: initial;
}
.cid-sqIbVSCQxc .nav-link:hover,
.cid-sqIbVSCQxc .dropdown-item:hover {
  color: #4284df;
}
.cid-sqIbVSCQxc .widget-title,
.cid-sqIbVSCQxc .widget-icon {
  color: #ffffff;
}
.cid-sqdzN09GPz {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/header-blue-dark2-3-2000x668.png");
  overflow: hidden;
}
.cid-sqdzN09GPz svg {
  fill: #ffffff !important;
  pointer-events: none;
}
.cid-sqdzN09GPz #e2_shape {
  fill: #ffffff !important;
}
.cid-sqdzN09GPz .mbr-section-title.display-1 {
  line-height: 1.24;
}
.cid-sqdzN09GPz .mbr-text {
  font-weight: 300;
}
.cid-sqdzN09GPz .mbr-text.display-5 {
  font-size: 24px;
  line-height: 1.416;
}
.cid-sqdzN09GPz .btn-white {
  color: #404040 !important;
}
.cid-sqdzN09GPz .btn.display-4 {
  font-size: 14px;
  line-height: 1;
  padding: 21px 30px 20px;
}
.cid-sqdzN09GPz .btn.display-4 .mbr-iconfont {
  font-size: 0.9rem;
  margin-right: 5px;
}
@media (max-width: 991px) {
  .cid-sqdzN09GPz .img-wrap {
    display: none;
  }
}
@media (max-width: 768px) {
  .cid-sqdzN09GPz {
    padding: 30px;
  }
  .cid-sqdzN09GPz svg {
    display: none;
  }
}
.cid-sqdzN09GPz .mbr-section-title,
.cid-sqdzN09GPz .mbr-section-btn {
  color: #ffffff;
}
.cid-sqdzN09GPz .mbr-text,
.cid-sqdzN09GPz .mbr-section-btn {
  color: #ffffff;
}
.cid-sqAQrUeQEP {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sqAQrUeQEP .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #29235c;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-sqAQrUeQEP .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-sqAQrUeQEP .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-sqAQrUeQEP .main-title.display-2 {
  line-height: 1.375;
}
.cid-sqAQrUeQEP .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-sqAQrUeQEP .mbr-text {
  color: #606060;
}
.cid-sqAQrUeQEP .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-sqAQrUeQEP .mbr-section-btn {
  margin-top: 24px;
}
.cid-sqAQrUeQEP .mbr-section-btn .btn {
  margin-left: 0;
  padding: 18px 26px;
}
.cid-sqAQrUeQEP .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-sqAQrUeQEP .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-sqAQrUeQEP .main-title,
.cid-sqAQrUeQEP .mbr-section-btn DIV {
  text-align: center;
}
.cid-sqAQrUeQEP .main-title,
.cid-sqAQrUeQEP .mbr-section-btn {
  color: #003eff;
}
.cid-sqAQrUeQEP .mbr-text,
.cid-sqAQrUeQEP .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-rNWCSTuhCj {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rNWCSTuhCj img {
  width: 90%;
  max-width: 750px;
  border-radius: 10px;
}
.cid-rNWCSTuhCj p {
  margin-top: 0rem;
  bottom: 1rem !important;
}
.cid-rNWCSTuhCj .content-wrapper {
  max-width: 750px;
  margin: auto;
  position: relative;
  padding: 0 2rem;
}
.cid-rNWCSTuhCj .content-wrapper {
  padding-top: 6rem;
}
.cid-rNWCSTuhCj h4 {
  position: absolute;
  width: fit-content;
  padding: 0;
  margin: 0;
  bottom: 6rem !important;
  left: 6rem;
  transform: rotate(270deg);
  transform-origin: bottom left;
}
@media (max-width: 1200px) {
  .cid-rNWCSTuhCj .content-wrapper {
    padding-top: 0rem;
  }
  .cid-rNWCSTuhCj p {
    margin-top: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rNWCSTuhCj .content-wrapper {
    padding: 0 3rem;
    padding-bottom: 4rem;
  }
  .cid-rNWCSTuhCj .content-wrapper h4 {
    bottom: 4rem;
  }
  .cid-rNWCSTuhCj p {
    margin-top: 4rem;
  }
}
.cid-rNWCSTuhCj .content-wrapper {
  padding-left: 8rem;
}
@media (max-width: 767px) {
  .cid-rNWCSTuhCj .content-wrapper {
    padding: 0rem;
    padding-bottom: 4rem;
  }
  .cid-rNWCSTuhCj .content-wrapper h4 {
    bottom: 4rem;
  }
  .cid-rNWCSTuhCj .content-wrapper {
    padding-left: 3rem;
  }
  .cid-rNWCSTuhCj h4 {
    left: 2rem;
  }
}
.cid-rNWCSTuhCj H1 {
  color: #0072c6;
}
.cid-rNWCSTuhCj H4 {
  text-align: center;
  color: #0072c6;
}
.cid-rNWCSTuhCj .mbr-text,
.cid-rNWCSTuhCj .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-rNWCSTuhCj H3 {
  color: #000000;
}
.cid-rNVxxtEPzo {
  padding-top: 45px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/diensten-backgroundbeide-2000x1000.jpeg");
}
.cid-rNVxxtEPzo h4 {
  margin-bottom: 0;
  text-align: left;
}
.cid-rNVxxtEPzo .card-box {
  padding-top: 3rem;
}
.cid-rNVxxtEPzo .mbr-section-btn {
  width: 100%;
  text-align: center;
}
.cid-rNVxxtEPzo .btn-md {
  padding: 1rem;
}
.cid-rNVxxtEPzo .btn-primary-outline,
.cid-rNVxxtEPzo .btn-secondary-outline,
.cid-rNVxxtEPzo .btn-info-outline,
.cid-rNVxxtEPzo .btn-success-outline,
.cid-rNVxxtEPzo .btn-warning-outline,
.cid-rNVxxtEPzo .btn-danger-outline,
.cid-rNVxxtEPzo .btn-black-outline,
.cid-rNVxxtEPzo .btn-white-outline {
  border: none;
  width: 100%;
  justify-content: space-between;
  padding: 0;
  margin: 0 0.25rem!important;
}
.cid-rNVxxtEPzo .btn-primary-outline span,
.cid-rNVxxtEPzo .btn-secondary-outline span,
.cid-rNVxxtEPzo .btn-info-outline span,
.cid-rNVxxtEPzo .btn-success-outline span,
.cid-rNVxxtEPzo .btn-warning-outline span,
.cid-rNVxxtEPzo .btn-danger-outline span,
.cid-rNVxxtEPzo .btn-black-outline span,
.cid-rNVxxtEPzo .btn-white-outline span {
  order: 2;
  font-size: 1.1rem;
  padding-top: 3px;
  transition: padding 0.3s!important;
}
.cid-rNVxxtEPzo .btn-primary-outline:hover span,
.cid-rNVxxtEPzo .btn-secondary-outline:hover span,
.cid-rNVxxtEPzo .btn-info-outline:hover span,
.cid-rNVxxtEPzo .btn-success-outline:hover span,
.cid-rNVxxtEPzo .btn-warning-outline:hover span,
.cid-rNVxxtEPzo .btn-danger-outline:hover span,
.cid-rNVxxtEPzo .btn-black-outline:hover span,
.cid-rNVxxtEPzo .btn-white-outline:hover span {
  padding-left: 10px;
}
.cid-rNVxxtEPzo .btn-primary-outline:hover,
.cid-rNVxxtEPzo .btn-secondary-outline:hover,
.cid-rNVxxtEPzo .btn-info-outline:hover,
.cid-rNVxxtEPzo .btn-success-outline:hover,
.cid-rNVxxtEPzo .btn-warning-outline:hover,
.cid-rNVxxtEPzo .btn-danger-outline:hover,
.cid-rNVxxtEPzo .btn-black-outline:hover,
.cid-rNVxxtEPzo .btn-white-outline:hover {
  background-color: transparent!important;
  color: #29235c !important;
  box-shadow: none!important;
}
.cid-rNVxxtEPzo .btn-primary-outline:active,
.cid-rNVxxtEPzo .btn-secondary-outline:active,
.cid-rNVxxtEPzo .btn-info-outline:active,
.cid-rNVxxtEPzo .btn-success-outline:active,
.cid-rNVxxtEPzo .btn-warning-outline:active,
.cid-rNVxxtEPzo .btn-danger-outline:active,
.cid-rNVxxtEPzo .btn-black-outline:active,
.cid-rNVxxtEPzo .btn-white-outline:active,
.cid-rNVxxtEPzo .btn-primary-outline:focus,
.cid-rNVxxtEPzo .btn-secondary-outline:focus,
.cid-rNVxxtEPzo .btn-info-outline:focus,
.cid-rNVxxtEPzo .btn-success-outline:focus,
.cid-rNVxxtEPzo .btn-warning-outline:focus,
.cid-rNVxxtEPzo .btn-danger-outline:focus,
.cid-rNVxxtEPzo .btn-black-outline:focus,
.cid-rNVxxtEPzo .btn-white-outline:focus {
  background-color: transparent!important;
  box-shadow: none!important;
}
.cid-rNVxxtEPzo .btn-primary-outline .mbr-iconfont,
.cid-rNVxxtEPzo .btn-secondary-outline .mbr-iconfont,
.cid-rNVxxtEPzo .btn-info-outline .mbr-iconfont,
.cid-rNVxxtEPzo .btn-success-outline .mbr-iconfont,
.cid-rNVxxtEPzo .btn-warning-outline .mbr-iconfont,
.cid-rNVxxtEPzo .btn-danger-outline .mbr-iconfont,
.cid-rNVxxtEPzo .btn-black-outline .mbr-iconfont,
.cid-rNVxxtEPzo .btn-white-outline .mbr-iconfont {
  margin-right: 0!important;
  padding-left: 0.4rem;
}
.cid-rNVxxtEPzo .card-wrapper {
  overflow: hidden;
  height: 100%;
  position: relative;
  background-color: #ffd402;
  padding: 3rem 1.2rem 1.2rem 1.2rem;
  border-radius: 8px;
  transition: all 0.3s;
}
.cid-rNVxxtEPzo .card-wrapper:hover {
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  transform: translateY(-1.5rem);
}
.cid-rNVxxtEPzo .link-wrap {
  position: relative;
  padding-top: 14px;
}
.cid-rNVxxtEPzo .link-wrap:hover {
  color: #29235c !important;
}
.cid-rNVxxtEPzo .link-wrap:hover:hover .link-ico {
  color: #29235c !important;
}
.cid-rNVxxtEPzo .line {
  width: 150%;
  height: 1px;
  background: lightgray;
  position: absolute;
  top: 0;
  left: -25%;
}
.cid-rNVxxtEPzo img {
  border-radius: 100%;
  width: 150px;
  height: 150px;
  object-fit: cover;
}
.cid-rNVxxtEPzo .card-title {
  color: #29235c;
  text-align: center;
}
.cid-rNVxxtEPzo .row {
  justify-content: center;
}
.cid-rNVxxtEPzo .main-title {
  text-align: center;
  color: #0072c6;
}
.cid-rNVxxtEPzo P {
  text-align: center;
}
.cid-rNVxxtEPzo .mbr-text,
.cid-rNVxxtEPzo .link {
  text-align: left;
  color: #000000;
}
.cid-rNVxxtEPzo DIV {
  color: #57468b;
}
@media (max-width: 576px) {
  .cid-rNVxxtEPzo .card-wrapper:hover {
    transform: none;
    box-shadow: none;
  }
}
.cid-sqdWghz8ih {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/blanco-1015x428.png");
}
.cid-sqdWghz8ih .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #29235c;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-sqdWghz8ih .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-sqdWghz8ih .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-sqdWghz8ih .main-title.display-2 {
  line-height: 1.375;
}
.cid-sqdWghz8ih .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-sqdWghz8ih .mbr-text {
  color: #606060;
}
.cid-sqdWghz8ih .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-sqdWghz8ih .mbr-section-btn {
  margin-top: 24px;
}
.cid-sqdWghz8ih .mbr-section-btn .btn {
  margin-left: 0;
  padding: 18px 26px;
}
.cid-sqdWghz8ih .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-sqdWghz8ih .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-sqdWghz8ih .mbr-text,
.cid-sqdWghz8ih .mbr-section-btn {
  color: #000000;
}
.cid-sqdWghz8ih .main-title,
.cid-sqdWghz8ih .mbr-section-btn {
  color: #29235c;
}
.cid-sqdWghz8ih .mbr-section-subtitle,
.cid-sqdWghz8ih .mbr-section-btn {
  color: #003eff;
}
.cid-srgWSCUPC7 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-srgWSCUPC7 .mbr-text {
  color: #000000;
}
.cid-srgWSCUPC7 h4 {
  text-align: center;
}
.cid-srgWSCUPC7 p {
  text-align: center;
}
.cid-srgWSCUPC7 .card .card-img span {
  font-size: 40px;
  padding: 1.5rem;
  background: #ffd402;
  border: 2px solid #ffd402;
  color: #ffffff;
  border-radius: 50%;
  transition: all .3s;
}
.cid-srgWSCUPC7 .card:hover .card-img span {
  background: none;
  color: #ffd402;
}
.cid-srgWSCUPC7 .card-title,
.cid-srgWSCUPC7 .card-img {
  color: #000000;
}
.cid-rNWESlXxJS {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rNWESlXxJS .mbr-text,
.cid-rNWESlXxJS .mbr-section-btn {
  color: #000000;
}
.cid-rNWESlXxJS p {
  z-index: 2;
  position: relative;
}
.cid-rNWESlXxJS .author-box {
  display: flex;
  flex-direction: row;
}
.cid-rNWESlXxJS .col-lg-12 {
  box-shadow: 0 10px 55px 5px rgba(57, 49, 129, 0.35);
  padding: 1rem 1.5rem;
}
.cid-rNWESlXxJS .ico1 {
  font-size: 2rem;
}
.cid-rNWESlXxJS .ico2 {
  position: absolute;
  bottom: 15%;
  right: 1.5rem;
  font-size: 8rem;
  z-index: 1;
  opacity: 0.1;
}
.cid-rNWESlXxJS H3 {
  color: #29235c;
  text-align: center;
}
.cid-rNVG0iOO4t {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNVG0iOO4t .block-text {
  color: #000000;
  text-align: center;
}
.cid-rNVG1dLYR1 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rNVG1dLYR1 .btn {
  border-radius: 20px;
}
.cid-rNVxy3IC71 {
  padding-top: 180px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-blue-dark-3-2000x520.png");
  position: relative;
  overflow: hidden;
}
.cid-rNVxy3IC71 .container {
  max-width: 1400px;
}
.cid-rNVxy3IC71 .card-img2 span {
  padding-top: 6px;
}
.cid-rNVxy3IC71 .soc-item a {
  padding-top: 5px;
}
.cid-rNVxy3IC71 .btn {
  padding: 0.4rem 0.6rem!important;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-rNVxy3IC71 .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-rNVxy3IC71 .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-rNVxy3IC71 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rNVxy3IC71 svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-rNVxy3IC71 #e2_shape {
  fill: #ffffff !important;
}
.cid-rNVxy3IC71 .quote {
  background-color: #ffd402;
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #0072c6;
  text-align: center;
}
.cid-rNVxy3IC71 .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: #e3b600 transparent transparent;
}
.cid-rNVxy3IC71 .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #ffffff;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-rNVxy3IC71 .card-img {
  width: auto;
}
.cid-rNVxy3IC71 .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-rNVxy3IC71 .soc-item span {
  font-size: 1.4rem;
}
.cid-rNVxy3IC71 .soc-item:hover span {
  color: #29235c !important;
}
.cid-rNVxy3IC71 .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-rNVxy3IC71 .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-rNVxy3IC71 .media-wrap {
  margin-bottom: 1rem;
}
.cid-rNVxy3IC71 .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rNVxy3IC71 img {
  height: 4rem;
}
@media (max-width: 576px) {
  .cid-rNVxy3IC71 .item {
    justify-content: center;
  }
  .cid-rNVxy3IC71 .quote::after {
    left: 60px;
  }
}
.cid-rNVxy3IC71 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-rNVxy3IC71 .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rNVxy3IC71 .text1 {
  color: #ffffff;
}
.cid-rNVxy3IC71 .item-title {
  color: #ffffff;
}
.cid-rNVxy3IC71 H5 {
  color: #ffffff;
  text-align: left;
}
.cid-rNVxy3IC71 .theme {
  color: #ffffff;
}
.cid-rNVxy3IC71 .copyright > p {
  color: #ff3366;
}
.cid-rNVxy3IC71 .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-sqIbVSCQxc .navbar {
  padding: .5rem 0;
  background: #29235c;
  transition: none;
  min-height: 50px;
}
.cid-sqIbVSCQxc .navbar-dropdown.bg-color.transparent.opened {
  background: #29235c;
}
.cid-sqIbVSCQxc a {
  font-style: normal;
}
.cid-sqIbVSCQxc .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sqIbVSCQxc .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-sqIbVSCQxc .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sqIbVSCQxc .content-text {
  margin-bottom: 0;
}
.cid-sqIbVSCQxc .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sqIbVSCQxc .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #29235c;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sqIbVSCQxc .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sqIbVSCQxc .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sqIbVSCQxc .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sqIbVSCQxc .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sqIbVSCQxc .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sqIbVSCQxc .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sqIbVSCQxc .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sqIbVSCQxc .nav-dropdown .link {
  font-weight: 400;
}
.cid-sqIbVSCQxc .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sqIbVSCQxc .content-right-side {
  text-align: center;
}
.cid-sqIbVSCQxc .menu-content-top {
  padding: 0 2rem;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-sqIbVSCQxc .menu-content-top {
    width: 100%;
    display: flex;
  }
  .cid-sqIbVSCQxc .menu-content-top .menu-content-right {
    display: block;
    position: absolute;
    visibility: hidden;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    transition: 0s all 0s;
  }
  .cid-sqIbVSCQxc .menu-content-top .menu-content-right .info-widget {
    padding: 1rem 0;
    text-align: center;
  }
  .cid-sqIbVSCQxc .navbar.opened .menu-content-right {
    visibility: visible;
    transition: 0s all 0.3s;
  }
  .cid-sqIbVSCQxc .menu-bottom {
    justify-content: flex-end;
  }
  .cid-sqIbVSCQxc img {
    height: 3.8rem !important;
  }
  .cid-sqIbVSCQxc .btn {
    display: -webkit-flex;
  }
  .cid-sqIbVSCQxc button.navbar-toggler {
    display: block;
  }
  .cid-sqIbVSCQxc .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-sqIbVSCQxc .navbar {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sqIbVSCQxc .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing,
  .cid-sqIbVSCQxc .navbar-collapse.show {
    display: block !important;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-nav,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-buttons,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sqIbVSCQxc .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-sqIbVSCQxc .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-sqIbVSCQxc .navbar.opened {
    padding-bottom: 8rem;
  }
  .cid-sqIbVSCQxc .navbar .navbar-collapse {
    max-height: calc(100vh - 8rem - 80px);
  }
}
@media (max-width: 575px) {
  .cid-sqIbVSCQxc .navbar.opened {
    padding-bottom: 10rem;
  }
  .cid-sqIbVSCQxc .navbar .navbar-collapse {
    max-height: calc(100vh - 10rem - 80px);
  }
}
.cid-sqIbVSCQxc .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sqIbVSCQxc .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sqIbVSCQxc .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sqIbVSCQxc .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid #e0e0e0;
}
.cid-sqIbVSCQxc .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqIbVSCQxc .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sqIbVSCQxc .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sqIbVSCQxc .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sqIbVSCQxc .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-sqIbVSCQxc .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-sqIbVSCQxc .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sqIbVSCQxc .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-sqIbVSCQxc .content-right-side {
    display: flex;
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sqIbVSCQxc .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-sqIbVSCQxc .navbar {
    display: block;
    padding: 0;
  }
  .cid-sqIbVSCQxc .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sqIbVSCQxc .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-sqIbVSCQxc .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-sqIbVSCQxc .navbar-short .menu-content-top {
    height: 0;
    min-height: 0;
    border: none;
  }
  .cid-sqIbVSCQxc .navbar-toggler {
    display: none;
  }
  .cid-sqIbVSCQxc .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sqIbVSCQxc .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqIbVSCQxc .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sqIbVSCQxc .menu-logo {
  margin-right: auto;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  border-radius: 10px;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu {
  background: #29235c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sqIbVSCQxc .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sqIbVSCQxc .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-sqIbVSCQxc .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sqIbVSCQxc button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sqIbVSCQxc button.navbar-toggler:focus {
  outline: none;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sqIbVSCQxc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sqIbVSCQxc .collapsed .btn {
  display: -webkit-flex;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sqIbVSCQxc .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1.5rem);
  }
  .cid-sqIbVSCQxc .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sqIbVSCQxc .collapsed button.navbar-toggler {
  display: block;
}
.cid-sqIbVSCQxc .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-sqIbVSCQxc .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sqIbVSCQxc .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-sqIbVSCQxc .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sqIbVSCQxc .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-sqIbVSCQxc .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-sqIbVSCQxc .nav-link:focus {
  outline: none;
}
.cid-sqIbVSCQxc .navbar-toggler {
  position: relative;
}
.cid-sqIbVSCQxc .dropdown-item.active,
.cid-sqIbVSCQxc .dropdown-item:active {
  background: #29235c;
  color: initial;
}
.cid-sqIbVSCQxc .nav-link:hover,
.cid-sqIbVSCQxc .dropdown-item:hover {
  color: #4284df;
}
.cid-sqIbVSCQxc .widget-title,
.cid-sqIbVSCQxc .widget-icon {
  color: #ffffff;
}
.cid-sqe90nYbkl {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/header-blue-dark2-3-2000x668.png");
  overflow: hidden;
}
.cid-sqe90nYbkl svg {
  fill: #ffffff !important;
  pointer-events: none;
}
.cid-sqe90nYbkl #e2_shape {
  fill: #ffffff !important;
}
.cid-sqe90nYbkl .mbr-section-title.display-1 {
  line-height: 1.24;
}
.cid-sqe90nYbkl .mbr-text {
  font-weight: 300;
}
.cid-sqe90nYbkl .mbr-text.display-5 {
  font-size: 24px;
  line-height: 1.416;
}
.cid-sqe90nYbkl .btn-white {
  color: #404040 !important;
}
.cid-sqe90nYbkl .btn.display-4 {
  font-size: 14px;
  line-height: 1;
  padding: 21px 30px 20px;
}
.cid-sqe90nYbkl .btn.display-4 .mbr-iconfont {
  font-size: 0.9rem;
  margin-right: 5px;
}
@media (max-width: 991px) {
  .cid-sqe90nYbkl .img-wrap {
    display: none;
  }
}
@media (max-width: 768px) {
  .cid-sqe90nYbkl {
    padding: 30px;
  }
  .cid-sqe90nYbkl svg {
    display: none;
  }
}
.cid-sqe90nYbkl .mbr-section-title,
.cid-sqe90nYbkl .mbr-section-btn {
  color: #ffffff;
}
.cid-sqe90nYbkl .mbr-text,
.cid-sqe90nYbkl .mbr-section-btn {
  color: #ffffff;
}
.cid-sqAQvu8mre {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sqAQvu8mre .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #29235c;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-sqAQvu8mre .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-sqAQvu8mre .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-sqAQvu8mre .main-title.display-2 {
  line-height: 1.375;
}
.cid-sqAQvu8mre .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-sqAQvu8mre .mbr-text {
  color: #606060;
}
.cid-sqAQvu8mre .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-sqAQvu8mre .mbr-section-btn {
  margin-top: 24px;
}
.cid-sqAQvu8mre .mbr-section-btn .btn {
  margin-left: 0;
  padding: 18px 26px;
}
.cid-sqAQvu8mre .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-sqAQvu8mre .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-sqAQvu8mre .main-title,
.cid-sqAQvu8mre .mbr-section-btn DIV {
  text-align: center;
}
.cid-sqAQvu8mre .main-title,
.cid-sqAQvu8mre .mbr-section-btn {
  color: #003eff;
}
.cid-sqAQvu8mre .mbr-text,
.cid-sqAQvu8mre .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-rNWFNrtOoF {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffd402;
}
.cid-rNWFNrtOoF .back {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background-color: #ffffff;
}
.cid-rNWFNrtOoF img {
  width: 90%;
  max-width: 750px;
  border-radius: 10px;
}
.cid-rNWFNrtOoF p {
  margin-top: 0rem !important;
}
.cid-rNWFNrtOoF .content-wrapper {
  max-width: 750px;
  margin: auto;
  position: relative;
  padding: 0 2rem;
}
.cid-rNWFNrtOoF .content-wrapper {
  padding-top: 6rem;
}
.cid-rNWFNrtOoF h4 {
  position: absolute;
  width: fit-content;
  padding: 0;
  margin: 0;
  bottom: 3rem !important;
  left: 6rem;
  transform: rotate(270deg);
  transform-origin: bottom left;
}
@media (max-width: 1200px) {
  .cid-rNWFNrtOoF .content-wrapper {
    padding-top: 0rem;
  }
  .cid-rNWFNrtOoF p {
    margin-top: 0rem;
  }
}
@media (max-width: 992px) {
  .cid-rNWFNrtOoF .back {
    width: 100%;
    height: 75%;
  }
  .cid-rNWFNrtOoF .content-wrapper {
    padding: 0 3rem;
    padding-bottom: 4rem;
  }
  .cid-rNWFNrtOoF .content-wrapper h4 {
    bottom: 4rem;
  }
  .cid-rNWFNrtOoF p {
    margin-top: 4rem;
  }
}
.cid-rNWFNrtOoF .content-wrapper {
  padding-left: 8rem;
}
@media (max-width: 767px) {
  .cid-rNWFNrtOoF .content-wrapper {
    padding: 0rem;
    padding-bottom: 4rem;
  }
  .cid-rNWFNrtOoF .content-wrapper h4 {
    bottom: 4rem;
  }
  .cid-rNWFNrtOoF .content-wrapper {
    padding-left: 3rem;
  }
  .cid-rNWFNrtOoF h4 {
    left: 2rem;
  }
}
.cid-rNWFNrtOoF H1 {
  color: #29235c;
}
.cid-rNWFNrtOoF H4 {
  text-align: center;
  color: #0072c6;
}
.cid-rNWFNrtOoF .mbr-text,
.cid-rNWFNrtOoF .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-rNWFNrtOoF H3 {
  color: #29235c;
}
.cid-sqe2HidrqA {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sqe2HidrqA .mbr-text {
  color: #767676;
}
.cid-sqe2HidrqA h4 {
  font-weight: 500;
  font-size: 1.2rem;
}
.cid-sqe2HidrqA h4,
.cid-sqe2HidrqA h5 {
  text-align: center;
}
.cid-sqe2HidrqA p {
  text-align: center;
}
.cid-sqe2HidrqA .card-box {
  text-align: center;
}
.cid-sqe2HidrqA .card-img {
  font-size: 3rem;
}
.cid-sqe2HidrqA .img-icon {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
}
.cid-sqe2HidrqA .mbr-iconfont {
  color: #29235c;
}
.cid-sqe2HidrqA H2 {
  color: #29235c;
}
.cid-sqe2HidrqA .card-title,
.cid-sqe2HidrqA .card-img {
  color: #29235c;
}
.cid-sqT73e95ZI {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #ffd402;
}
.cid-sqT73e95ZI h4 {
  font-weight: 600;
  color: #e2e2e2;
}
.cid-sqT73e95ZI .mbr-section-subtitle {
  color: #767676;
}
.cid-sqT73e95ZI .article {
  padding-right: 2rem;
  padding-left: 2rem;
}
.cid-sqT73e95ZI .article-title-right {
  color: #2c1616;
}
.cid-sqT73e95ZI .article-title-left {
  color: #000000;
}
.cid-sqT73e95ZI H2 {
  color: #29235c;
  text-align: center;
}
.cid-sqT73e95ZI .mbr-text-right {
  color: #000000;
  text-align: left;
}
.cid-sqT73e95ZI .mbr-text-left {
  text-align: right;
}
.cid-sqT73e95ZI P {
  text-align: center;
}
.cid-sqT7f0WfYy {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffd402;
}
.cid-sqT7f0WfYy .mbr-text {
  color: #000000;
}
.cid-sqT7f0WfYy h4 {
  text-align: center;
}
.cid-sqT7f0WfYy p {
  text-align: center;
}
.cid-sqT7f0WfYy .card .card-img span {
  font-size: 40px;
  padding: 1.5rem;
  background: #29235c;
  border: 2px solid #29235c;
  color: #ffffff;
  border-radius: 50%;
  transition: all .3s;
}
.cid-sqT7f0WfYy .card:hover .card-img span {
  background: none;
  color: #29235c;
}
.cid-sqT7f0WfYy .card-title,
.cid-sqT7f0WfYy .card-img {
  color: #000000;
}
.cid-sqe6c3vV2G {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffd402;
}
.cid-sqe6c3vV2G h4 {
  font-weight: 600;
  color: #e2e2e2;
}
.cid-sqe6c3vV2G .mbr-section-subtitle {
  color: #767676;
}
.cid-sqe6c3vV2G .article {
  padding-right: 2rem;
  padding-left: 2rem;
}
.cid-sqe6c3vV2G .article-title-right {
  color: #2c1616;
}
.cid-sqe6c3vV2G .article-title-left {
  color: #000000;
}
.cid-sqe6c3vV2G H2 {
  color: #29235c;
  text-align: center;
}
.cid-sqe6c3vV2G .mbr-text-right {
  color: #000000;
  text-align: left;
}
.cid-sqe6c3vV2G .mbr-text-left {
  text-align: right;
}
.cid-sqe6c3vV2G P {
  text-align: center;
}
.cid-sqe6Oi3aHd {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #ffd402;
}
.cid-sqe6Oi3aHd h4 {
  font-weight: 600;
  color: #e2e2e2;
}
.cid-sqe6Oi3aHd .mbr-section-subtitle {
  color: #767676;
}
.cid-sqe6Oi3aHd .article {
  padding-right: 2rem;
  padding-left: 2rem;
}
.cid-sqe6Oi3aHd .article-title-right {
  color: #2c1616;
}
.cid-sqe6Oi3aHd .article-title-left {
  color: #000000;
}
.cid-sqe6Oi3aHd H2 {
  color: #29235c;
  text-align: center;
}
.cid-sqe6Oi3aHd .mbr-text-right {
  color: #000000;
  text-align: left;
}
.cid-sqe6Oi3aHd .mbr-text-left {
  text-align: right;
}
.cid-sqe6Oi3aHd P {
  text-align: center;
}
.cid-rNWI4nBEVs {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rNWI4nBEVs .block-text {
  color: #000000;
}
.cid-srgXcpMLhq {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-srgXcpMLhq .mbr-text {
  color: #000000;
}
.cid-srgXcpMLhq h4 {
  text-align: center;
}
.cid-srgXcpMLhq p {
  text-align: center;
}
.cid-srgXcpMLhq .card .card-img span {
  font-size: 40px;
  padding: 1.5rem;
  background: #ffd402;
  border: 2px solid #ffd402;
  color: #ffffff;
  border-radius: 50%;
  transition: all .3s;
}
.cid-srgXcpMLhq .card:hover .card-img span {
  background: none;
  color: #ffd402;
}
.cid-srgXcpMLhq .card-title,
.cid-srgXcpMLhq .card-img {
  color: #000000;
}
.cid-rNWFNww6Vf {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rNWFNww6Vf .mbr-text,
.cid-rNWFNww6Vf .mbr-section-btn {
  color: #000000;
}
.cid-rNWFNww6Vf p {
  z-index: 2;
  position: relative;
}
.cid-rNWFNww6Vf .author-box {
  display: flex;
  flex-direction: row;
}
.cid-rNWFNww6Vf .col-lg-12 {
  box-shadow: 0 10px 55px 5px rgba(57, 49, 129, 0.35);
  padding: 1rem 1.5rem;
}
.cid-rNWFNww6Vf .ico1 {
  font-size: 2rem;
}
.cid-rNWFNww6Vf .ico2 {
  position: absolute;
  bottom: 15%;
  right: 1.5rem;
  font-size: 8rem;
  z-index: 1;
  opacity: 0.1;
}
.cid-rNWFNww6Vf H3 {
  color: #29235c;
  text-align: center;
}
.cid-rNWFNvuOiT {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNWFNvuOiT .block-text {
  color: #000000;
  text-align: center;
}
.cid-rNWFNw1tHS {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rNWFNw1tHS .btn {
  border-radius: 20px;
}
.cid-rNWFNxeIuA {
  padding-top: 180px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-blue-dark-3-2000x520.png");
  position: relative;
  overflow: hidden;
}
.cid-rNWFNxeIuA .container {
  max-width: 1400px;
}
.cid-rNWFNxeIuA .card-img2 span {
  padding-top: 6px;
}
.cid-rNWFNxeIuA .soc-item a {
  padding-top: 5px;
}
.cid-rNWFNxeIuA .btn {
  padding: 0.4rem 0.6rem!important;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-rNWFNxeIuA .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-rNWFNxeIuA .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-rNWFNxeIuA .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rNWFNxeIuA svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-rNWFNxeIuA #e2_shape {
  fill: #ffffff !important;
}
.cid-rNWFNxeIuA .quote {
  background-color: #ffd402;
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #0072c6;
  text-align: center;
}
.cid-rNWFNxeIuA .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: #e3b600 transparent transparent;
}
.cid-rNWFNxeIuA .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #ffffff;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-rNWFNxeIuA .card-img {
  width: auto;
}
.cid-rNWFNxeIuA .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-rNWFNxeIuA .soc-item span {
  font-size: 1.4rem;
}
.cid-rNWFNxeIuA .soc-item:hover span {
  color: #29235c !important;
}
.cid-rNWFNxeIuA .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-rNWFNxeIuA .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-rNWFNxeIuA .media-wrap {
  margin-bottom: 1rem;
}
.cid-rNWFNxeIuA .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rNWFNxeIuA img {
  height: 4rem;
}
@media (max-width: 576px) {
  .cid-rNWFNxeIuA .item {
    justify-content: center;
  }
  .cid-rNWFNxeIuA .quote::after {
    left: 60px;
  }
}
.cid-rNWFNxeIuA .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-rNWFNxeIuA .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rNWFNxeIuA .text1 {
  color: #ffffff;
}
.cid-rNWFNxeIuA .item-title {
  color: #ffffff;
}
.cid-rNWFNxeIuA H5 {
  color: #ffffff;
  text-align: left;
}
.cid-rNWFNxeIuA .theme {
  color: #ffffff;
}
.cid-rNWFNxeIuA .copyright > p {
  color: #ff3366;
}
.cid-rNWFNxeIuA .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-sqIbVSCQxc .navbar {
  padding: .5rem 0;
  background: #29235c;
  transition: none;
  min-height: 50px;
}
.cid-sqIbVSCQxc .navbar-dropdown.bg-color.transparent.opened {
  background: #29235c;
}
.cid-sqIbVSCQxc a {
  font-style: normal;
}
.cid-sqIbVSCQxc .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sqIbVSCQxc .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-sqIbVSCQxc .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sqIbVSCQxc .content-text {
  margin-bottom: 0;
}
.cid-sqIbVSCQxc .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sqIbVSCQxc .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #29235c;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sqIbVSCQxc .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sqIbVSCQxc .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sqIbVSCQxc .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sqIbVSCQxc .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sqIbVSCQxc .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sqIbVSCQxc .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sqIbVSCQxc .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sqIbVSCQxc .nav-dropdown .link {
  font-weight: 400;
}
.cid-sqIbVSCQxc .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sqIbVSCQxc .content-right-side {
  text-align: center;
}
.cid-sqIbVSCQxc .menu-content-top {
  padding: 0 2rem;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-sqIbVSCQxc .menu-content-top {
    width: 100%;
    display: flex;
  }
  .cid-sqIbVSCQxc .menu-content-top .menu-content-right {
    display: block;
    position: absolute;
    visibility: hidden;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    transition: 0s all 0s;
  }
  .cid-sqIbVSCQxc .menu-content-top .menu-content-right .info-widget {
    padding: 1rem 0;
    text-align: center;
  }
  .cid-sqIbVSCQxc .navbar.opened .menu-content-right {
    visibility: visible;
    transition: 0s all 0.3s;
  }
  .cid-sqIbVSCQxc .menu-bottom {
    justify-content: flex-end;
  }
  .cid-sqIbVSCQxc img {
    height: 3.8rem !important;
  }
  .cid-sqIbVSCQxc .btn {
    display: -webkit-flex;
  }
  .cid-sqIbVSCQxc button.navbar-toggler {
    display: block;
  }
  .cid-sqIbVSCQxc .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-sqIbVSCQxc .navbar {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sqIbVSCQxc .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing,
  .cid-sqIbVSCQxc .navbar-collapse.show {
    display: block !important;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-nav,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-buttons,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sqIbVSCQxc .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-sqIbVSCQxc .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-sqIbVSCQxc .navbar.opened {
    padding-bottom: 8rem;
  }
  .cid-sqIbVSCQxc .navbar .navbar-collapse {
    max-height: calc(100vh - 8rem - 80px);
  }
}
@media (max-width: 575px) {
  .cid-sqIbVSCQxc .navbar.opened {
    padding-bottom: 10rem;
  }
  .cid-sqIbVSCQxc .navbar .navbar-collapse {
    max-height: calc(100vh - 10rem - 80px);
  }
}
.cid-sqIbVSCQxc .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sqIbVSCQxc .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sqIbVSCQxc .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sqIbVSCQxc .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid #e0e0e0;
}
.cid-sqIbVSCQxc .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqIbVSCQxc .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sqIbVSCQxc .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sqIbVSCQxc .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sqIbVSCQxc .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-sqIbVSCQxc .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-sqIbVSCQxc .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sqIbVSCQxc .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-sqIbVSCQxc .content-right-side {
    display: flex;
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sqIbVSCQxc .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-sqIbVSCQxc .navbar {
    display: block;
    padding: 0;
  }
  .cid-sqIbVSCQxc .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sqIbVSCQxc .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-sqIbVSCQxc .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-sqIbVSCQxc .navbar-short .menu-content-top {
    height: 0;
    min-height: 0;
    border: none;
  }
  .cid-sqIbVSCQxc .navbar-toggler {
    display: none;
  }
  .cid-sqIbVSCQxc .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sqIbVSCQxc .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqIbVSCQxc .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sqIbVSCQxc .menu-logo {
  margin-right: auto;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  border-radius: 10px;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu {
  background: #29235c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sqIbVSCQxc .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sqIbVSCQxc .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-sqIbVSCQxc .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sqIbVSCQxc button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sqIbVSCQxc button.navbar-toggler:focus {
  outline: none;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sqIbVSCQxc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sqIbVSCQxc .collapsed .btn {
  display: -webkit-flex;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sqIbVSCQxc .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1.5rem);
  }
  .cid-sqIbVSCQxc .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sqIbVSCQxc .collapsed button.navbar-toggler {
  display: block;
}
.cid-sqIbVSCQxc .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-sqIbVSCQxc .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sqIbVSCQxc .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-sqIbVSCQxc .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sqIbVSCQxc .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-sqIbVSCQxc .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-sqIbVSCQxc .nav-link:focus {
  outline: none;
}
.cid-sqIbVSCQxc .navbar-toggler {
  position: relative;
}
.cid-sqIbVSCQxc .dropdown-item.active,
.cid-sqIbVSCQxc .dropdown-item:active {
  background: #29235c;
  color: initial;
}
.cid-sqIbVSCQxc .nav-link:hover,
.cid-sqIbVSCQxc .dropdown-item:hover {
  color: #4284df;
}
.cid-sqIbVSCQxc .widget-title,
.cid-sqIbVSCQxc .widget-icon {
  color: #ffffff;
}
.cid-sqS3i89wV6 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sqS3i89wV6 .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #29235c;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-sqS3i89wV6 .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-sqS3i89wV6 .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-sqS3i89wV6 .main-title.display-2 {
  line-height: 1.375;
}
.cid-sqS3i89wV6 .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-sqS3i89wV6 .mbr-text {
  color: #606060;
}
.cid-sqS3i89wV6 .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-sqS3i89wV6 .mbr-section-btn {
  margin-top: 24px;
}
.cid-sqS3i89wV6 .mbr-section-btn .btn {
  margin-left: 0;
  padding: 18px 26px;
}
.cid-sqS3i89wV6 .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-sqS3i89wV6 .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-sqS3i89wV6 .main-title,
.cid-sqS3i89wV6 .mbr-section-btn DIV {
  text-align: center;
}
.cid-sqS3i89wV6 .main-title,
.cid-sqS3i89wV6 .mbr-section-btn {
  color: #003eff;
}
.cid-sqS3i89wV6 .mbr-text,
.cid-sqS3i89wV6 .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-sqj4ZnxaPf {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/header-blue-dark2-3-2000x668.png");
  overflow: hidden;
}
.cid-sqj4ZnxaPf svg {
  fill: #ffffff !important;
  pointer-events: none;
}
.cid-sqj4ZnxaPf #e2_shape {
  fill: #ffffff !important;
}
.cid-sqj4ZnxaPf .mbr-section-title.display-1 {
  line-height: 1.24;
}
.cid-sqj4ZnxaPf .mbr-text {
  font-weight: 300;
}
.cid-sqj4ZnxaPf .mbr-text.display-5 {
  font-size: 24px;
  line-height: 1.416;
}
.cid-sqj4ZnxaPf .btn-white {
  color: #404040 !important;
}
.cid-sqj4ZnxaPf .btn.display-4 {
  font-size: 14px;
  line-height: 1;
  padding: 21px 30px 20px;
}
.cid-sqj4ZnxaPf .btn.display-4 .mbr-iconfont {
  font-size: 0.9rem;
  margin-right: 5px;
}
@media (max-width: 991px) {
  .cid-sqj4ZnxaPf .img-wrap {
    display: none;
  }
}
@media (max-width: 768px) {
  .cid-sqj4ZnxaPf {
    padding: 30px;
  }
  .cid-sqj4ZnxaPf svg {
    display: none;
  }
}
.cid-sqj4ZnxaPf .mbr-section-title,
.cid-sqj4ZnxaPf .mbr-section-btn {
  color: #ffffff;
}
.cid-sqj4ZnxaPf .mbr-text,
.cid-sqj4ZnxaPf .mbr-section-btn {
  color: #ffffff;
}
.cid-rPVKLZr6Nr {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rPVKLZr6Nr img {
  width: 60%;
  max-width: 750px;
  border-radius: 10px;
}
.cid-rPVKLZr6Nr p {
  margin-top: 0rem;
  bottom: 1rem !important;
}
.cid-rPVKLZr6Nr .content-wrapper {
  max-width: 750px;
  margin: auto;
  position: relative;
  padding: 0 2rem;
}
.cid-rPVKLZr6Nr .content-wrapper {
  padding-top: 6rem;
}
.cid-rPVKLZr6Nr h4 {
  position: absolute;
  width: fit-content;
  padding: 0;
  margin: 0;
  bottom: 0rem !important;
  left: 6rem;
  transform: rotate(270deg);
  transform-origin: bottom left;
}
@media (max-width: 1200px) {
  .cid-rPVKLZr6Nr .content-wrapper {
    padding-top: 0rem;
  }
  .cid-rPVKLZr6Nr p {
    margin-top: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rPVKLZr6Nr .content-wrapper {
    padding: 0 3rem;
    padding-bottom: 4rem;
  }
  .cid-rPVKLZr6Nr .content-wrapper h4 {
    bottom: 4rem;
  }
  .cid-rPVKLZr6Nr p {
    margin-top: 4rem;
  }
}
.cid-rPVKLZr6Nr .content-wrapper {
  padding-left: 8rem;
}
@media (max-width: 767px) {
  .cid-rPVKLZr6Nr .content-wrapper {
    padding: 0rem;
    padding-bottom: 4rem;
  }
  .cid-rPVKLZr6Nr .content-wrapper h4 {
    bottom: 4rem;
  }
  .cid-rPVKLZr6Nr .content-wrapper {
    padding-left: 3rem;
  }
  .cid-rPVKLZr6Nr h4 {
    left: 2rem;
  }
}
.cid-rPVKLZr6Nr H1 {
  color: #000000;
}
.cid-rPVKLZr6Nr H4 {
  text-align: center;
  color: #0072c6;
}
.cid-rPVKLZr6Nr .mbr-text,
.cid-rPVKLZr6Nr .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-rPVKLZr6Nr H3 {
  color: #000000;
}
.cid-rPUUL1rXL4 {
  padding-top: 45px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/diensten-background2.jpeg");
}
.cid-rPUUL1rXL4 h4 {
  margin-bottom: 0;
  text-align: left;
}
.cid-rPUUL1rXL4 .card-box {
  padding-top: 3rem;
}
.cid-rPUUL1rXL4 .mbr-section-btn {
  width: 100%;
  text-align: center;
}
.cid-rPUUL1rXL4 .btn-md {
  padding: 1rem;
}
.cid-rPUUL1rXL4 .btn-primary-outline,
.cid-rPUUL1rXL4 .btn-secondary-outline,
.cid-rPUUL1rXL4 .btn-info-outline,
.cid-rPUUL1rXL4 .btn-success-outline,
.cid-rPUUL1rXL4 .btn-warning-outline,
.cid-rPUUL1rXL4 .btn-danger-outline,
.cid-rPUUL1rXL4 .btn-black-outline,
.cid-rPUUL1rXL4 .btn-white-outline {
  border: none;
  width: 100%;
  justify-content: space-between;
  padding: 0;
  margin: 0 0.25rem!important;
}
.cid-rPUUL1rXL4 .btn-primary-outline span,
.cid-rPUUL1rXL4 .btn-secondary-outline span,
.cid-rPUUL1rXL4 .btn-info-outline span,
.cid-rPUUL1rXL4 .btn-success-outline span,
.cid-rPUUL1rXL4 .btn-warning-outline span,
.cid-rPUUL1rXL4 .btn-danger-outline span,
.cid-rPUUL1rXL4 .btn-black-outline span,
.cid-rPUUL1rXL4 .btn-white-outline span {
  order: 2;
  font-size: 1.1rem;
  padding-top: 3px;
  transition: padding 0.3s!important;
}
.cid-rPUUL1rXL4 .btn-primary-outline:hover span,
.cid-rPUUL1rXL4 .btn-secondary-outline:hover span,
.cid-rPUUL1rXL4 .btn-info-outline:hover span,
.cid-rPUUL1rXL4 .btn-success-outline:hover span,
.cid-rPUUL1rXL4 .btn-warning-outline:hover span,
.cid-rPUUL1rXL4 .btn-danger-outline:hover span,
.cid-rPUUL1rXL4 .btn-black-outline:hover span,
.cid-rPUUL1rXL4 .btn-white-outline:hover span {
  padding-left: 10px;
}
.cid-rPUUL1rXL4 .btn-primary-outline:hover,
.cid-rPUUL1rXL4 .btn-secondary-outline:hover,
.cid-rPUUL1rXL4 .btn-info-outline:hover,
.cid-rPUUL1rXL4 .btn-success-outline:hover,
.cid-rPUUL1rXL4 .btn-warning-outline:hover,
.cid-rPUUL1rXL4 .btn-danger-outline:hover,
.cid-rPUUL1rXL4 .btn-black-outline:hover,
.cid-rPUUL1rXL4 .btn-white-outline:hover {
  background-color: transparent!important;
  color: #29235c !important;
  box-shadow: none!important;
}
.cid-rPUUL1rXL4 .btn-primary-outline:active,
.cid-rPUUL1rXL4 .btn-secondary-outline:active,
.cid-rPUUL1rXL4 .btn-info-outline:active,
.cid-rPUUL1rXL4 .btn-success-outline:active,
.cid-rPUUL1rXL4 .btn-warning-outline:active,
.cid-rPUUL1rXL4 .btn-danger-outline:active,
.cid-rPUUL1rXL4 .btn-black-outline:active,
.cid-rPUUL1rXL4 .btn-white-outline:active,
.cid-rPUUL1rXL4 .btn-primary-outline:focus,
.cid-rPUUL1rXL4 .btn-secondary-outline:focus,
.cid-rPUUL1rXL4 .btn-info-outline:focus,
.cid-rPUUL1rXL4 .btn-success-outline:focus,
.cid-rPUUL1rXL4 .btn-warning-outline:focus,
.cid-rPUUL1rXL4 .btn-danger-outline:focus,
.cid-rPUUL1rXL4 .btn-black-outline:focus,
.cid-rPUUL1rXL4 .btn-white-outline:focus {
  background-color: transparent!important;
  box-shadow: none!important;
}
.cid-rPUUL1rXL4 .btn-primary-outline .mbr-iconfont,
.cid-rPUUL1rXL4 .btn-secondary-outline .mbr-iconfont,
.cid-rPUUL1rXL4 .btn-info-outline .mbr-iconfont,
.cid-rPUUL1rXL4 .btn-success-outline .mbr-iconfont,
.cid-rPUUL1rXL4 .btn-warning-outline .mbr-iconfont,
.cid-rPUUL1rXL4 .btn-danger-outline .mbr-iconfont,
.cid-rPUUL1rXL4 .btn-black-outline .mbr-iconfont,
.cid-rPUUL1rXL4 .btn-white-outline .mbr-iconfont {
  margin-right: 0!important;
  padding-left: 0.4rem;
}
.cid-rPUUL1rXL4 .card-wrapper {
  overflow: hidden;
  height: 100%;
  position: relative;
  background-color: #ffd402;
  padding: 3rem 1.2rem 1.2rem 1.2rem;
  border-radius: 8px;
  transition: all 0.3s;
}
.cid-rPUUL1rXL4 .card-wrapper:hover {
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  transform: translateY(-1.5rem);
}
.cid-rPUUL1rXL4 .link-wrap {
  position: relative;
  padding-top: 14px;
}
.cid-rPUUL1rXL4 .link-wrap:hover {
  color: #29235c !important;
}
.cid-rPUUL1rXL4 .link-wrap:hover:hover .link-ico {
  color: #29235c !important;
}
.cid-rPUUL1rXL4 .line {
  width: 150%;
  height: 1px;
  background: lightgray;
  position: absolute;
  top: 0;
  left: -25%;
}
.cid-rPUUL1rXL4 img {
  border-radius: 100%;
  width: 150px;
  height: 150px;
  object-fit: cover;
}
.cid-rPUUL1rXL4 .card-title {
  color: #29235c;
  text-align: center;
}
.cid-rPUUL1rXL4 .row {
  justify-content: center;
}
.cid-rPUUL1rXL4 .main-title {
  text-align: center;
  color: #0072c6;
}
.cid-rPUUL1rXL4 P {
  text-align: center;
}
.cid-rPUUL1rXL4 .mbr-text,
.cid-rPUUL1rXL4 .link {
  text-align: left;
  color: #000000;
}
.cid-rPUUL1rXL4 DIV {
  color: #57468b;
}
@media (max-width: 576px) {
  .cid-rPUUL1rXL4 .card-wrapper:hover {
    transform: none;
    box-shadow: none;
  }
}
.cid-rPV2Gg9Jim {
  padding-top: 15px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/diensten-background-4.jpeg");
}
.cid-rPV2Gg9Jim h4 {
  margin-bottom: 0;
  text-align: left;
}
.cid-rPV2Gg9Jim .card-box {
  padding-top: 3rem;
}
.cid-rPV2Gg9Jim .mbr-section-btn {
  width: 100%;
  text-align: center;
}
.cid-rPV2Gg9Jim .btn-md {
  padding: 1rem;
}
.cid-rPV2Gg9Jim .btn-primary-outline,
.cid-rPV2Gg9Jim .btn-secondary-outline,
.cid-rPV2Gg9Jim .btn-info-outline,
.cid-rPV2Gg9Jim .btn-success-outline,
.cid-rPV2Gg9Jim .btn-warning-outline,
.cid-rPV2Gg9Jim .btn-danger-outline,
.cid-rPV2Gg9Jim .btn-black-outline,
.cid-rPV2Gg9Jim .btn-white-outline {
  border: none;
  width: 100%;
  justify-content: space-between;
  padding: 0;
  margin: 0 0.25rem!important;
}
.cid-rPV2Gg9Jim .btn-primary-outline span,
.cid-rPV2Gg9Jim .btn-secondary-outline span,
.cid-rPV2Gg9Jim .btn-info-outline span,
.cid-rPV2Gg9Jim .btn-success-outline span,
.cid-rPV2Gg9Jim .btn-warning-outline span,
.cid-rPV2Gg9Jim .btn-danger-outline span,
.cid-rPV2Gg9Jim .btn-black-outline span,
.cid-rPV2Gg9Jim .btn-white-outline span {
  order: 2;
  font-size: 1.1rem;
  padding-top: 3px;
  transition: padding 0.3s!important;
}
.cid-rPV2Gg9Jim .btn-primary-outline:hover span,
.cid-rPV2Gg9Jim .btn-secondary-outline:hover span,
.cid-rPV2Gg9Jim .btn-info-outline:hover span,
.cid-rPV2Gg9Jim .btn-success-outline:hover span,
.cid-rPV2Gg9Jim .btn-warning-outline:hover span,
.cid-rPV2Gg9Jim .btn-danger-outline:hover span,
.cid-rPV2Gg9Jim .btn-black-outline:hover span,
.cid-rPV2Gg9Jim .btn-white-outline:hover span {
  padding-left: 10px;
}
.cid-rPV2Gg9Jim .btn-primary-outline:hover,
.cid-rPV2Gg9Jim .btn-secondary-outline:hover,
.cid-rPV2Gg9Jim .btn-info-outline:hover,
.cid-rPV2Gg9Jim .btn-success-outline:hover,
.cid-rPV2Gg9Jim .btn-warning-outline:hover,
.cid-rPV2Gg9Jim .btn-danger-outline:hover,
.cid-rPV2Gg9Jim .btn-black-outline:hover,
.cid-rPV2Gg9Jim .btn-white-outline:hover {
  background-color: transparent!important;
  color: #29235c !important;
  box-shadow: none!important;
}
.cid-rPV2Gg9Jim .btn-primary-outline:active,
.cid-rPV2Gg9Jim .btn-secondary-outline:active,
.cid-rPV2Gg9Jim .btn-info-outline:active,
.cid-rPV2Gg9Jim .btn-success-outline:active,
.cid-rPV2Gg9Jim .btn-warning-outline:active,
.cid-rPV2Gg9Jim .btn-danger-outline:active,
.cid-rPV2Gg9Jim .btn-black-outline:active,
.cid-rPV2Gg9Jim .btn-white-outline:active,
.cid-rPV2Gg9Jim .btn-primary-outline:focus,
.cid-rPV2Gg9Jim .btn-secondary-outline:focus,
.cid-rPV2Gg9Jim .btn-info-outline:focus,
.cid-rPV2Gg9Jim .btn-success-outline:focus,
.cid-rPV2Gg9Jim .btn-warning-outline:focus,
.cid-rPV2Gg9Jim .btn-danger-outline:focus,
.cid-rPV2Gg9Jim .btn-black-outline:focus,
.cid-rPV2Gg9Jim .btn-white-outline:focus {
  background-color: transparent!important;
  box-shadow: none!important;
}
.cid-rPV2Gg9Jim .btn-primary-outline .mbr-iconfont,
.cid-rPV2Gg9Jim .btn-secondary-outline .mbr-iconfont,
.cid-rPV2Gg9Jim .btn-info-outline .mbr-iconfont,
.cid-rPV2Gg9Jim .btn-success-outline .mbr-iconfont,
.cid-rPV2Gg9Jim .btn-warning-outline .mbr-iconfont,
.cid-rPV2Gg9Jim .btn-danger-outline .mbr-iconfont,
.cid-rPV2Gg9Jim .btn-black-outline .mbr-iconfont,
.cid-rPV2Gg9Jim .btn-white-outline .mbr-iconfont {
  margin-right: 0!important;
  padding-left: 0.4rem;
}
.cid-rPV2Gg9Jim .card-wrapper {
  overflow: hidden;
  height: 100%;
  position: relative;
  background-color: #ffd402;
  padding: 3rem 1.2rem 1.2rem 1.2rem;
  border-radius: 8px;
  transition: all 0.3s;
}
.cid-rPV2Gg9Jim .card-wrapper:hover {
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  transform: translateY(-1.5rem);
}
.cid-rPV2Gg9Jim .link-wrap {
  position: relative;
  padding-top: 14px;
}
.cid-rPV2Gg9Jim .link-wrap:hover {
  color: #29235c !important;
}
.cid-rPV2Gg9Jim .link-wrap:hover:hover .link-ico {
  color: #29235c !important;
}
.cid-rPV2Gg9Jim .line {
  width: 150%;
  height: 1px;
  background: lightgray;
  position: absolute;
  top: 0;
  left: -25%;
}
.cid-rPV2Gg9Jim img {
  border-radius: 100%;
  width: 150px;
  height: 150px;
  object-fit: cover;
}
.cid-rPV2Gg9Jim .card-title {
  color: #29235c;
  text-align: center;
}
.cid-rPV2Gg9Jim .row {
  justify-content: center;
}
.cid-rPV2Gg9Jim .main-title {
  text-align: center;
  color: #0072c6;
}
.cid-rPV2Gg9Jim P {
  text-align: center;
}
.cid-rPV2Gg9Jim .mbr-text,
.cid-rPV2Gg9Jim .link {
  text-align: left;
  color: #000000;
}
.cid-rPV2Gg9Jim DIV {
  color: #57468b;
}
@media (max-width: 576px) {
  .cid-rPV2Gg9Jim .card-wrapper:hover {
    transform: none;
    box-shadow: none;
  }
}
.cid-rPV4bsRLpm {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rPV4bsRLpm .block-text {
  color: #000000;
}
.cid-srgXrBdwCv {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-srgXrBdwCv .mbr-text {
  color: #000000;
}
.cid-srgXrBdwCv h4 {
  text-align: center;
}
.cid-srgXrBdwCv p {
  text-align: center;
}
.cid-srgXrBdwCv .card .card-img span {
  font-size: 40px;
  padding: 1.5rem;
  background: #ffd402;
  border: 2px solid #ffd402;
  color: #ffffff;
  border-radius: 50%;
  transition: all .3s;
}
.cid-srgXrBdwCv .card:hover .card-img span {
  background: none;
  color: #ffd402;
}
.cid-srgXrBdwCv .card-title,
.cid-srgXrBdwCv .card-img {
  color: #000000;
}
.cid-rO2CbG6esI {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rO2CbG6esI .mbr-text,
.cid-rO2CbG6esI .mbr-section-btn {
  color: #000000;
}
.cid-rO2CbG6esI p {
  z-index: 2;
  position: relative;
}
.cid-rO2CbG6esI .author-box {
  display: flex;
  flex-direction: row;
}
.cid-rO2CbG6esI .col-lg-12 {
  box-shadow: 0 10px 55px 5px rgba(57, 49, 129, 0.35);
  padding: 1rem 1.5rem;
}
.cid-rO2CbG6esI .ico1 {
  font-size: 2rem;
}
.cid-rO2CbG6esI .ico2 {
  position: absolute;
  bottom: 15%;
  right: 1.5rem;
  font-size: 8rem;
  z-index: 1;
  opacity: 0.1;
}
.cid-rO2CbG6esI H3 {
  color: #29235c;
  text-align: center;
}
.cid-rO2CbGQEwk {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rO2CbGQEwk .block-text {
  color: #000000;
  text-align: center;
}
.cid-rO2CbHj5Ps {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rO2CbHj5Ps .btn {
  border-radius: 20px;
}
.cid-rO2CbHNqYI {
  padding-top: 180px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-blue-dark-3-2000x520.png");
  position: relative;
  overflow: hidden;
}
.cid-rO2CbHNqYI .container {
  max-width: 1400px;
}
.cid-rO2CbHNqYI .card-img2 span {
  padding-top: 6px;
}
.cid-rO2CbHNqYI .soc-item a {
  padding-top: 5px;
}
.cid-rO2CbHNqYI .btn {
  padding: 0.4rem 0.6rem!important;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-rO2CbHNqYI .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-rO2CbHNqYI .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-rO2CbHNqYI .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rO2CbHNqYI svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-rO2CbHNqYI #e2_shape {
  fill: #ffffff !important;
}
.cid-rO2CbHNqYI .quote {
  background-color: #ffd402;
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #0072c6;
  text-align: center;
}
.cid-rO2CbHNqYI .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: #e3b600 transparent transparent;
}
.cid-rO2CbHNqYI .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #ffffff;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-rO2CbHNqYI .card-img {
  width: auto;
}
.cid-rO2CbHNqYI .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-rO2CbHNqYI .soc-item span {
  font-size: 1.4rem;
}
.cid-rO2CbHNqYI .soc-item:hover span {
  color: #29235c !important;
}
.cid-rO2CbHNqYI .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-rO2CbHNqYI .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-rO2CbHNqYI .media-wrap {
  margin-bottom: 1rem;
}
.cid-rO2CbHNqYI .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rO2CbHNqYI img {
  height: 4rem;
}
@media (max-width: 576px) {
  .cid-rO2CbHNqYI .item {
    justify-content: center;
  }
  .cid-rO2CbHNqYI .quote::after {
    left: 60px;
  }
}
.cid-rO2CbHNqYI .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-rO2CbHNqYI .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rO2CbHNqYI .text1 {
  color: #ffffff;
}
.cid-rO2CbHNqYI .item-title {
  color: #ffffff;
}
.cid-rO2CbHNqYI H5 {
  color: #ffffff;
  text-align: left;
}
.cid-rO2CbHNqYI .theme {
  color: #ffffff;
}
.cid-rO2CbHNqYI .copyright > p {
  color: #ff3366;
}
.cid-rO2CbHNqYI .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-sqIbVSCQxc .navbar {
  padding: .5rem 0;
  background: #29235c;
  transition: none;
  min-height: 50px;
}
.cid-sqIbVSCQxc .navbar-dropdown.bg-color.transparent.opened {
  background: #29235c;
}
.cid-sqIbVSCQxc a {
  font-style: normal;
}
.cid-sqIbVSCQxc .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sqIbVSCQxc .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-sqIbVSCQxc .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sqIbVSCQxc .content-text {
  margin-bottom: 0;
}
.cid-sqIbVSCQxc .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sqIbVSCQxc .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #29235c;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sqIbVSCQxc .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sqIbVSCQxc .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sqIbVSCQxc .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sqIbVSCQxc .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sqIbVSCQxc .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sqIbVSCQxc .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sqIbVSCQxc .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sqIbVSCQxc .nav-dropdown .link {
  font-weight: 400;
}
.cid-sqIbVSCQxc .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sqIbVSCQxc .content-right-side {
  text-align: center;
}
.cid-sqIbVSCQxc .menu-content-top {
  padding: 0 2rem;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-sqIbVSCQxc .menu-content-top {
    width: 100%;
    display: flex;
  }
  .cid-sqIbVSCQxc .menu-content-top .menu-content-right {
    display: block;
    position: absolute;
    visibility: hidden;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    transition: 0s all 0s;
  }
  .cid-sqIbVSCQxc .menu-content-top .menu-content-right .info-widget {
    padding: 1rem 0;
    text-align: center;
  }
  .cid-sqIbVSCQxc .navbar.opened .menu-content-right {
    visibility: visible;
    transition: 0s all 0.3s;
  }
  .cid-sqIbVSCQxc .menu-bottom {
    justify-content: flex-end;
  }
  .cid-sqIbVSCQxc img {
    height: 3.8rem !important;
  }
  .cid-sqIbVSCQxc .btn {
    display: -webkit-flex;
  }
  .cid-sqIbVSCQxc button.navbar-toggler {
    display: block;
  }
  .cid-sqIbVSCQxc .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-sqIbVSCQxc .navbar {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sqIbVSCQxc .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing,
  .cid-sqIbVSCQxc .navbar-collapse.show {
    display: block !important;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-nav,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-buttons,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sqIbVSCQxc .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-sqIbVSCQxc .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-sqIbVSCQxc .navbar.opened {
    padding-bottom: 8rem;
  }
  .cid-sqIbVSCQxc .navbar .navbar-collapse {
    max-height: calc(100vh - 8rem - 80px);
  }
}
@media (max-width: 575px) {
  .cid-sqIbVSCQxc .navbar.opened {
    padding-bottom: 10rem;
  }
  .cid-sqIbVSCQxc .navbar .navbar-collapse {
    max-height: calc(100vh - 10rem - 80px);
  }
}
.cid-sqIbVSCQxc .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sqIbVSCQxc .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sqIbVSCQxc .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sqIbVSCQxc .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid #e0e0e0;
}
.cid-sqIbVSCQxc .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqIbVSCQxc .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sqIbVSCQxc .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sqIbVSCQxc .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sqIbVSCQxc .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-sqIbVSCQxc .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-sqIbVSCQxc .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sqIbVSCQxc .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-sqIbVSCQxc .content-right-side {
    display: flex;
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sqIbVSCQxc .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-sqIbVSCQxc .navbar {
    display: block;
    padding: 0;
  }
  .cid-sqIbVSCQxc .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sqIbVSCQxc .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-sqIbVSCQxc .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-sqIbVSCQxc .navbar-short .menu-content-top {
    height: 0;
    min-height: 0;
    border: none;
  }
  .cid-sqIbVSCQxc .navbar-toggler {
    display: none;
  }
  .cid-sqIbVSCQxc .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sqIbVSCQxc .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqIbVSCQxc .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sqIbVSCQxc .menu-logo {
  margin-right: auto;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  border-radius: 10px;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu {
  background: #29235c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sqIbVSCQxc .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sqIbVSCQxc .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-sqIbVSCQxc .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sqIbVSCQxc button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sqIbVSCQxc button.navbar-toggler:focus {
  outline: none;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sqIbVSCQxc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sqIbVSCQxc .collapsed .btn {
  display: -webkit-flex;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sqIbVSCQxc .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1.5rem);
  }
  .cid-sqIbVSCQxc .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sqIbVSCQxc .collapsed button.navbar-toggler {
  display: block;
}
.cid-sqIbVSCQxc .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-sqIbVSCQxc .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sqIbVSCQxc .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-sqIbVSCQxc .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sqIbVSCQxc .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-sqIbVSCQxc .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-sqIbVSCQxc .nav-link:focus {
  outline: none;
}
.cid-sqIbVSCQxc .navbar-toggler {
  position: relative;
}
.cid-sqIbVSCQxc .dropdown-item.active,
.cid-sqIbVSCQxc .dropdown-item:active {
  background: #29235c;
  color: initial;
}
.cid-sqIbVSCQxc .nav-link:hover,
.cid-sqIbVSCQxc .dropdown-item:hover {
  color: #4284df;
}
.cid-sqIbVSCQxc .widget-title,
.cid-sqIbVSCQxc .widget-icon {
  color: #ffffff;
}
.cid-sqj9mm6hqb {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/header-blue-dark2-3-2000x668.png");
  overflow: hidden;
}
.cid-sqj9mm6hqb svg {
  fill: #ffffff !important;
  pointer-events: none;
}
.cid-sqj9mm6hqb #e2_shape {
  fill: #ffffff !important;
}
.cid-sqj9mm6hqb .mbr-section-title.display-1 {
  line-height: 1.24;
}
.cid-sqj9mm6hqb .mbr-text {
  font-weight: 300;
}
.cid-sqj9mm6hqb .mbr-text.display-5 {
  font-size: 24px;
  line-height: 1.416;
}
.cid-sqj9mm6hqb .btn-white {
  color: #404040 !important;
}
.cid-sqj9mm6hqb .btn.display-4 {
  font-size: 14px;
  line-height: 1;
  padding: 21px 30px 20px;
}
.cid-sqj9mm6hqb .btn.display-4 .mbr-iconfont {
  font-size: 0.9rem;
  margin-right: 5px;
}
@media (max-width: 991px) {
  .cid-sqj9mm6hqb .img-wrap {
    display: none;
  }
}
@media (max-width: 768px) {
  .cid-sqj9mm6hqb {
    padding: 30px;
  }
  .cid-sqj9mm6hqb svg {
    display: none;
  }
}
.cid-sqj9mm6hqb .mbr-section-title,
.cid-sqj9mm6hqb .mbr-section-btn {
  color: #ffffff;
}
.cid-sqj9mm6hqb .mbr-text,
.cid-sqj9mm6hqb .mbr-section-btn {
  color: #ffffff;
}
.cid-sqjiVZoAex {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sqjiVZoAex .btn {
  border-radius: 20px !important;
}
.cid-sqjiVZoAex .mbr-overlay {
  background: linear-gradient(90deg, #4284df, #6441a5);
}
.cid-sqjiVZoAex h2,
.cid-sqjiVZoAex h3,
.cid-sqjiVZoAex h4,
.cid-sqjiVZoAex p {
  color: #ffffff;
}
.cid-sqjiVZoAex .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-sqjiVZoAex .text-block {
  border-bottom: 1px solid #767676;
}
.cid-sqjiVZoAex .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqjiVZoAex .mbr-text {
  color: #767676;
}
.cid-sqjiVZoAex a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-sqjiVZoAex .multi-horizontal {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sqjiVZoAex .input-group-btn {
  display: block;
  text-align: center;
}
.cid-sqjiVZoAex textarea.form-control {
  resize: none;
}
@media (max-width: 767px) {
  .cid-sqjiVZoAex h2 {
    padding-top: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-sqjiVZoAex .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-sqjiVZoAex .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  .cid-sqjiVZoAex .google-map {
    padding-bottom: 2rem;
  }
}
.cid-sqjiVZoAex H3 {
  color: #000000;
}
.cid-sqjiVZoAex H2 {
  color: #29235c;
}
.cid-sqYlAW18tV {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sqYlAW18tV .container {
  max-width: 1400px;
}
.cid-sqYlAW18tV img {
  width: 90%;
  object-fit: cover;
  height: 90%;
  min-height: 250px;
  text-align: center;
}
.cid-sqYlAW18tV p {
  line-height: 1.8;
}
.cid-sqYlAW18tV .mbr-section-subtitle {
  color: #29235c;
}
.cid-rO2KsgP0P0 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rO2KsgP0P0 H1 {
  color: #29235c;
  text-align: center;
}
.cid-rO2KsgP0P0 .mbr-text,
.cid-rO2KsgP0P0 .mbr-section-btn {
  color: #232323;
  text-align: center;
}
.cid-rO2KsgP0P0 H3 {
  color: #716c80;
}
.cid-srgXW3gZY8 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-srgXW3gZY8 .mbr-text {
  color: #000000;
}
.cid-srgXW3gZY8 h4 {
  text-align: center;
}
.cid-srgXW3gZY8 p {
  text-align: center;
}
.cid-srgXW3gZY8 .card .card-img span {
  font-size: 40px;
  padding: 1.5rem;
  background: #ffd402;
  border: 2px solid #ffd402;
  color: #ffffff;
  border-radius: 50%;
  transition: all .3s;
}
.cid-srgXW3gZY8 .card:hover .card-img span {
  background: none;
  color: #ffd402;
}
.cid-srgXW3gZY8 .card-title,
.cid-srgXW3gZY8 .card-img {
  color: #000000;
}
.cid-rO2JCrtRPD {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rO2JCrtRPD .mbr-text,
.cid-rO2JCrtRPD .mbr-section-btn {
  color: #000000;
}
.cid-rO2JCrtRPD p {
  z-index: 2;
  position: relative;
}
.cid-rO2JCrtRPD .author-box {
  display: flex;
  flex-direction: row;
}
.cid-rO2JCrtRPD .col-lg-12 {
  box-shadow: 0 10px 55px 5px rgba(57, 49, 129, 0.35);
  padding: 1rem 1.5rem;
}
.cid-rO2JCrtRPD .ico1 {
  font-size: 2rem;
}
.cid-rO2JCrtRPD .ico2 {
  position: absolute;
  bottom: 15%;
  right: 1.5rem;
  font-size: 8rem;
  z-index: 1;
  opacity: 0.1;
}
.cid-rO2JCrtRPD H3 {
  color: #29235c;
  text-align: center;
}
.cid-rO2JCtiFTb {
  padding-top: 180px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-blue-dark-3-2000x520.png");
  position: relative;
  overflow: hidden;
}
.cid-rO2JCtiFTb .container {
  max-width: 1400px;
}
.cid-rO2JCtiFTb .card-img2 span {
  padding-top: 6px;
}
.cid-rO2JCtiFTb .soc-item a {
  padding-top: 5px;
}
.cid-rO2JCtiFTb .btn {
  padding: 0.4rem 0.6rem!important;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-rO2JCtiFTb .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-rO2JCtiFTb .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-rO2JCtiFTb .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rO2JCtiFTb svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-rO2JCtiFTb #e2_shape {
  fill: #ffffff !important;
}
.cid-rO2JCtiFTb .quote {
  background-color: #ffd402;
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #0072c6;
  text-align: center;
}
.cid-rO2JCtiFTb .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: #e3b600 transparent transparent;
}
.cid-rO2JCtiFTb .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #ffffff;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-rO2JCtiFTb .card-img {
  width: auto;
}
.cid-rO2JCtiFTb .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-rO2JCtiFTb .soc-item span {
  font-size: 1.4rem;
}
.cid-rO2JCtiFTb .soc-item:hover span {
  color: #29235c !important;
}
.cid-rO2JCtiFTb .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-rO2JCtiFTb .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-rO2JCtiFTb .media-wrap {
  margin-bottom: 1rem;
}
.cid-rO2JCtiFTb .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rO2JCtiFTb img {
  height: 4rem;
}
@media (max-width: 576px) {
  .cid-rO2JCtiFTb .item {
    justify-content: center;
  }
  .cid-rO2JCtiFTb .quote::after {
    left: 60px;
  }
}
.cid-rO2JCtiFTb .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-rO2JCtiFTb .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rO2JCtiFTb .text1 {
  color: #ffffff;
}
.cid-rO2JCtiFTb .item-title {
  color: #ffffff;
}
.cid-rO2JCtiFTb H5 {
  color: #ffffff;
  text-align: left;
}
.cid-rO2JCtiFTb .theme {
  color: #ffffff;
}
.cid-rO2JCtiFTb .copyright > p {
  color: #ff3366;
}
.cid-rO2JCtiFTb .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-sqIbVSCQxc .navbar {
  padding: .5rem 0;
  background: #29235c;
  transition: none;
  min-height: 50px;
}
.cid-sqIbVSCQxc .navbar-dropdown.bg-color.transparent.opened {
  background: #29235c;
}
.cid-sqIbVSCQxc a {
  font-style: normal;
}
.cid-sqIbVSCQxc .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sqIbVSCQxc .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-sqIbVSCQxc .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sqIbVSCQxc .content-text {
  margin-bottom: 0;
}
.cid-sqIbVSCQxc .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sqIbVSCQxc .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #29235c;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sqIbVSCQxc .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sqIbVSCQxc .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sqIbVSCQxc .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sqIbVSCQxc .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sqIbVSCQxc .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sqIbVSCQxc .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sqIbVSCQxc .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sqIbVSCQxc .nav-dropdown .link {
  font-weight: 400;
}
.cid-sqIbVSCQxc .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sqIbVSCQxc .content-right-side {
  text-align: center;
}
.cid-sqIbVSCQxc .menu-content-top {
  padding: 0 2rem;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-sqIbVSCQxc .menu-content-top {
    width: 100%;
    display: flex;
  }
  .cid-sqIbVSCQxc .menu-content-top .menu-content-right {
    display: block;
    position: absolute;
    visibility: hidden;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    transition: 0s all 0s;
  }
  .cid-sqIbVSCQxc .menu-content-top .menu-content-right .info-widget {
    padding: 1rem 0;
    text-align: center;
  }
  .cid-sqIbVSCQxc .navbar.opened .menu-content-right {
    visibility: visible;
    transition: 0s all 0.3s;
  }
  .cid-sqIbVSCQxc .menu-bottom {
    justify-content: flex-end;
  }
  .cid-sqIbVSCQxc img {
    height: 3.8rem !important;
  }
  .cid-sqIbVSCQxc .btn {
    display: -webkit-flex;
  }
  .cid-sqIbVSCQxc button.navbar-toggler {
    display: block;
  }
  .cid-sqIbVSCQxc .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-sqIbVSCQxc .navbar {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sqIbVSCQxc .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing,
  .cid-sqIbVSCQxc .navbar-collapse.show {
    display: block !important;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-nav,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-buttons,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sqIbVSCQxc .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-sqIbVSCQxc .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-sqIbVSCQxc .navbar.opened {
    padding-bottom: 8rem;
  }
  .cid-sqIbVSCQxc .navbar .navbar-collapse {
    max-height: calc(100vh - 8rem - 80px);
  }
}
@media (max-width: 575px) {
  .cid-sqIbVSCQxc .navbar.opened {
    padding-bottom: 10rem;
  }
  .cid-sqIbVSCQxc .navbar .navbar-collapse {
    max-height: calc(100vh - 10rem - 80px);
  }
}
.cid-sqIbVSCQxc .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sqIbVSCQxc .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sqIbVSCQxc .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sqIbVSCQxc .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid #e0e0e0;
}
.cid-sqIbVSCQxc .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqIbVSCQxc .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sqIbVSCQxc .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sqIbVSCQxc .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sqIbVSCQxc .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-sqIbVSCQxc .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-sqIbVSCQxc .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sqIbVSCQxc .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-sqIbVSCQxc .content-right-side {
    display: flex;
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sqIbVSCQxc .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-sqIbVSCQxc .navbar {
    display: block;
    padding: 0;
  }
  .cid-sqIbVSCQxc .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sqIbVSCQxc .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-sqIbVSCQxc .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-sqIbVSCQxc .navbar-short .menu-content-top {
    height: 0;
    min-height: 0;
    border: none;
  }
  .cid-sqIbVSCQxc .navbar-toggler {
    display: none;
  }
  .cid-sqIbVSCQxc .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sqIbVSCQxc .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqIbVSCQxc .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sqIbVSCQxc .menu-logo {
  margin-right: auto;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  border-radius: 10px;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu {
  background: #29235c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sqIbVSCQxc .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sqIbVSCQxc .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-sqIbVSCQxc .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sqIbVSCQxc button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sqIbVSCQxc button.navbar-toggler:focus {
  outline: none;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sqIbVSCQxc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sqIbVSCQxc .collapsed .btn {
  display: -webkit-flex;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sqIbVSCQxc .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1.5rem);
  }
  .cid-sqIbVSCQxc .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sqIbVSCQxc .collapsed button.navbar-toggler {
  display: block;
}
.cid-sqIbVSCQxc .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-sqIbVSCQxc .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sqIbVSCQxc .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-sqIbVSCQxc .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sqIbVSCQxc .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-sqIbVSCQxc .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-sqIbVSCQxc .nav-link:focus {
  outline: none;
}
.cid-sqIbVSCQxc .navbar-toggler {
  position: relative;
}
.cid-sqIbVSCQxc .dropdown-item.active,
.cid-sqIbVSCQxc .dropdown-item:active {
  background: #29235c;
  color: initial;
}
.cid-sqIbVSCQxc .nav-link:hover,
.cid-sqIbVSCQxc .dropdown-item:hover {
  color: #4284df;
}
.cid-sqIbVSCQxc .widget-title,
.cid-sqIbVSCQxc .widget-icon {
  color: #ffffff;
}
.cid-sqjT1UW7pb {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/header-blue-dark2-3-2000x668.png");
  overflow: hidden;
}
.cid-sqjT1UW7pb svg {
  fill: #ffffff !important;
  pointer-events: none;
}
.cid-sqjT1UW7pb #e2_shape {
  fill: #ffffff !important;
}
.cid-sqjT1UW7pb .mbr-section-title.display-1 {
  line-height: 1.24;
}
.cid-sqjT1UW7pb .mbr-text {
  font-weight: 300;
}
.cid-sqjT1UW7pb .mbr-text.display-5 {
  font-size: 24px;
  line-height: 1.416;
}
.cid-sqjT1UW7pb .btn-white {
  color: #404040 !important;
}
.cid-sqjT1UW7pb .btn.display-4 {
  font-size: 14px;
  line-height: 1;
  padding: 21px 30px 20px;
}
.cid-sqjT1UW7pb .btn.display-4 .mbr-iconfont {
  font-size: 0.9rem;
  margin-right: 5px;
}
@media (max-width: 991px) {
  .cid-sqjT1UW7pb .img-wrap {
    display: none;
  }
}
@media (max-width: 768px) {
  .cid-sqjT1UW7pb {
    padding: 30px;
  }
  .cid-sqjT1UW7pb svg {
    display: none;
  }
}
.cid-sqjT1UW7pb .mbr-section-title,
.cid-sqjT1UW7pb .mbr-section-btn {
  color: #ffffff;
}
.cid-sqjT1UW7pb .mbr-text,
.cid-sqjT1UW7pb .mbr-section-btn {
  color: #ffffff;
}
.cid-rOB4smMxee {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rOB4smMxee img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-rOB4smMxee H1 {
  color: #29235c;
}
.cid-rOB4smMxee .mbr-text,
.cid-rOB4smMxee .mbr-section-btn {
  color: #716c80;
}
.cid-rOB4smMxee H3 {
  color: #716c80;
}
.cid-rOB4smMxee .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-rOB4smMxee .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-rOB4smMxee .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-rOB4smMxee .link:hover {
  color: #29235c !important;
}
.cid-rOB4smMxee .link:hover .link-ico {
  color: #29235c !important;
  padding-left: 10px;
}
.cid-rOB4smMxee DIV {
  color: #57468b;
}
.cid-rOB4smMxee .mbr-text,
.cid-rOB4smMxee .media-content {
  color: #000000;
}
.cid-rOB43mj456 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rOB43mj456 .mbr-text,
.cid-rOB43mj456 .mbr-section-btn {
  color: #000000;
}
.cid-rOB43mj456 p {
  z-index: 2;
  position: relative;
}
.cid-rOB43mj456 .author-box {
  display: flex;
  flex-direction: row;
}
.cid-rOB43mj456 .col-lg-12 {
  box-shadow: 0 10px 55px 5px rgba(57, 49, 129, 0.35);
  padding: 1rem 1.5rem;
}
.cid-rOB43mj456 .ico1 {
  font-size: 2rem;
}
.cid-rOB43mj456 .ico2 {
  position: absolute;
  bottom: 15%;
  right: 1.5rem;
  font-size: 8rem;
  z-index: 1;
  opacity: 0.1;
}
.cid-rOB43mj456 H3 {
  color: #29235c;
  text-align: center;
}
.cid-rOB43ohi6Q {
  padding-top: 180px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-blue-dark-3-2000x520.png");
  position: relative;
  overflow: hidden;
}
.cid-rOB43ohi6Q .container {
  max-width: 1400px;
}
.cid-rOB43ohi6Q .card-img2 span {
  padding-top: 6px;
}
.cid-rOB43ohi6Q .soc-item a {
  padding-top: 5px;
}
.cid-rOB43ohi6Q .btn {
  padding: 0.4rem 0.6rem!important;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-rOB43ohi6Q .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-rOB43ohi6Q .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-rOB43ohi6Q .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rOB43ohi6Q svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-rOB43ohi6Q #e2_shape {
  fill: #ffffff !important;
}
.cid-rOB43ohi6Q .quote {
  background-color: #ffd402;
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #0072c6;
  text-align: center;
}
.cid-rOB43ohi6Q .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: #e3b600 transparent transparent;
}
.cid-rOB43ohi6Q .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #ffffff;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-rOB43ohi6Q .card-img {
  width: auto;
}
.cid-rOB43ohi6Q .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-rOB43ohi6Q .soc-item span {
  font-size: 1.4rem;
}
.cid-rOB43ohi6Q .soc-item:hover span {
  color: #29235c !important;
}
.cid-rOB43ohi6Q .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-rOB43ohi6Q .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-rOB43ohi6Q .media-wrap {
  margin-bottom: 1rem;
}
.cid-rOB43ohi6Q .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rOB43ohi6Q img {
  height: 4rem;
}
@media (max-width: 576px) {
  .cid-rOB43ohi6Q .item {
    justify-content: center;
  }
  .cid-rOB43ohi6Q .quote::after {
    left: 60px;
  }
}
.cid-rOB43ohi6Q .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-rOB43ohi6Q .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rOB43ohi6Q .text1 {
  color: #ffffff;
}
.cid-rOB43ohi6Q .item-title {
  color: #ffffff;
}
.cid-rOB43ohi6Q H5 {
  color: #ffffff;
  text-align: left;
}
.cid-rOB43ohi6Q .theme {
  color: #ffffff;
}
.cid-rOB43ohi6Q .copyright > p {
  color: #ff3366;
}
.cid-rOB43ohi6Q .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-sqIbVSCQxc .navbar {
  padding: .5rem 0;
  background: #29235c;
  transition: none;
  min-height: 50px;
}
.cid-sqIbVSCQxc .navbar-dropdown.bg-color.transparent.opened {
  background: #29235c;
}
.cid-sqIbVSCQxc a {
  font-style: normal;
}
.cid-sqIbVSCQxc .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sqIbVSCQxc .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-sqIbVSCQxc .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sqIbVSCQxc .content-text {
  margin-bottom: 0;
}
.cid-sqIbVSCQxc .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sqIbVSCQxc .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #29235c;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sqIbVSCQxc .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sqIbVSCQxc .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sqIbVSCQxc .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sqIbVSCQxc .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sqIbVSCQxc .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sqIbVSCQxc .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sqIbVSCQxc .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sqIbVSCQxc .nav-dropdown .link {
  font-weight: 400;
}
.cid-sqIbVSCQxc .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sqIbVSCQxc .content-right-side {
  text-align: center;
}
.cid-sqIbVSCQxc .menu-content-top {
  padding: 0 2rem;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-sqIbVSCQxc .menu-content-top {
    width: 100%;
    display: flex;
  }
  .cid-sqIbVSCQxc .menu-content-top .menu-content-right {
    display: block;
    position: absolute;
    visibility: hidden;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    transition: 0s all 0s;
  }
  .cid-sqIbVSCQxc .menu-content-top .menu-content-right .info-widget {
    padding: 1rem 0;
    text-align: center;
  }
  .cid-sqIbVSCQxc .navbar.opened .menu-content-right {
    visibility: visible;
    transition: 0s all 0.3s;
  }
  .cid-sqIbVSCQxc .menu-bottom {
    justify-content: flex-end;
  }
  .cid-sqIbVSCQxc img {
    height: 3.8rem !important;
  }
  .cid-sqIbVSCQxc .btn {
    display: -webkit-flex;
  }
  .cid-sqIbVSCQxc button.navbar-toggler {
    display: block;
  }
  .cid-sqIbVSCQxc .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-sqIbVSCQxc .navbar {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sqIbVSCQxc .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing,
  .cid-sqIbVSCQxc .navbar-collapse.show {
    display: block !important;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-nav,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-buttons,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sqIbVSCQxc .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-sqIbVSCQxc .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-sqIbVSCQxc .navbar.opened {
    padding-bottom: 8rem;
  }
  .cid-sqIbVSCQxc .navbar .navbar-collapse {
    max-height: calc(100vh - 8rem - 80px);
  }
}
@media (max-width: 575px) {
  .cid-sqIbVSCQxc .navbar.opened {
    padding-bottom: 10rem;
  }
  .cid-sqIbVSCQxc .navbar .navbar-collapse {
    max-height: calc(100vh - 10rem - 80px);
  }
}
.cid-sqIbVSCQxc .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sqIbVSCQxc .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sqIbVSCQxc .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sqIbVSCQxc .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid #e0e0e0;
}
.cid-sqIbVSCQxc .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqIbVSCQxc .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sqIbVSCQxc .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sqIbVSCQxc .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sqIbVSCQxc .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-sqIbVSCQxc .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-sqIbVSCQxc .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sqIbVSCQxc .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-sqIbVSCQxc .content-right-side {
    display: flex;
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sqIbVSCQxc .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-sqIbVSCQxc .navbar {
    display: block;
    padding: 0;
  }
  .cid-sqIbVSCQxc .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sqIbVSCQxc .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-sqIbVSCQxc .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-sqIbVSCQxc .navbar-short .menu-content-top {
    height: 0;
    min-height: 0;
    border: none;
  }
  .cid-sqIbVSCQxc .navbar-toggler {
    display: none;
  }
  .cid-sqIbVSCQxc .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sqIbVSCQxc .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqIbVSCQxc .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sqIbVSCQxc .menu-logo {
  margin-right: auto;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  border-radius: 10px;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu {
  background: #29235c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sqIbVSCQxc .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sqIbVSCQxc .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-sqIbVSCQxc .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sqIbVSCQxc button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sqIbVSCQxc button.navbar-toggler:focus {
  outline: none;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sqIbVSCQxc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sqIbVSCQxc .collapsed .btn {
  display: -webkit-flex;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sqIbVSCQxc .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1.5rem);
  }
  .cid-sqIbVSCQxc .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sqIbVSCQxc .collapsed button.navbar-toggler {
  display: block;
}
.cid-sqIbVSCQxc .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-sqIbVSCQxc .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sqIbVSCQxc .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-sqIbVSCQxc .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sqIbVSCQxc .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-sqIbVSCQxc .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-sqIbVSCQxc .nav-link:focus {
  outline: none;
}
.cid-sqIbVSCQxc .navbar-toggler {
  position: relative;
}
.cid-sqIbVSCQxc .dropdown-item.active,
.cid-sqIbVSCQxc .dropdown-item:active {
  background: #29235c;
  color: initial;
}
.cid-sqIbVSCQxc .nav-link:hover,
.cid-sqIbVSCQxc .dropdown-item:hover {
  color: #4284df;
}
.cid-sqIbVSCQxc .widget-title,
.cid-sqIbVSCQxc .widget-icon {
  color: #ffffff;
}
.cid-sqjTd5NGt5 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/header-blue-dark2-3-2000x668.png");
  overflow: hidden;
}
.cid-sqjTd5NGt5 svg {
  fill: #ffffff !important;
  pointer-events: none;
}
.cid-sqjTd5NGt5 #e2_shape {
  fill: #ffffff !important;
}
.cid-sqjTd5NGt5 .mbr-section-title.display-1 {
  line-height: 1.24;
}
.cid-sqjTd5NGt5 .mbr-text {
  font-weight: 300;
}
.cid-sqjTd5NGt5 .mbr-text.display-5 {
  font-size: 24px;
  line-height: 1.416;
}
.cid-sqjTd5NGt5 .btn-white {
  color: #404040 !important;
}
.cid-sqjTd5NGt5 .btn.display-4 {
  font-size: 14px;
  line-height: 1;
  padding: 21px 30px 20px;
}
.cid-sqjTd5NGt5 .btn.display-4 .mbr-iconfont {
  font-size: 0.9rem;
  margin-right: 5px;
}
@media (max-width: 991px) {
  .cid-sqjTd5NGt5 .img-wrap {
    display: none;
  }
}
@media (max-width: 768px) {
  .cid-sqjTd5NGt5 {
    padding: 30px;
  }
  .cid-sqjTd5NGt5 svg {
    display: none;
  }
}
.cid-sqjTd5NGt5 .mbr-section-title,
.cid-sqjTd5NGt5 .mbr-section-btn {
  color: #ffffff;
}
.cid-sqjTd5NGt5 .mbr-text,
.cid-sqjTd5NGt5 .mbr-section-btn {
  color: #ffffff;
}
.cid-rOB5mGtWB2 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rOB5mGtWB2 img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-rOB5mGtWB2 H1 {
  color: #29235c;
}
.cid-rOB5mGtWB2 .mbr-text,
.cid-rOB5mGtWB2 .mbr-section-btn {
  color: #716c80;
}
.cid-rOB5mGtWB2 H3 {
  color: #716c80;
}
.cid-rOB5mGtWB2 .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-rOB5mGtWB2 .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-rOB5mGtWB2 .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-rOB5mGtWB2 .link:hover {
  color: #29235c !important;
}
.cid-rOB5mGtWB2 .link:hover .link-ico {
  color: #29235c !important;
  padding-left: 10px;
}
.cid-rOB5mGtWB2 DIV {
  color: #57468b;
}
.cid-rOB5mGtWB2 .mbr-text,
.cid-rOB5mGtWB2 .media-content {
  color: #000000;
}
.cid-rOB5mHjYUm {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rOB5mHjYUm .mbr-text,
.cid-rOB5mHjYUm .mbr-section-btn {
  color: #000000;
}
.cid-rOB5mHjYUm p {
  z-index: 2;
  position: relative;
}
.cid-rOB5mHjYUm .author-box {
  display: flex;
  flex-direction: row;
}
.cid-rOB5mHjYUm .col-lg-12 {
  box-shadow: 0 10px 55px 5px rgba(57, 49, 129, 0.35);
  padding: 1rem 1.5rem;
}
.cid-rOB5mHjYUm .ico1 {
  font-size: 2rem;
}
.cid-rOB5mHjYUm .ico2 {
  position: absolute;
  bottom: 15%;
  right: 1.5rem;
  font-size: 8rem;
  z-index: 1;
  opacity: 0.1;
}
.cid-rOB5mHjYUm H3 {
  color: #29235c;
  text-align: center;
}
.cid-rOB5mHXoYL {
  padding-top: 180px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-blue-dark-3-2000x520.png");
  position: relative;
  overflow: hidden;
}
.cid-rOB5mHXoYL .container {
  max-width: 1400px;
}
.cid-rOB5mHXoYL .card-img2 span {
  padding-top: 6px;
}
.cid-rOB5mHXoYL .soc-item a {
  padding-top: 5px;
}
.cid-rOB5mHXoYL .btn {
  padding: 0.4rem 0.6rem!important;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-rOB5mHXoYL .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-rOB5mHXoYL .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-rOB5mHXoYL .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rOB5mHXoYL svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-rOB5mHXoYL #e2_shape {
  fill: #ffffff !important;
}
.cid-rOB5mHXoYL .quote {
  background-color: #ffd402;
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #0072c6;
  text-align: center;
}
.cid-rOB5mHXoYL .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: #e3b600 transparent transparent;
}
.cid-rOB5mHXoYL .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #ffffff;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-rOB5mHXoYL .card-img {
  width: auto;
}
.cid-rOB5mHXoYL .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-rOB5mHXoYL .soc-item span {
  font-size: 1.4rem;
}
.cid-rOB5mHXoYL .soc-item:hover span {
  color: #29235c !important;
}
.cid-rOB5mHXoYL .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-rOB5mHXoYL .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-rOB5mHXoYL .media-wrap {
  margin-bottom: 1rem;
}
.cid-rOB5mHXoYL .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rOB5mHXoYL img {
  height: 4rem;
}
@media (max-width: 576px) {
  .cid-rOB5mHXoYL .item {
    justify-content: center;
  }
  .cid-rOB5mHXoYL .quote::after {
    left: 60px;
  }
}
.cid-rOB5mHXoYL .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-rOB5mHXoYL .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rOB5mHXoYL .text1 {
  color: #ffffff;
}
.cid-rOB5mHXoYL .item-title {
  color: #ffffff;
}
.cid-rOB5mHXoYL H5 {
  color: #ffffff;
  text-align: left;
}
.cid-rOB5mHXoYL .theme {
  color: #ffffff;
}
.cid-rOB5mHXoYL .copyright > p {
  color: #ff3366;
}
.cid-rOB5mHXoYL .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-sqIbVSCQxc .navbar {
  padding: .5rem 0;
  background: #29235c;
  transition: none;
  min-height: 50px;
}
.cid-sqIbVSCQxc .navbar-dropdown.bg-color.transparent.opened {
  background: #29235c;
}
.cid-sqIbVSCQxc a {
  font-style: normal;
}
.cid-sqIbVSCQxc .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sqIbVSCQxc .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-sqIbVSCQxc .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sqIbVSCQxc .content-text {
  margin-bottom: 0;
}
.cid-sqIbVSCQxc .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sqIbVSCQxc .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #29235c;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sqIbVSCQxc .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sqIbVSCQxc .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sqIbVSCQxc .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sqIbVSCQxc .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sqIbVSCQxc .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sqIbVSCQxc .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sqIbVSCQxc .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sqIbVSCQxc .nav-dropdown .link {
  font-weight: 400;
}
.cid-sqIbVSCQxc .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sqIbVSCQxc .content-right-side {
  text-align: center;
}
.cid-sqIbVSCQxc .menu-content-top {
  padding: 0 2rem;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-sqIbVSCQxc .menu-content-top {
    width: 100%;
    display: flex;
  }
  .cid-sqIbVSCQxc .menu-content-top .menu-content-right {
    display: block;
    position: absolute;
    visibility: hidden;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    transition: 0s all 0s;
  }
  .cid-sqIbVSCQxc .menu-content-top .menu-content-right .info-widget {
    padding: 1rem 0;
    text-align: center;
  }
  .cid-sqIbVSCQxc .navbar.opened .menu-content-right {
    visibility: visible;
    transition: 0s all 0.3s;
  }
  .cid-sqIbVSCQxc .menu-bottom {
    justify-content: flex-end;
  }
  .cid-sqIbVSCQxc img {
    height: 3.8rem !important;
  }
  .cid-sqIbVSCQxc .btn {
    display: -webkit-flex;
  }
  .cid-sqIbVSCQxc button.navbar-toggler {
    display: block;
  }
  .cid-sqIbVSCQxc .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-sqIbVSCQxc .navbar {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sqIbVSCQxc .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing,
  .cid-sqIbVSCQxc .navbar-collapse.show {
    display: block !important;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-nav,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-buttons,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sqIbVSCQxc .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-sqIbVSCQxc .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-sqIbVSCQxc .navbar.opened {
    padding-bottom: 8rem;
  }
  .cid-sqIbVSCQxc .navbar .navbar-collapse {
    max-height: calc(100vh - 8rem - 80px);
  }
}
@media (max-width: 575px) {
  .cid-sqIbVSCQxc .navbar.opened {
    padding-bottom: 10rem;
  }
  .cid-sqIbVSCQxc .navbar .navbar-collapse {
    max-height: calc(100vh - 10rem - 80px);
  }
}
.cid-sqIbVSCQxc .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sqIbVSCQxc .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sqIbVSCQxc .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sqIbVSCQxc .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid #e0e0e0;
}
.cid-sqIbVSCQxc .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqIbVSCQxc .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sqIbVSCQxc .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sqIbVSCQxc .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sqIbVSCQxc .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-sqIbVSCQxc .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-sqIbVSCQxc .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sqIbVSCQxc .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-sqIbVSCQxc .content-right-side {
    display: flex;
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sqIbVSCQxc .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-sqIbVSCQxc .navbar {
    display: block;
    padding: 0;
  }
  .cid-sqIbVSCQxc .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sqIbVSCQxc .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-sqIbVSCQxc .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-sqIbVSCQxc .navbar-short .menu-content-top {
    height: 0;
    min-height: 0;
    border: none;
  }
  .cid-sqIbVSCQxc .navbar-toggler {
    display: none;
  }
  .cid-sqIbVSCQxc .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sqIbVSCQxc .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqIbVSCQxc .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sqIbVSCQxc .menu-logo {
  margin-right: auto;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  border-radius: 10px;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu {
  background: #29235c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sqIbVSCQxc .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sqIbVSCQxc .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-sqIbVSCQxc .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sqIbVSCQxc button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sqIbVSCQxc button.navbar-toggler:focus {
  outline: none;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sqIbVSCQxc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sqIbVSCQxc .collapsed .btn {
  display: -webkit-flex;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sqIbVSCQxc .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1.5rem);
  }
  .cid-sqIbVSCQxc .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sqIbVSCQxc .collapsed button.navbar-toggler {
  display: block;
}
.cid-sqIbVSCQxc .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-sqIbVSCQxc .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sqIbVSCQxc .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-sqIbVSCQxc .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sqIbVSCQxc .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-sqIbVSCQxc .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-sqIbVSCQxc .nav-link:focus {
  outline: none;
}
.cid-sqIbVSCQxc .navbar-toggler {
  position: relative;
}
.cid-sqIbVSCQxc .dropdown-item.active,
.cid-sqIbVSCQxc .dropdown-item:active {
  background: #29235c;
  color: initial;
}
.cid-sqIbVSCQxc .nav-link:hover,
.cid-sqIbVSCQxc .dropdown-item:hover {
  color: #4284df;
}
.cid-sqIbVSCQxc .widget-title,
.cid-sqIbVSCQxc .widget-icon {
  color: #ffffff;
}
.cid-sqjTkueEE2 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/header-blue-dark2-3-2000x668.png");
  overflow: hidden;
}
.cid-sqjTkueEE2 svg {
  fill: #ffffff !important;
  pointer-events: none;
}
.cid-sqjTkueEE2 #e2_shape {
  fill: #ffffff !important;
}
.cid-sqjTkueEE2 .mbr-section-title.display-1 {
  line-height: 1.24;
}
.cid-sqjTkueEE2 .mbr-text {
  font-weight: 300;
}
.cid-sqjTkueEE2 .mbr-text.display-5 {
  font-size: 24px;
  line-height: 1.416;
}
.cid-sqjTkueEE2 .btn-white {
  color: #404040 !important;
}
.cid-sqjTkueEE2 .btn.display-4 {
  font-size: 14px;
  line-height: 1;
  padding: 21px 30px 20px;
}
.cid-sqjTkueEE2 .btn.display-4 .mbr-iconfont {
  font-size: 0.9rem;
  margin-right: 5px;
}
@media (max-width: 991px) {
  .cid-sqjTkueEE2 .img-wrap {
    display: none;
  }
}
@media (max-width: 768px) {
  .cid-sqjTkueEE2 {
    padding: 30px;
  }
  .cid-sqjTkueEE2 svg {
    display: none;
  }
}
.cid-sqjTkueEE2 .mbr-section-title,
.cid-sqjTkueEE2 .mbr-section-btn {
  color: #ffffff;
}
.cid-sqjTkueEE2 .mbr-text,
.cid-sqjTkueEE2 .mbr-section-btn {
  color: #ffffff;
}
.cid-rOB5W3jlgx {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rOB5W3jlgx img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-rOB5W3jlgx H1 {
  color: #29235c;
}
.cid-rOB5W3jlgx .mbr-text,
.cid-rOB5W3jlgx .mbr-section-btn {
  color: #716c80;
}
.cid-rOB5W3jlgx H3 {
  color: #716c80;
}
.cid-rOB5W3jlgx .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-rOB5W3jlgx .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-rOB5W3jlgx .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-rOB5W3jlgx .link:hover {
  color: #29235c !important;
}
.cid-rOB5W3jlgx .link:hover .link-ico {
  color: #29235c !important;
  padding-left: 10px;
}
.cid-rOB5W3jlgx DIV {
  color: #57468b;
}
.cid-rOB5W3jlgx .mbr-text,
.cid-rOB5W3jlgx .media-content {
  color: #000000;
}
.cid-rOB5W4ehqs {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rOB5W4ehqs .mbr-text,
.cid-rOB5W4ehqs .mbr-section-btn {
  color: #000000;
}
.cid-rOB5W4ehqs p {
  z-index: 2;
  position: relative;
}
.cid-rOB5W4ehqs .author-box {
  display: flex;
  flex-direction: row;
}
.cid-rOB5W4ehqs .col-lg-12 {
  box-shadow: 0 10px 55px 5px rgba(57, 49, 129, 0.35);
  padding: 1rem 1.5rem;
}
.cid-rOB5W4ehqs .ico1 {
  font-size: 2rem;
}
.cid-rOB5W4ehqs .ico2 {
  position: absolute;
  bottom: 15%;
  right: 1.5rem;
  font-size: 8rem;
  z-index: 1;
  opacity: 0.1;
}
.cid-rOB5W4ehqs H3 {
  color: #29235c;
  text-align: center;
}
.cid-rOB5W4Wx3j {
  padding-top: 180px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-blue-dark-3-2000x520.png");
  position: relative;
  overflow: hidden;
}
.cid-rOB5W4Wx3j .container {
  max-width: 1400px;
}
.cid-rOB5W4Wx3j .card-img2 span {
  padding-top: 6px;
}
.cid-rOB5W4Wx3j .soc-item a {
  padding-top: 5px;
}
.cid-rOB5W4Wx3j .btn {
  padding: 0.4rem 0.6rem!important;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-rOB5W4Wx3j .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-rOB5W4Wx3j .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-rOB5W4Wx3j .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rOB5W4Wx3j svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-rOB5W4Wx3j #e2_shape {
  fill: #ffffff !important;
}
.cid-rOB5W4Wx3j .quote {
  background-color: #ffd402;
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #0072c6;
  text-align: center;
}
.cid-rOB5W4Wx3j .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: #e3b600 transparent transparent;
}
.cid-rOB5W4Wx3j .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #ffffff;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-rOB5W4Wx3j .card-img {
  width: auto;
}
.cid-rOB5W4Wx3j .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-rOB5W4Wx3j .soc-item span {
  font-size: 1.4rem;
}
.cid-rOB5W4Wx3j .soc-item:hover span {
  color: #29235c !important;
}
.cid-rOB5W4Wx3j .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-rOB5W4Wx3j .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-rOB5W4Wx3j .media-wrap {
  margin-bottom: 1rem;
}
.cid-rOB5W4Wx3j .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rOB5W4Wx3j img {
  height: 4rem;
}
@media (max-width: 576px) {
  .cid-rOB5W4Wx3j .item {
    justify-content: center;
  }
  .cid-rOB5W4Wx3j .quote::after {
    left: 60px;
  }
}
.cid-rOB5W4Wx3j .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-rOB5W4Wx3j .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rOB5W4Wx3j .text1 {
  color: #ffffff;
}
.cid-rOB5W4Wx3j .item-title {
  color: #ffffff;
}
.cid-rOB5W4Wx3j H5 {
  color: #ffffff;
  text-align: left;
}
.cid-rOB5W4Wx3j .theme {
  color: #ffffff;
}
.cid-rOB5W4Wx3j .copyright > p {
  color: #ff3366;
}
.cid-rOB5W4Wx3j .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-sqIbVSCQxc .navbar {
  padding: .5rem 0;
  background: #29235c;
  transition: none;
  min-height: 50px;
}
.cid-sqIbVSCQxc .navbar-dropdown.bg-color.transparent.opened {
  background: #29235c;
}
.cid-sqIbVSCQxc a {
  font-style: normal;
}
.cid-sqIbVSCQxc .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sqIbVSCQxc .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-sqIbVSCQxc .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sqIbVSCQxc .content-text {
  margin-bottom: 0;
}
.cid-sqIbVSCQxc .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sqIbVSCQxc .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #29235c;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sqIbVSCQxc .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sqIbVSCQxc .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sqIbVSCQxc .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sqIbVSCQxc .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sqIbVSCQxc .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sqIbVSCQxc .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sqIbVSCQxc .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sqIbVSCQxc .nav-dropdown .link {
  font-weight: 400;
}
.cid-sqIbVSCQxc .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sqIbVSCQxc .content-right-side {
  text-align: center;
}
.cid-sqIbVSCQxc .menu-content-top {
  padding: 0 2rem;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-sqIbVSCQxc .menu-content-top {
    width: 100%;
    display: flex;
  }
  .cid-sqIbVSCQxc .menu-content-top .menu-content-right {
    display: block;
    position: absolute;
    visibility: hidden;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    transition: 0s all 0s;
  }
  .cid-sqIbVSCQxc .menu-content-top .menu-content-right .info-widget {
    padding: 1rem 0;
    text-align: center;
  }
  .cid-sqIbVSCQxc .navbar.opened .menu-content-right {
    visibility: visible;
    transition: 0s all 0.3s;
  }
  .cid-sqIbVSCQxc .menu-bottom {
    justify-content: flex-end;
  }
  .cid-sqIbVSCQxc img {
    height: 3.8rem !important;
  }
  .cid-sqIbVSCQxc .btn {
    display: -webkit-flex;
  }
  .cid-sqIbVSCQxc button.navbar-toggler {
    display: block;
  }
  .cid-sqIbVSCQxc .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-sqIbVSCQxc .navbar {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sqIbVSCQxc .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing,
  .cid-sqIbVSCQxc .navbar-collapse.show {
    display: block !important;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-nav,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-buttons,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sqIbVSCQxc .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-sqIbVSCQxc .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-sqIbVSCQxc .navbar.opened {
    padding-bottom: 8rem;
  }
  .cid-sqIbVSCQxc .navbar .navbar-collapse {
    max-height: calc(100vh - 8rem - 80px);
  }
}
@media (max-width: 575px) {
  .cid-sqIbVSCQxc .navbar.opened {
    padding-bottom: 10rem;
  }
  .cid-sqIbVSCQxc .navbar .navbar-collapse {
    max-height: calc(100vh - 10rem - 80px);
  }
}
.cid-sqIbVSCQxc .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sqIbVSCQxc .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sqIbVSCQxc .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sqIbVSCQxc .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid #e0e0e0;
}
.cid-sqIbVSCQxc .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqIbVSCQxc .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sqIbVSCQxc .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sqIbVSCQxc .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sqIbVSCQxc .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-sqIbVSCQxc .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-sqIbVSCQxc .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sqIbVSCQxc .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-sqIbVSCQxc .content-right-side {
    display: flex;
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sqIbVSCQxc .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-sqIbVSCQxc .navbar {
    display: block;
    padding: 0;
  }
  .cid-sqIbVSCQxc .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sqIbVSCQxc .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-sqIbVSCQxc .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-sqIbVSCQxc .navbar-short .menu-content-top {
    height: 0;
    min-height: 0;
    border: none;
  }
  .cid-sqIbVSCQxc .navbar-toggler {
    display: none;
  }
  .cid-sqIbVSCQxc .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sqIbVSCQxc .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqIbVSCQxc .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sqIbVSCQxc .menu-logo {
  margin-right: auto;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  border-radius: 10px;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu {
  background: #29235c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sqIbVSCQxc .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sqIbVSCQxc .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-sqIbVSCQxc .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sqIbVSCQxc button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sqIbVSCQxc button.navbar-toggler:focus {
  outline: none;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sqIbVSCQxc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sqIbVSCQxc .collapsed .btn {
  display: -webkit-flex;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sqIbVSCQxc .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1.5rem);
  }
  .cid-sqIbVSCQxc .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sqIbVSCQxc .collapsed button.navbar-toggler {
  display: block;
}
.cid-sqIbVSCQxc .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-sqIbVSCQxc .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sqIbVSCQxc .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-sqIbVSCQxc .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sqIbVSCQxc .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-sqIbVSCQxc .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-sqIbVSCQxc .nav-link:focus {
  outline: none;
}
.cid-sqIbVSCQxc .navbar-toggler {
  position: relative;
}
.cid-sqIbVSCQxc .dropdown-item.active,
.cid-sqIbVSCQxc .dropdown-item:active {
  background: #29235c;
  color: initial;
}
.cid-sqIbVSCQxc .nav-link:hover,
.cid-sqIbVSCQxc .dropdown-item:hover {
  color: #4284df;
}
.cid-sqIbVSCQxc .widget-title,
.cid-sqIbVSCQxc .widget-icon {
  color: #ffffff;
}
.cid-sqIbVSCQxc .navbar {
  padding: .5rem 0;
  background: #29235c;
  transition: none;
  min-height: 50px;
}
.cid-sqIbVSCQxc .navbar-dropdown.bg-color.transparent.opened {
  background: #29235c;
}
.cid-sqIbVSCQxc a {
  font-style: normal;
}
.cid-sqIbVSCQxc .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sqIbVSCQxc .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-sqIbVSCQxc .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sqIbVSCQxc .content-text {
  margin-bottom: 0;
}
.cid-sqIbVSCQxc .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sqIbVSCQxc .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #29235c;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sqIbVSCQxc .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sqIbVSCQxc .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sqIbVSCQxc .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sqIbVSCQxc .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sqIbVSCQxc .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sqIbVSCQxc .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sqIbVSCQxc .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sqIbVSCQxc .nav-dropdown .link {
  font-weight: 400;
}
.cid-sqIbVSCQxc .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sqIbVSCQxc .content-right-side {
  text-align: center;
}
.cid-sqIbVSCQxc .menu-content-top {
  padding: 0 2rem;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-sqIbVSCQxc .menu-content-top {
    width: 100%;
    display: flex;
  }
  .cid-sqIbVSCQxc .menu-content-top .menu-content-right {
    display: block;
    position: absolute;
    visibility: hidden;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    transition: 0s all 0s;
  }
  .cid-sqIbVSCQxc .menu-content-top .menu-content-right .info-widget {
    padding: 1rem 0;
    text-align: center;
  }
  .cid-sqIbVSCQxc .navbar.opened .menu-content-right {
    visibility: visible;
    transition: 0s all 0.3s;
  }
  .cid-sqIbVSCQxc .menu-bottom {
    justify-content: flex-end;
  }
  .cid-sqIbVSCQxc img {
    height: 3.8rem !important;
  }
  .cid-sqIbVSCQxc .btn {
    display: -webkit-flex;
  }
  .cid-sqIbVSCQxc button.navbar-toggler {
    display: block;
  }
  .cid-sqIbVSCQxc .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-sqIbVSCQxc .navbar {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sqIbVSCQxc .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing,
  .cid-sqIbVSCQxc .navbar-collapse.show {
    display: block !important;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-nav,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-buttons,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sqIbVSCQxc .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-sqIbVSCQxc .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-sqIbVSCQxc .navbar.opened {
    padding-bottom: 8rem;
  }
  .cid-sqIbVSCQxc .navbar .navbar-collapse {
    max-height: calc(100vh - 8rem - 80px);
  }
}
@media (max-width: 575px) {
  .cid-sqIbVSCQxc .navbar.opened {
    padding-bottom: 10rem;
  }
  .cid-sqIbVSCQxc .navbar .navbar-collapse {
    max-height: calc(100vh - 10rem - 80px);
  }
}
.cid-sqIbVSCQxc .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sqIbVSCQxc .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sqIbVSCQxc .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sqIbVSCQxc .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid #e0e0e0;
}
.cid-sqIbVSCQxc .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqIbVSCQxc .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sqIbVSCQxc .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sqIbVSCQxc .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sqIbVSCQxc .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-sqIbVSCQxc .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-sqIbVSCQxc .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sqIbVSCQxc .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-sqIbVSCQxc .content-right-side {
    display: flex;
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sqIbVSCQxc .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-sqIbVSCQxc .navbar {
    display: block;
    padding: 0;
  }
  .cid-sqIbVSCQxc .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sqIbVSCQxc .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-sqIbVSCQxc .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-sqIbVSCQxc .navbar-short .menu-content-top {
    height: 0;
    min-height: 0;
    border: none;
  }
  .cid-sqIbVSCQxc .navbar-toggler {
    display: none;
  }
  .cid-sqIbVSCQxc .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sqIbVSCQxc .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqIbVSCQxc .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sqIbVSCQxc .menu-logo {
  margin-right: auto;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  border-radius: 10px;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu {
  background: #29235c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sqIbVSCQxc .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sqIbVSCQxc .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-sqIbVSCQxc .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sqIbVSCQxc button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sqIbVSCQxc button.navbar-toggler:focus {
  outline: none;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sqIbVSCQxc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sqIbVSCQxc .collapsed .btn {
  display: -webkit-flex;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sqIbVSCQxc .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1.5rem);
  }
  .cid-sqIbVSCQxc .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sqIbVSCQxc .collapsed button.navbar-toggler {
  display: block;
}
.cid-sqIbVSCQxc .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-sqIbVSCQxc .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sqIbVSCQxc .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-sqIbVSCQxc .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sqIbVSCQxc .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-sqIbVSCQxc .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-sqIbVSCQxc .nav-link:focus {
  outline: none;
}
.cid-sqIbVSCQxc .navbar-toggler {
  position: relative;
}
.cid-sqIbVSCQxc .dropdown-item.active,
.cid-sqIbVSCQxc .dropdown-item:active {
  background: #29235c;
  color: initial;
}
.cid-sqIbVSCQxc .nav-link:hover,
.cid-sqIbVSCQxc .dropdown-item:hover {
  color: #4284df;
}
.cid-sqIbVSCQxc .widget-title,
.cid-sqIbVSCQxc .widget-icon {
  color: #ffffff;
}
.cid-sqj0MKv1OS {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/header-blue-dark2-3-2000x668.png");
  overflow: hidden;
}
.cid-sqj0MKv1OS svg {
  fill: #ffffff !important;
  pointer-events: none;
}
.cid-sqj0MKv1OS #e2_shape {
  fill: #ffffff !important;
}
.cid-sqj0MKv1OS .mbr-section-title.display-1 {
  line-height: 1.24;
}
.cid-sqj0MKv1OS .mbr-text {
  font-weight: 300;
}
.cid-sqj0MKv1OS .mbr-text.display-5 {
  font-size: 24px;
  line-height: 1.416;
}
.cid-sqj0MKv1OS .btn-white {
  color: #404040 !important;
}
.cid-sqj0MKv1OS .btn.display-4 {
  font-size: 14px;
  line-height: 1;
  padding: 21px 30px 20px;
}
.cid-sqj0MKv1OS .btn.display-4 .mbr-iconfont {
  font-size: 0.9rem;
  margin-right: 5px;
}
@media (max-width: 991px) {
  .cid-sqj0MKv1OS .img-wrap {
    display: none;
  }
}
@media (max-width: 768px) {
  .cid-sqj0MKv1OS {
    padding: 30px;
  }
  .cid-sqj0MKv1OS svg {
    display: none;
  }
}
.cid-sqj0MKv1OS .mbr-section-title,
.cid-sqj0MKv1OS .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-sqj0MKv1OS .mbr-text,
.cid-sqj0MKv1OS .mbr-section-btn {
  color: #ffffff;
}
.cid-sqAQzzlFNw {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sqAQzzlFNw .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #29235c;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-sqAQzzlFNw .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-sqAQzzlFNw .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-sqAQzzlFNw .main-title.display-2 {
  line-height: 1.375;
}
.cid-sqAQzzlFNw .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-sqAQzzlFNw .mbr-text {
  color: #606060;
}
.cid-sqAQzzlFNw .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-sqAQzzlFNw .mbr-section-btn {
  margin-top: 24px;
}
.cid-sqAQzzlFNw .mbr-section-btn .btn {
  margin-left: 0;
  padding: 18px 26px;
}
.cid-sqAQzzlFNw .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-sqAQzzlFNw .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-sqAQzzlFNw .main-title,
.cid-sqAQzzlFNw .mbr-section-btn DIV {
  text-align: center;
}
.cid-sqAQzzlFNw .main-title,
.cid-sqAQzzlFNw .mbr-section-btn {
  color: #003eff;
}
.cid-sqAQzzlFNw .mbr-text,
.cid-sqAQzzlFNw .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-sqY1SNyZEU {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffd402;
}
.cid-sqY1SNyZEU .back {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background-color: #ffffff;
}
.cid-sqY1SNyZEU img {
  width: 90%;
  max-width: 800px;
  border-radius: 10px;
}
.cid-sqY1SNyZEU p {
  margin-top: 0rem !important;
}
.cid-sqY1SNyZEU .content-wrapper {
  max-width: 750px;
  margin: auto;
  position: relative;
  padding: 0 2rem;
}
.cid-sqY1SNyZEU .content-wrapper {
  padding-top: 6rem;
}
.cid-sqY1SNyZEU h4 {
  position: absolute;
  width: fit-content;
  padding: 0;
  margin: 0;
  bottom: 3rem !important;
  left: 6rem;
  transform: rotate(270deg);
  transform-origin: bottom left;
}
@media (max-width: 1200px) {
  .cid-sqY1SNyZEU .content-wrapper {
    padding-top: 0rem;
  }
  .cid-sqY1SNyZEU p {
    margin-top: 0rem;
  }
}
@media (max-width: 992px) {
  .cid-sqY1SNyZEU .back {
    width: 100%;
    height: 75%;
  }
  .cid-sqY1SNyZEU .content-wrapper {
    padding: 0 3rem;
    padding-bottom: 4rem;
  }
  .cid-sqY1SNyZEU .content-wrapper h4 {
    bottom: 4rem;
  }
  .cid-sqY1SNyZEU p {
    margin-top: 4rem;
  }
}
.cid-sqY1SNyZEU .content-wrapper {
  padding-left: 8rem;
}
@media (max-width: 767px) {
  .cid-sqY1SNyZEU .content-wrapper {
    padding: 0rem;
    padding-bottom: 4rem;
  }
  .cid-sqY1SNyZEU .content-wrapper h4 {
    bottom: 4rem;
  }
  .cid-sqY1SNyZEU .content-wrapper {
    padding-left: 3rem;
  }
  .cid-sqY1SNyZEU h4 {
    left: 2rem;
  }
}
.cid-sqY1SNyZEU H1 {
  color: #29235c;
}
.cid-sqY1SNyZEU H4 {
  text-align: center;
  color: #0072c6;
}
.cid-sqY1SNyZEU .mbr-text,
.cid-sqY1SNyZEU .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-sqY1SNyZEU H3 {
  color: #29235c;
}
.cid-sqY1SNyZEU H2 {
  color: #29235c;
}
.cid-rO2BfntfGQ {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rO2BfntfGQ .block-title {
  color: #29235c;
}
.cid-rO2BUPPQ0U {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rO2BUPPQ0U .carousel-item {
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-rO2BUPPQ0U .carousel-item.active,
.cid-rO2BUPPQ0U .carousel-item-next,
.cid-rO2BUPPQ0U .carousel-item-prev {
  display: flex;
}
.cid-rO2BUPPQ0U .carousel-controls a {
  transition: opacity .5s;
  font-size: 2rem;
}
.cid-rO2BUPPQ0U .carousel-controls a span {
  position: absolute;
  top: 45%;
  padding: 10px;
  border-radius: 50%;
  color: #0072c6;
  opacity: .8;
}
.cid-rO2BUPPQ0U .carousel-controls a:hover span {
  opacity: 1;
}
.cid-rO2BUPPQ0U H1 {
  color: #57468b;
}
.cid-rO2BUPPQ0U .mbr-text,
.cid-rO2BUPPQ0U .mbr-section-btn {
  color: #232323;
}
.cid-rO2BUPPQ0U .author-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-rO2BUPPQ0U .face {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  box-shadow: none;
  margin: 0rem;
  object-fit: cover;
  margin-bottom: 1rem;
}
.cid-rO2BUPPQ0U .author {
  margin: auto 0;
}
.cid-rO2BUPPQ0U h3,
.cid-rO2BUPPQ0U h4 {
  margin: 0;
  padding: 0;
}
.cid-rO2BUPPQ0U H3 {
  color: #57468b;
}
.cid-rO2BUPPQ0U H4 {
  color: #716c80;
}
.cid-rO2BUPPQ0U .box {
  max-width: 800px!important;
  margin: auto!important;
  min-height: 250px!important;
}
@media (max-width: 992px) {
  .cid-rO2BUPPQ0U .carousel-controls a span {
    top: auto;
    bottom: 30%;
  }
}
@media (max-width: 576px) {
  .cid-rO2BUPPQ0U .carousel-controls a span {
    top: auto;
    bottom: 15%;
  }
}
.cid-srgXhVcDsQ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-srgXhVcDsQ .mbr-text {
  color: #000000;
}
.cid-srgXhVcDsQ h4 {
  text-align: center;
}
.cid-srgXhVcDsQ p {
  text-align: center;
}
.cid-srgXhVcDsQ .card .card-img span {
  font-size: 40px;
  padding: 1.5rem;
  background: #ffd402;
  border: 2px solid #ffd402;
  color: #ffffff;
  border-radius: 50%;
  transition: all .3s;
}
.cid-srgXhVcDsQ .card:hover .card-img span {
  background: none;
  color: #ffd402;
}
.cid-srgXhVcDsQ .card-title,
.cid-srgXhVcDsQ .card-img {
  color: #000000;
}
.cid-rO2z7b3HB0 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rO2z7b3HB0 .mbr-text,
.cid-rO2z7b3HB0 .mbr-section-btn {
  color: #000000;
}
.cid-rO2z7b3HB0 p {
  z-index: 2;
  position: relative;
}
.cid-rO2z7b3HB0 .author-box {
  display: flex;
  flex-direction: row;
}
.cid-rO2z7b3HB0 .col-lg-12 {
  box-shadow: 0 10px 55px 5px rgba(57, 49, 129, 0.35);
  padding: 1rem 1.5rem;
}
.cid-rO2z7b3HB0 .ico1 {
  font-size: 2rem;
}
.cid-rO2z7b3HB0 .ico2 {
  position: absolute;
  bottom: 15%;
  right: 1.5rem;
  font-size: 8rem;
  z-index: 1;
  opacity: 0.1;
}
.cid-rO2z7b3HB0 H3 {
  color: #29235c;
  text-align: center;
}
.cid-rO2z7bSTwb {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rO2z7bSTwb .block-text {
  color: #000000;
  text-align: center;
}
.cid-rO2z7cq1rE {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rO2z7cq1rE .btn {
  border-radius: 20px;
}
.cid-rO2z7cZDDh {
  padding-top: 180px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-blue-dark-3-2000x520.png");
  position: relative;
  overflow: hidden;
}
.cid-rO2z7cZDDh .container {
  max-width: 1400px;
}
.cid-rO2z7cZDDh .card-img2 span {
  padding-top: 6px;
}
.cid-rO2z7cZDDh .soc-item a {
  padding-top: 5px;
}
.cid-rO2z7cZDDh .btn {
  padding: 0.4rem 0.6rem!important;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-rO2z7cZDDh .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-rO2z7cZDDh .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-rO2z7cZDDh .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rO2z7cZDDh svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-rO2z7cZDDh #e2_shape {
  fill: #ffffff !important;
}
.cid-rO2z7cZDDh .quote {
  background-color: #ffd402;
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #0072c6;
  text-align: center;
}
.cid-rO2z7cZDDh .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: #e3b600 transparent transparent;
}
.cid-rO2z7cZDDh .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #ffffff;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-rO2z7cZDDh .card-img {
  width: auto;
}
.cid-rO2z7cZDDh .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-rO2z7cZDDh .soc-item span {
  font-size: 1.4rem;
}
.cid-rO2z7cZDDh .soc-item:hover span {
  color: #29235c !important;
}
.cid-rO2z7cZDDh .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-rO2z7cZDDh .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-rO2z7cZDDh .media-wrap {
  margin-bottom: 1rem;
}
.cid-rO2z7cZDDh .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rO2z7cZDDh img {
  height: 4rem;
}
@media (max-width: 576px) {
  .cid-rO2z7cZDDh .item {
    justify-content: center;
  }
  .cid-rO2z7cZDDh .quote::after {
    left: 60px;
  }
}
.cid-rO2z7cZDDh .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-rO2z7cZDDh .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rO2z7cZDDh .text1 {
  color: #ffffff;
}
.cid-rO2z7cZDDh .item-title {
  color: #ffffff;
}
.cid-rO2z7cZDDh H5 {
  color: #ffffff;
  text-align: left;
}
.cid-rO2z7cZDDh .theme {
  color: #ffffff;
}
.cid-rO2z7cZDDh .copyright > p {
  color: #ff3366;
}
.cid-rO2z7cZDDh .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-sqdw1I6J7V {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/header-blue-dark2-3-2000x668.png");
  overflow: hidden;
}
.cid-sqdw1I6J7V svg {
  fill: #ffffff !important;
  pointer-events: none;
}
.cid-sqdw1I6J7V #e2_shape {
  fill: #ffffff !important;
}
.cid-sqdw1I6J7V .mbr-section-title.display-1 {
  line-height: 1.24;
}
.cid-sqdw1I6J7V .mbr-text {
  font-weight: 300;
}
.cid-sqdw1I6J7V .mbr-text.display-5 {
  font-size: 24px;
  line-height: 1.416;
}
.cid-sqdw1I6J7V .btn-white {
  color: #404040 !important;
}
.cid-sqdw1I6J7V .btn.display-4 {
  font-size: 14px;
  line-height: 1;
  padding: 21px 30px 20px;
}
.cid-sqdw1I6J7V .btn.display-4 .mbr-iconfont {
  font-size: 0.9rem;
  margin-right: 5px;
}
@media (max-width: 991px) {
  .cid-sqdw1I6J7V .img-wrap {
    display: none;
  }
}
@media (max-width: 768px) {
  .cid-sqdw1I6J7V {
    padding: 30px;
  }
  .cid-sqdw1I6J7V svg {
    display: none;
  }
}
.cid-sqdw1I6J7V .mbr-section-title,
.cid-sqdw1I6J7V .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-sqdw1I6J7V .mbr-text,
.cid-sqdw1I6J7V .mbr-section-btn {
  color: #ffffff;
}
.cid-sqdw1IycOi {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sqdw1IycOi .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #29235c;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-sqdw1IycOi .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-sqdw1IycOi .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-sqdw1IycOi .main-title.display-2 {
  line-height: 1.375;
}
.cid-sqdw1IycOi .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-sqdw1IycOi .mbr-text {
  color: #606060;
}
.cid-sqdw1IycOi .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-sqdw1IycOi .mbr-section-btn {
  margin-top: 24px;
}
.cid-sqdw1IycOi .mbr-section-btn .btn {
  margin-left: 0;
  padding: 18px 26px;
}
.cid-sqdw1IycOi .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-sqdw1IycOi .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-sqdw1IycOi .main-title,
.cid-sqdw1IycOi .mbr-section-btn DIV {
  text-align: center;
}
.cid-sqdw1IycOi .main-title,
.cid-sqdw1IycOi .mbr-section-btn {
  color: #003eff;
}
.cid-sqdw1IycOi .mbr-text,
.cid-sqdw1IycOi .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-sqSmIrrJJm {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffd402;
}
.cid-sqSmIrrJJm .back {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background-color: #ffffff;
}
.cid-sqSmIrrJJm img {
  width: 90%;
  max-width: 750px;
  border-radius: 10px;
}
.cid-sqSmIrrJJm p {
  margin-top: 0rem !important;
}
.cid-sqSmIrrJJm .content-wrapper {
  max-width: 750px;
  margin: auto;
  position: relative;
  padding: 0 2rem;
}
.cid-sqSmIrrJJm .content-wrapper {
  padding-top: 6rem;
}
.cid-sqSmIrrJJm h4 {
  position: absolute;
  width: fit-content;
  padding: 0;
  margin: 0;
  bottom: 3rem !important;
  left: 6rem;
  transform: rotate(270deg);
  transform-origin: bottom left;
}
@media (max-width: 1200px) {
  .cid-sqSmIrrJJm .content-wrapper {
    padding-top: 0rem;
  }
  .cid-sqSmIrrJJm p {
    margin-top: 0rem;
  }
}
@media (max-width: 992px) {
  .cid-sqSmIrrJJm .back {
    width: 100%;
    height: 75%;
  }
  .cid-sqSmIrrJJm .content-wrapper {
    padding: 0 3rem;
    padding-bottom: 4rem;
  }
  .cid-sqSmIrrJJm .content-wrapper h4 {
    bottom: 4rem;
  }
  .cid-sqSmIrrJJm p {
    margin-top: 4rem;
  }
}
.cid-sqSmIrrJJm .content-wrapper {
  padding-left: 8rem;
}
@media (max-width: 767px) {
  .cid-sqSmIrrJJm .content-wrapper {
    padding: 0rem;
    padding-bottom: 4rem;
  }
  .cid-sqSmIrrJJm .content-wrapper h4 {
    bottom: 4rem;
  }
  .cid-sqSmIrrJJm .content-wrapper {
    padding-left: 3rem;
  }
  .cid-sqSmIrrJJm h4 {
    left: 2rem;
  }
}
.cid-sqSmIrrJJm H1 {
  color: #29235c;
}
.cid-sqSmIrrJJm H4 {
  text-align: center;
  color: #0072c6;
}
.cid-sqSmIrrJJm .mbr-text,
.cid-sqSmIrrJJm .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-sqSmIrrJJm H3 {
  color: #29235c;
}
.cid-sqdy5432FI {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sqdy5432FI .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #29235c;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-sqdy5432FI .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-sqdy5432FI .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-sqdy5432FI .main-title.display-2 {
  line-height: 1.375;
}
.cid-sqdy5432FI .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-sqdy5432FI .mbr-text {
  color: #606060;
}
.cid-sqdy5432FI .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-sqdy5432FI .mbr-section-btn {
  margin-top: 24px;
}
.cid-sqdy5432FI .mbr-section-btn .btn {
  margin-left: 0;
  padding: 18px 26px;
}
.cid-sqdy5432FI .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-sqdy5432FI .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-sqdy5432FI .mbr-text,
.cid-sqdy5432FI .mbr-section-btn {
  color: #000000;
}
.cid-sqdy5432FI .main-title,
.cid-sqdy5432FI .mbr-section-btn {
  color: #29235c;
}
.cid-sqdy5432FI .mbr-section-subtitle,
.cid-sqdy5432FI .mbr-section-btn {
  color: #003eff;
}
.cid-sqdw1JjQUb {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sqdw1JjQUb .btn {
  border-radius: 20px;
}
.cid-srgWMa2ULM {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-srgWMa2ULM .mbr-text {
  color: #000000;
}
.cid-srgWMa2ULM h4 {
  text-align: center;
}
.cid-srgWMa2ULM p {
  text-align: center;
}
.cid-srgWMa2ULM .card .card-img span {
  font-size: 40px;
  padding: 1.5rem;
  background: #ffd402;
  border: 2px solid #ffd402;
  color: #ffffff;
  border-radius: 50%;
  transition: all .3s;
}
.cid-srgWMa2ULM .card:hover .card-img span {
  background: none;
  color: #ffd402;
}
.cid-srgWMa2ULM .card-title,
.cid-srgWMa2ULM .card-img {
  color: #000000;
}
.cid-sqdw1KmjRA {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sqdw1KmjRA .mbr-text,
.cid-sqdw1KmjRA .mbr-section-btn {
  color: #000000;
}
.cid-sqdw1KmjRA p {
  z-index: 2;
  position: relative;
}
.cid-sqdw1KmjRA .author-box {
  display: flex;
  flex-direction: row;
}
.cid-sqdw1KmjRA .col-lg-12 {
  box-shadow: 0 10px 55px 5px rgba(57, 49, 129, 0.35);
  padding: 1rem 1.5rem;
}
.cid-sqdw1KmjRA .ico1 {
  font-size: 2rem;
}
.cid-sqdw1KmjRA .ico2 {
  position: absolute;
  bottom: 15%;
  right: 1.5rem;
  font-size: 8rem;
  z-index: 1;
  opacity: 0.1;
}
.cid-sqdw1KmjRA H3 {
  color: #29235c;
  text-align: center;
}
.cid-sqdw1KEvfT {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sqdw1KEvfT .block-text {
  color: #000000;
  text-align: center;
}
.cid-sqdw1KPUhi {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sqdw1KPUhi .btn {
  border-radius: 20px;
}
.cid-sqdw1L0iw1 {
  padding-top: 180px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-blue-dark-3-2000x520.png");
  position: relative;
  overflow: hidden;
}
.cid-sqdw1L0iw1 .container {
  max-width: 1400px;
}
.cid-sqdw1L0iw1 .card-img2 span {
  padding-top: 6px;
}
.cid-sqdw1L0iw1 .soc-item a {
  padding-top: 5px;
}
.cid-sqdw1L0iw1 .btn {
  padding: 0.4rem 0.6rem!important;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-sqdw1L0iw1 .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-sqdw1L0iw1 .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-sqdw1L0iw1 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sqdw1L0iw1 svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-sqdw1L0iw1 #e2_shape {
  fill: #ffffff !important;
}
.cid-sqdw1L0iw1 .quote {
  background-color: #ffd402;
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #0072c6;
  text-align: center;
}
.cid-sqdw1L0iw1 .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: #e3b600 transparent transparent;
}
.cid-sqdw1L0iw1 .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #ffffff;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sqdw1L0iw1 .card-img {
  width: auto;
}
.cid-sqdw1L0iw1 .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-sqdw1L0iw1 .soc-item span {
  font-size: 1.4rem;
}
.cid-sqdw1L0iw1 .soc-item:hover span {
  color: #29235c !important;
}
.cid-sqdw1L0iw1 .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-sqdw1L0iw1 .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-sqdw1L0iw1 .media-wrap {
  margin-bottom: 1rem;
}
.cid-sqdw1L0iw1 .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sqdw1L0iw1 img {
  height: 4rem;
}
@media (max-width: 576px) {
  .cid-sqdw1L0iw1 .item {
    justify-content: center;
  }
  .cid-sqdw1L0iw1 .quote::after {
    left: 60px;
  }
}
.cid-sqdw1L0iw1 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-sqdw1L0iw1 .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sqdw1L0iw1 .text1 {
  color: #ffffff;
}
.cid-sqdw1L0iw1 .item-title {
  color: #ffffff;
}
.cid-sqdw1L0iw1 H5 {
  color: #ffffff;
  text-align: left;
}
.cid-sqdw1L0iw1 .theme {
  color: #ffffff;
}
.cid-sqdw1L0iw1 .copyright > p {
  color: #ff3366;
}
.cid-sqdw1L0iw1 .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-sqIbVSCQxc .navbar {
  padding: .5rem 0;
  background: #29235c;
  transition: none;
  min-height: 50px;
}
.cid-sqIbVSCQxc .navbar-dropdown.bg-color.transparent.opened {
  background: #29235c;
}
.cid-sqIbVSCQxc a {
  font-style: normal;
}
.cid-sqIbVSCQxc .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sqIbVSCQxc .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-sqIbVSCQxc .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sqIbVSCQxc .content-text {
  margin-bottom: 0;
}
.cid-sqIbVSCQxc .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sqIbVSCQxc .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #29235c;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sqIbVSCQxc .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sqIbVSCQxc .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sqIbVSCQxc .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sqIbVSCQxc .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sqIbVSCQxc .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sqIbVSCQxc .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sqIbVSCQxc .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sqIbVSCQxc .nav-dropdown .link {
  font-weight: 400;
}
.cid-sqIbVSCQxc .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sqIbVSCQxc .content-right-side {
  text-align: center;
}
.cid-sqIbVSCQxc .menu-content-top {
  padding: 0 2rem;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-sqIbVSCQxc .menu-content-top {
    width: 100%;
    display: flex;
  }
  .cid-sqIbVSCQxc .menu-content-top .menu-content-right {
    display: block;
    position: absolute;
    visibility: hidden;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    transition: 0s all 0s;
  }
  .cid-sqIbVSCQxc .menu-content-top .menu-content-right .info-widget {
    padding: 1rem 0;
    text-align: center;
  }
  .cid-sqIbVSCQxc .navbar.opened .menu-content-right {
    visibility: visible;
    transition: 0s all 0.3s;
  }
  .cid-sqIbVSCQxc .menu-bottom {
    justify-content: flex-end;
  }
  .cid-sqIbVSCQxc img {
    height: 3.8rem !important;
  }
  .cid-sqIbVSCQxc .btn {
    display: -webkit-flex;
  }
  .cid-sqIbVSCQxc button.navbar-toggler {
    display: block;
  }
  .cid-sqIbVSCQxc .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-sqIbVSCQxc .navbar {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sqIbVSCQxc .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing,
  .cid-sqIbVSCQxc .navbar-collapse.show {
    display: block !important;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-nav,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-buttons,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sqIbVSCQxc .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-sqIbVSCQxc .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-sqIbVSCQxc .navbar.opened {
    padding-bottom: 8rem;
  }
  .cid-sqIbVSCQxc .navbar .navbar-collapse {
    max-height: calc(100vh - 8rem - 80px);
  }
}
@media (max-width: 575px) {
  .cid-sqIbVSCQxc .navbar.opened {
    padding-bottom: 10rem;
  }
  .cid-sqIbVSCQxc .navbar .navbar-collapse {
    max-height: calc(100vh - 10rem - 80px);
  }
}
.cid-sqIbVSCQxc .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sqIbVSCQxc .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sqIbVSCQxc .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sqIbVSCQxc .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid #e0e0e0;
}
.cid-sqIbVSCQxc .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqIbVSCQxc .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sqIbVSCQxc .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sqIbVSCQxc .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sqIbVSCQxc .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-sqIbVSCQxc .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-sqIbVSCQxc .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sqIbVSCQxc .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-sqIbVSCQxc .content-right-side {
    display: flex;
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sqIbVSCQxc .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-sqIbVSCQxc .navbar {
    display: block;
    padding: 0;
  }
  .cid-sqIbVSCQxc .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sqIbVSCQxc .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-sqIbVSCQxc .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-sqIbVSCQxc .navbar-short .menu-content-top {
    height: 0;
    min-height: 0;
    border: none;
  }
  .cid-sqIbVSCQxc .navbar-toggler {
    display: none;
  }
  .cid-sqIbVSCQxc .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sqIbVSCQxc .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqIbVSCQxc .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sqIbVSCQxc .menu-logo {
  margin-right: auto;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  border-radius: 10px;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu {
  background: #29235c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sqIbVSCQxc .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sqIbVSCQxc .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-sqIbVSCQxc .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sqIbVSCQxc button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sqIbVSCQxc button.navbar-toggler:focus {
  outline: none;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sqIbVSCQxc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sqIbVSCQxc .collapsed .btn {
  display: -webkit-flex;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sqIbVSCQxc .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1.5rem);
  }
  .cid-sqIbVSCQxc .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sqIbVSCQxc .collapsed button.navbar-toggler {
  display: block;
}
.cid-sqIbVSCQxc .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-sqIbVSCQxc .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sqIbVSCQxc .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-sqIbVSCQxc .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sqIbVSCQxc .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-sqIbVSCQxc .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-sqIbVSCQxc .nav-link:focus {
  outline: none;
}
.cid-sqIbVSCQxc .navbar-toggler {
  position: relative;
}
.cid-sqIbVSCQxc .dropdown-item.active,
.cid-sqIbVSCQxc .dropdown-item:active {
  background: #29235c;
  color: initial;
}
.cid-sqIbVSCQxc .nav-link:hover,
.cid-sqIbVSCQxc .dropdown-item:hover {
  color: #4284df;
}
.cid-sqIbVSCQxc .widget-title,
.cid-sqIbVSCQxc .widget-icon {
  color: #ffffff;
}
.cid-sqjTQmYkyC {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/header-blue-dark2-3-2000x668.png");
  overflow: hidden;
}
.cid-sqjTQmYkyC svg {
  fill: #ffffff !important;
  pointer-events: none;
}
.cid-sqjTQmYkyC #e2_shape {
  fill: #ffffff !important;
}
.cid-sqjTQmYkyC .mbr-section-title.display-1 {
  line-height: 1.24;
}
.cid-sqjTQmYkyC .mbr-text {
  font-weight: 300;
}
.cid-sqjTQmYkyC .mbr-text.display-5 {
  font-size: 24px;
  line-height: 1.416;
}
.cid-sqjTQmYkyC .btn-white {
  color: #404040 !important;
}
.cid-sqjTQmYkyC .btn.display-4 {
  font-size: 14px;
  line-height: 1;
  padding: 21px 30px 20px;
}
.cid-sqjTQmYkyC .btn.display-4 .mbr-iconfont {
  font-size: 0.9rem;
  margin-right: 5px;
}
@media (max-width: 991px) {
  .cid-sqjTQmYkyC .img-wrap {
    display: none;
  }
}
@media (max-width: 768px) {
  .cid-sqjTQmYkyC {
    padding: 30px;
  }
  .cid-sqjTQmYkyC svg {
    display: none;
  }
}
.cid-sqjTQmYkyC .mbr-section-title,
.cid-sqjTQmYkyC .mbr-section-btn {
  color: #ffffff;
}
.cid-sqjTQmYkyC .mbr-text,
.cid-sqjTQmYkyC .mbr-section-btn {
  color: #ffffff;
}
.cid-sqjTQoiOlC {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sqjTQoiOlC img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-sqjTQoiOlC H1 {
  color: #29235c;
}
.cid-sqjTQoiOlC .mbr-text,
.cid-sqjTQoiOlC .mbr-section-btn {
  color: #716c80;
}
.cid-sqjTQoiOlC H3 {
  color: #716c80;
}
.cid-sqjTQoiOlC .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-sqjTQoiOlC .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-sqjTQoiOlC .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-sqjTQoiOlC .link:hover {
  color: #29235c !important;
}
.cid-sqjTQoiOlC .link:hover .link-ico {
  color: #29235c !important;
  padding-left: 10px;
}
.cid-sqjTQoiOlC DIV {
  color: #57468b;
}
.cid-sqjTQoiOlC .mbr-text,
.cid-sqjTQoiOlC .media-content {
  color: #29235c;
}
.cid-sqjUHJbIf5 {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sqjUHJbIf5 span {
  color: #c1c1c1;
}
.cid-sqjUHJbIf5 .flex-block {
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.cid-sqjUHJbIf5 .flex-block span {
  font-size: 3rem;
  margin-right: 3rem;
}
@media (min-width: 577px) {
  .cid-sqjUHJbIf5 .flex-block span {
    margin-left: 2rem;
  }
}
.cid-sqjVjMZdhG {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sqjVjMZdhG img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-sqjVjMZdhG H1 {
  color: #29235c;
}
.cid-sqjVjMZdhG .mbr-text,
.cid-sqjVjMZdhG .mbr-section-btn {
  color: #716c80;
}
.cid-sqjVjMZdhG H3 {
  color: #716c80;
}
.cid-sqjVjMZdhG .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-sqjVjMZdhG .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-sqjVjMZdhG .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-sqjVjMZdhG .link:hover {
  color: #29235c !important;
}
.cid-sqjVjMZdhG .link:hover .link-ico {
  color: #29235c !important;
  padding-left: 10px;
}
.cid-sqjVjMZdhG DIV {
  color: #57468b;
}
.cid-sqjVjMZdhG .mbr-text,
.cid-sqjVjMZdhG .media-content {
  color: #29235c;
}
.cid-sqjVcIRET3 {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sqjVcIRET3 span {
  color: #c1c1c1;
}
.cid-sqjVcIRET3 .flex-block {
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.cid-sqjVcIRET3 .flex-block span {
  font-size: 3rem;
  margin-right: 3rem;
}
@media (min-width: 577px) {
  .cid-sqjVcIRET3 .flex-block span {
    margin-left: 2rem;
  }
}
.cid-sqjVMCZrQz {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sqjVMCZrQz img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-sqjVMCZrQz H1 {
  color: #29235c;
}
.cid-sqjVMCZrQz .mbr-text,
.cid-sqjVMCZrQz .mbr-section-btn {
  color: #716c80;
}
.cid-sqjVMCZrQz H3 {
  color: #716c80;
}
.cid-sqjVMCZrQz .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-sqjVMCZrQz .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-sqjVMCZrQz .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-sqjVMCZrQz .link:hover {
  color: #29235c !important;
}
.cid-sqjVMCZrQz .link:hover .link-ico {
  color: #29235c !important;
  padding-left: 10px;
}
.cid-sqjVMCZrQz DIV {
  color: #57468b;
}
.cid-sqjVMCZrQz .mbr-text,
.cid-sqjVMCZrQz .media-content {
  color: #29235c;
}
.cid-sqjVKFmM7o {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sqjVKFmM7o span {
  color: #c1c1c1;
}
.cid-sqjVKFmM7o .flex-block {
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.cid-sqjVKFmM7o .flex-block span {
  font-size: 3rem;
  margin-right: 3rem;
}
@media (min-width: 577px) {
  .cid-sqjVKFmM7o .flex-block span {
    margin-left: 2rem;
  }
}
.cid-sqjVY8nSwV {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sqjVY8nSwV span {
  color: #c1c1c1;
}
.cid-sqjVY8nSwV .flex-block {
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.cid-sqjVY8nSwV .flex-block span {
  font-size: 3rem;
  margin-right: 3rem;
}
@media (min-width: 577px) {
  .cid-sqjVY8nSwV .flex-block span {
    margin-left: 2rem;
  }
}
.cid-srgXmjgEgn {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-srgXmjgEgn .mbr-text {
  color: #000000;
}
.cid-srgXmjgEgn h4 {
  text-align: center;
}
.cid-srgXmjgEgn p {
  text-align: center;
}
.cid-srgXmjgEgn .card .card-img span {
  font-size: 40px;
  padding: 1.5rem;
  background: #ffd402;
  border: 2px solid #ffd402;
  color: #ffffff;
  border-radius: 50%;
  transition: all .3s;
}
.cid-srgXmjgEgn .card:hover .card-img span {
  background: none;
  color: #ffd402;
}
.cid-srgXmjgEgn .card-title,
.cid-srgXmjgEgn .card-img {
  color: #000000;
}
.cid-sqjY51Epks {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sqjY51Epks .mbr-text,
.cid-sqjY51Epks .mbr-section-btn {
  color: #000000;
}
.cid-sqjY51Epks p {
  z-index: 2;
  position: relative;
}
.cid-sqjY51Epks .author-box {
  display: flex;
  flex-direction: row;
}
.cid-sqjY51Epks .col-lg-12 {
  box-shadow: 0 10px 55px 5px rgba(57, 49, 129, 0.35);
  padding: 1rem 1.5rem;
}
.cid-sqjY51Epks .ico1 {
  font-size: 2rem;
}
.cid-sqjY51Epks .ico2 {
  position: absolute;
  bottom: 15%;
  right: 1.5rem;
  font-size: 8rem;
  z-index: 1;
  opacity: 0.1;
}
.cid-sqjY51Epks H3 {
  color: #29235c;
  text-align: center;
}
.cid-sqjXhus8wf {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sqjXhus8wf .block-text {
  color: #000000;
  text-align: center;
}
.cid-sqjXi9grvn {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sqjXi9grvn .btn {
  border-radius: 20px;
}
.cid-sqjTQpcRyN {
  padding-top: 180px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-blue-dark-3-2000x520.png");
  position: relative;
  overflow: hidden;
}
.cid-sqjTQpcRyN .container {
  max-width: 1400px;
}
.cid-sqjTQpcRyN .card-img2 span {
  padding-top: 6px;
}
.cid-sqjTQpcRyN .soc-item a {
  padding-top: 5px;
}
.cid-sqjTQpcRyN .btn {
  padding: 0.4rem 0.6rem!important;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-sqjTQpcRyN .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-sqjTQpcRyN .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-sqjTQpcRyN .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sqjTQpcRyN svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-sqjTQpcRyN #e2_shape {
  fill: #ffffff !important;
}
.cid-sqjTQpcRyN .quote {
  background-color: #ffd402;
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #0072c6;
  text-align: center;
}
.cid-sqjTQpcRyN .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: #e3b600 transparent transparent;
}
.cid-sqjTQpcRyN .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #ffffff;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sqjTQpcRyN .card-img {
  width: auto;
}
.cid-sqjTQpcRyN .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-sqjTQpcRyN .soc-item span {
  font-size: 1.4rem;
}
.cid-sqjTQpcRyN .soc-item:hover span {
  color: #29235c !important;
}
.cid-sqjTQpcRyN .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-sqjTQpcRyN .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-sqjTQpcRyN .media-wrap {
  margin-bottom: 1rem;
}
.cid-sqjTQpcRyN .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sqjTQpcRyN img {
  height: 4rem;
}
@media (max-width: 576px) {
  .cid-sqjTQpcRyN .item {
    justify-content: center;
  }
  .cid-sqjTQpcRyN .quote::after {
    left: 60px;
  }
}
.cid-sqjTQpcRyN .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-sqjTQpcRyN .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sqjTQpcRyN .text1 {
  color: #ffffff;
}
.cid-sqjTQpcRyN .item-title {
  color: #ffffff;
}
.cid-sqjTQpcRyN H5 {
  color: #ffffff;
  text-align: left;
}
.cid-sqjTQpcRyN .theme {
  color: #ffffff;
}
.cid-sqjTQpcRyN .copyright > p {
  color: #ff3366;
}
.cid-sqjTQpcRyN .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-sqIbVSCQxc .navbar {
  padding: .5rem 0;
  background: #29235c;
  transition: none;
  min-height: 50px;
}
.cid-sqIbVSCQxc .navbar-dropdown.bg-color.transparent.opened {
  background: #29235c;
}
.cid-sqIbVSCQxc a {
  font-style: normal;
}
.cid-sqIbVSCQxc .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sqIbVSCQxc .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-sqIbVSCQxc .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sqIbVSCQxc .content-text {
  margin-bottom: 0;
}
.cid-sqIbVSCQxc .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sqIbVSCQxc .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #29235c;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sqIbVSCQxc .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sqIbVSCQxc .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sqIbVSCQxc .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sqIbVSCQxc .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sqIbVSCQxc .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sqIbVSCQxc .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sqIbVSCQxc .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sqIbVSCQxc .nav-dropdown .link {
  font-weight: 400;
}
.cid-sqIbVSCQxc .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sqIbVSCQxc .content-right-side {
  text-align: center;
}
.cid-sqIbVSCQxc .menu-content-top {
  padding: 0 2rem;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-sqIbVSCQxc .menu-content-top {
    width: 100%;
    display: flex;
  }
  .cid-sqIbVSCQxc .menu-content-top .menu-content-right {
    display: block;
    position: absolute;
    visibility: hidden;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    transition: 0s all 0s;
  }
  .cid-sqIbVSCQxc .menu-content-top .menu-content-right .info-widget {
    padding: 1rem 0;
    text-align: center;
  }
  .cid-sqIbVSCQxc .navbar.opened .menu-content-right {
    visibility: visible;
    transition: 0s all 0.3s;
  }
  .cid-sqIbVSCQxc .menu-bottom {
    justify-content: flex-end;
  }
  .cid-sqIbVSCQxc img {
    height: 3.8rem !important;
  }
  .cid-sqIbVSCQxc .btn {
    display: -webkit-flex;
  }
  .cid-sqIbVSCQxc button.navbar-toggler {
    display: block;
  }
  .cid-sqIbVSCQxc .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-sqIbVSCQxc .navbar {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sqIbVSCQxc .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing,
  .cid-sqIbVSCQxc .navbar-collapse.show {
    display: block !important;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-nav,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-buttons,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sqIbVSCQxc .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-sqIbVSCQxc .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-sqIbVSCQxc .navbar.opened {
    padding-bottom: 8rem;
  }
  .cid-sqIbVSCQxc .navbar .navbar-collapse {
    max-height: calc(100vh - 8rem - 80px);
  }
}
@media (max-width: 575px) {
  .cid-sqIbVSCQxc .navbar.opened {
    padding-bottom: 10rem;
  }
  .cid-sqIbVSCQxc .navbar .navbar-collapse {
    max-height: calc(100vh - 10rem - 80px);
  }
}
.cid-sqIbVSCQxc .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sqIbVSCQxc .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sqIbVSCQxc .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sqIbVSCQxc .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid #e0e0e0;
}
.cid-sqIbVSCQxc .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqIbVSCQxc .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sqIbVSCQxc .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sqIbVSCQxc .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sqIbVSCQxc .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-sqIbVSCQxc .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-sqIbVSCQxc .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sqIbVSCQxc .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-sqIbVSCQxc .content-right-side {
    display: flex;
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sqIbVSCQxc .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-sqIbVSCQxc .navbar {
    display: block;
    padding: 0;
  }
  .cid-sqIbVSCQxc .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sqIbVSCQxc .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-sqIbVSCQxc .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-sqIbVSCQxc .navbar-short .menu-content-top {
    height: 0;
    min-height: 0;
    border: none;
  }
  .cid-sqIbVSCQxc .navbar-toggler {
    display: none;
  }
  .cid-sqIbVSCQxc .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sqIbVSCQxc .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqIbVSCQxc .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sqIbVSCQxc .menu-logo {
  margin-right: auto;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  border-radius: 10px;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu {
  background: #29235c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sqIbVSCQxc .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sqIbVSCQxc .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-sqIbVSCQxc .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sqIbVSCQxc button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sqIbVSCQxc button.navbar-toggler:focus {
  outline: none;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sqIbVSCQxc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sqIbVSCQxc .collapsed .btn {
  display: -webkit-flex;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sqIbVSCQxc .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1.5rem);
  }
  .cid-sqIbVSCQxc .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sqIbVSCQxc .collapsed button.navbar-toggler {
  display: block;
}
.cid-sqIbVSCQxc .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-sqIbVSCQxc .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sqIbVSCQxc .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-sqIbVSCQxc .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sqIbVSCQxc .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-sqIbVSCQxc .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-sqIbVSCQxc .nav-link:focus {
  outline: none;
}
.cid-sqIbVSCQxc .navbar-toggler {
  position: relative;
}
.cid-sqIbVSCQxc .dropdown-item.active,
.cid-sqIbVSCQxc .dropdown-item:active {
  background: #29235c;
  color: initial;
}
.cid-sqIbVSCQxc .nav-link:hover,
.cid-sqIbVSCQxc .dropdown-item:hover {
  color: #4284df;
}
.cid-sqIbVSCQxc .widget-title,
.cid-sqIbVSCQxc .widget-icon {
  color: #ffffff;
}
.cid-sqj5QRMaPB {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/header-blue-dark2-3-2000x668.png");
  overflow: hidden;
}
.cid-sqj5QRMaPB svg {
  fill: #ffffff !important;
  pointer-events: none;
}
.cid-sqj5QRMaPB #e2_shape {
  fill: #ffffff !important;
}
.cid-sqj5QRMaPB .mbr-section-title.display-1 {
  line-height: 1.24;
}
.cid-sqj5QRMaPB .mbr-text {
  font-weight: 300;
}
.cid-sqj5QRMaPB .mbr-text.display-5 {
  font-size: 24px;
  line-height: 1.416;
}
.cid-sqj5QRMaPB .btn-white {
  color: #404040 !important;
}
.cid-sqj5QRMaPB .btn.display-4 {
  font-size: 14px;
  line-height: 1;
  padding: 21px 30px 20px;
}
.cid-sqj5QRMaPB .btn.display-4 .mbr-iconfont {
  font-size: 0.9rem;
  margin-right: 5px;
}
@media (max-width: 991px) {
  .cid-sqj5QRMaPB .img-wrap {
    display: none;
  }
}
@media (max-width: 768px) {
  .cid-sqj5QRMaPB {
    padding: 30px;
  }
  .cid-sqj5QRMaPB svg {
    display: none;
  }
}
.cid-sqj5QRMaPB .mbr-section-title,
.cid-sqj5QRMaPB .mbr-section-btn {
  color: #ffffff;
}
.cid-sqj5QRMaPB .mbr-text,
.cid-sqj5QRMaPB .mbr-section-btn {
  color: #ffffff;
}
.cid-rPV7R1MxG4 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rPV7R1MxG4 .block-text {
  color: #000000;
}
.cid-rPV8Kg5ZQc {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rPV8Kg5ZQc .block-title {
  text-align: left;
}
.cid-rPV7R6NGYN {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rPV7R6NGYN .mbr-text {
  color: #000000;
}
.cid-rPV7R6NGYN .counter-container ul {
  margin-bottom: 0;
  padding-left: .6rem;
}
.cid-rPV7R6NGYN .counter-container ul li {
  margin-bottom: 1rem;
}
.cid-rPV7R6NGYN .mbr-text .block-title {
  text-align: left;
}
.cid-rPV7R6NGYN .mbr-text UL {
  text-align: left;
}
.cid-rPV94P2Uwi {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rPV94P2Uwi .block-title {
  text-align: left;
}
.cid-rPV9bFospZ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rPV9bFospZ .mbr-text {
  color: #000000;
}
.cid-rPV9bFospZ .counter-container ul {
  margin-bottom: 0;
  padding-left: .6rem;
}
.cid-rPV9bFospZ .counter-container ul li {
  margin-bottom: 1rem;
}
.cid-rPV9bFospZ .mbr-text .block-title {
  text-align: left;
}
.cid-rPV9bFospZ .mbr-text UL {
  text-align: left;
}
.cid-rPVnzebKHp {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rPVnzebKHp .block-title {
  text-align: left;
}
.cid-rPVnES70Yc {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rPVnES70Yc .mbr-text {
  color: #000000;
}
.cid-rPVnES70Yc .counter-container ul {
  margin-bottom: 0;
  padding-left: .6rem;
}
.cid-rPVnES70Yc .counter-container ul li {
  margin-bottom: 1rem;
}
.cid-rPVnES70Yc .mbr-text .block-title {
  text-align: left;
}
.cid-rPVnES70Yc .mbr-text UL {
  text-align: left;
}
.cid-rPVo8klhfU {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rPVo8klhfU .block-title {
  text-align: left;
}
.cid-rPVo8NS8mp {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rPVo8NS8mp .mbr-text {
  color: #000000;
}
.cid-rPVo8NS8mp .counter-container ul {
  margin-bottom: 0;
  padding-left: .6rem;
}
.cid-rPVo8NS8mp .counter-container ul li {
  margin-bottom: 1rem;
}
.cid-rPVo8NS8mp .mbr-text .block-title {
  text-align: left;
}
.cid-rPVo8NS8mp .mbr-text UL {
  text-align: left;
}
.cid-rVo80CSlei {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rVo80CSlei .block-title {
  text-align: left;
}
.cid-rVo8bRGWQu {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rVo8bRGWQu .mbr-text {
  color: #000000;
}
.cid-rVo8bRGWQu .counter-container ul {
  margin-bottom: 0;
  padding-left: .6rem;
}
.cid-rVo8bRGWQu .counter-container ul li {
  margin-bottom: 1rem;
}
.cid-rVo8bRGWQu .mbr-text .block-title {
  text-align: left;
}
.cid-rVo8bRGWQu .mbr-text UL {
  text-align: left;
}
.cid-rPV7R5nWXa {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rPV7R5nWXa .block-text {
  color: #000000;
}
.cid-rQ01a1kR15 {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rQ01a1kR15 .btn {
  border-radius: 20px;
}
.cid-srgXvGSwHO {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-srgXvGSwHO .mbr-text {
  color: #000000;
}
.cid-srgXvGSwHO h4 {
  text-align: center;
}
.cid-srgXvGSwHO p {
  text-align: center;
}
.cid-srgXvGSwHO .card .card-img span {
  font-size: 40px;
  padding: 1.5rem;
  background: #ffd402;
  border: 2px solid #ffd402;
  color: #ffffff;
  border-radius: 50%;
  transition: all .3s;
}
.cid-srgXvGSwHO .card:hover .card-img span {
  background: none;
  color: #ffd402;
}
.cid-srgXvGSwHO .card-title,
.cid-srgXvGSwHO .card-img {
  color: #000000;
}
.cid-rPV7RfrMyW {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rPV7RfrMyW .mbr-text,
.cid-rPV7RfrMyW .mbr-section-btn {
  color: #000000;
}
.cid-rPV7RfrMyW p {
  z-index: 2;
  position: relative;
}
.cid-rPV7RfrMyW .author-box {
  display: flex;
  flex-direction: row;
}
.cid-rPV7RfrMyW .col-lg-12 {
  box-shadow: 0 10px 55px 5px rgba(57, 49, 129, 0.35);
  padding: 1rem 1.5rem;
}
.cid-rPV7RfrMyW .ico1 {
  font-size: 2rem;
}
.cid-rPV7RfrMyW .ico2 {
  position: absolute;
  bottom: 15%;
  right: 1.5rem;
  font-size: 8rem;
  z-index: 1;
  opacity: 0.1;
}
.cid-rPV7RfrMyW H3 {
  color: #29235c;
  text-align: center;
}
.cid-rPV7Rgo7Id {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rPV7Rgo7Id .block-text {
  color: #000000;
  text-align: center;
}
.cid-rPV7Rhf7G4 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rPV7Rhf7G4 .btn {
  border-radius: 20px;
}
.cid-rPV7Ri09VM {
  padding-top: 180px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-blue-dark-3-2000x520.png");
  position: relative;
  overflow: hidden;
}
.cid-rPV7Ri09VM .container {
  max-width: 1400px;
}
.cid-rPV7Ri09VM .card-img2 span {
  padding-top: 6px;
}
.cid-rPV7Ri09VM .soc-item a {
  padding-top: 5px;
}
.cid-rPV7Ri09VM .btn {
  padding: 0.4rem 0.6rem!important;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-rPV7Ri09VM .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-rPV7Ri09VM .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-rPV7Ri09VM .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rPV7Ri09VM svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-rPV7Ri09VM #e2_shape {
  fill: #ffffff !important;
}
.cid-rPV7Ri09VM .quote {
  background-color: #ffd402;
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #0072c6;
  text-align: center;
}
.cid-rPV7Ri09VM .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: #e3b600 transparent transparent;
}
.cid-rPV7Ri09VM .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #ffffff;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-rPV7Ri09VM .card-img {
  width: auto;
}
.cid-rPV7Ri09VM .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-rPV7Ri09VM .soc-item span {
  font-size: 1.4rem;
}
.cid-rPV7Ri09VM .soc-item:hover span {
  color: #29235c !important;
}
.cid-rPV7Ri09VM .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-rPV7Ri09VM .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-rPV7Ri09VM .media-wrap {
  margin-bottom: 1rem;
}
.cid-rPV7Ri09VM .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rPV7Ri09VM img {
  height: 4rem;
}
@media (max-width: 576px) {
  .cid-rPV7Ri09VM .item {
    justify-content: center;
  }
  .cid-rPV7Ri09VM .quote::after {
    left: 60px;
  }
}
.cid-rPV7Ri09VM .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-rPV7Ri09VM .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rPV7Ri09VM .text1 {
  color: #ffffff;
}
.cid-rPV7Ri09VM .item-title {
  color: #ffffff;
}
.cid-rPV7Ri09VM H5 {
  color: #ffffff;
  text-align: left;
}
.cid-rPV7Ri09VM .theme {
  color: #ffffff;
}
.cid-rPV7Ri09VM .copyright > p {
  color: #ff3366;
}
.cid-rPV7Ri09VM .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-sqIbVSCQxc .navbar {
  padding: .5rem 0;
  background: #29235c;
  transition: none;
  min-height: 50px;
}
.cid-sqIbVSCQxc .navbar-dropdown.bg-color.transparent.opened {
  background: #29235c;
}
.cid-sqIbVSCQxc a {
  font-style: normal;
}
.cid-sqIbVSCQxc .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sqIbVSCQxc .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-sqIbVSCQxc .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sqIbVSCQxc .content-text {
  margin-bottom: 0;
}
.cid-sqIbVSCQxc .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sqIbVSCQxc .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #29235c;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sqIbVSCQxc .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sqIbVSCQxc .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sqIbVSCQxc .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sqIbVSCQxc .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sqIbVSCQxc .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sqIbVSCQxc .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sqIbVSCQxc .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sqIbVSCQxc .nav-dropdown .link {
  font-weight: 400;
}
.cid-sqIbVSCQxc .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sqIbVSCQxc .content-right-side {
  text-align: center;
}
.cid-sqIbVSCQxc .menu-content-top {
  padding: 0 2rem;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-sqIbVSCQxc .menu-content-top {
    width: 100%;
    display: flex;
  }
  .cid-sqIbVSCQxc .menu-content-top .menu-content-right {
    display: block;
    position: absolute;
    visibility: hidden;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    transition: 0s all 0s;
  }
  .cid-sqIbVSCQxc .menu-content-top .menu-content-right .info-widget {
    padding: 1rem 0;
    text-align: center;
  }
  .cid-sqIbVSCQxc .navbar.opened .menu-content-right {
    visibility: visible;
    transition: 0s all 0.3s;
  }
  .cid-sqIbVSCQxc .menu-bottom {
    justify-content: flex-end;
  }
  .cid-sqIbVSCQxc img {
    height: 3.8rem !important;
  }
  .cid-sqIbVSCQxc .btn {
    display: -webkit-flex;
  }
  .cid-sqIbVSCQxc button.navbar-toggler {
    display: block;
  }
  .cid-sqIbVSCQxc .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-sqIbVSCQxc .navbar {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sqIbVSCQxc .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing,
  .cid-sqIbVSCQxc .navbar-collapse.show {
    display: block !important;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-nav,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-buttons,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sqIbVSCQxc .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-sqIbVSCQxc .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-sqIbVSCQxc .navbar.opened {
    padding-bottom: 8rem;
  }
  .cid-sqIbVSCQxc .navbar .navbar-collapse {
    max-height: calc(100vh - 8rem - 80px);
  }
}
@media (max-width: 575px) {
  .cid-sqIbVSCQxc .navbar.opened {
    padding-bottom: 10rem;
  }
  .cid-sqIbVSCQxc .navbar .navbar-collapse {
    max-height: calc(100vh - 10rem - 80px);
  }
}
.cid-sqIbVSCQxc .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sqIbVSCQxc .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sqIbVSCQxc .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sqIbVSCQxc .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid #e0e0e0;
}
.cid-sqIbVSCQxc .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqIbVSCQxc .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sqIbVSCQxc .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sqIbVSCQxc .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sqIbVSCQxc .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-sqIbVSCQxc .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-sqIbVSCQxc .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sqIbVSCQxc .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-sqIbVSCQxc .content-right-side {
    display: flex;
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sqIbVSCQxc .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-sqIbVSCQxc .navbar {
    display: block;
    padding: 0;
  }
  .cid-sqIbVSCQxc .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sqIbVSCQxc .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-sqIbVSCQxc .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-sqIbVSCQxc .navbar-short .menu-content-top {
    height: 0;
    min-height: 0;
    border: none;
  }
  .cid-sqIbVSCQxc .navbar-toggler {
    display: none;
  }
  .cid-sqIbVSCQxc .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sqIbVSCQxc .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqIbVSCQxc .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sqIbVSCQxc .menu-logo {
  margin-right: auto;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  border-radius: 10px;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu {
  background: #29235c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sqIbVSCQxc .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sqIbVSCQxc .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-sqIbVSCQxc .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sqIbVSCQxc button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sqIbVSCQxc button.navbar-toggler:focus {
  outline: none;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sqIbVSCQxc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sqIbVSCQxc .collapsed .btn {
  display: -webkit-flex;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sqIbVSCQxc .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1.5rem);
  }
  .cid-sqIbVSCQxc .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sqIbVSCQxc .collapsed button.navbar-toggler {
  display: block;
}
.cid-sqIbVSCQxc .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-sqIbVSCQxc .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sqIbVSCQxc .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-sqIbVSCQxc .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sqIbVSCQxc .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-sqIbVSCQxc .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-sqIbVSCQxc .nav-link:focus {
  outline: none;
}
.cid-sqIbVSCQxc .navbar-toggler {
  position: relative;
}
.cid-sqIbVSCQxc .dropdown-item.active,
.cid-sqIbVSCQxc .dropdown-item:active {
  background: #29235c;
  color: initial;
}
.cid-sqIbVSCQxc .nav-link:hover,
.cid-sqIbVSCQxc .dropdown-item:hover {
  color: #4284df;
}
.cid-sqIbVSCQxc .widget-title,
.cid-sqIbVSCQxc .widget-icon {
  color: #ffffff;
}
.cid-sqj6nVbswQ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/header-blue-dark2-3-2000x668.png");
  overflow: hidden;
}
.cid-sqj6nVbswQ svg {
  fill: #ffffff !important;
  pointer-events: none;
}
.cid-sqj6nVbswQ #e2_shape {
  fill: #ffffff !important;
}
.cid-sqj6nVbswQ .mbr-section-title.display-1 {
  line-height: 1.24;
}
.cid-sqj6nVbswQ .mbr-text {
  font-weight: 300;
}
.cid-sqj6nVbswQ .mbr-text.display-5 {
  font-size: 24px;
  line-height: 1.416;
}
.cid-sqj6nVbswQ .btn-white {
  color: #404040 !important;
}
.cid-sqj6nVbswQ .btn.display-4 {
  font-size: 14px;
  line-height: 1;
  padding: 21px 30px 20px;
}
.cid-sqj6nVbswQ .btn.display-4 .mbr-iconfont {
  font-size: 0.9rem;
  margin-right: 5px;
}
@media (max-width: 991px) {
  .cid-sqj6nVbswQ .img-wrap {
    display: none;
  }
}
@media (max-width: 768px) {
  .cid-sqj6nVbswQ {
    padding: 30px;
  }
  .cid-sqj6nVbswQ svg {
    display: none;
  }
}
.cid-sqj6nVbswQ .mbr-section-title,
.cid-sqj6nVbswQ .mbr-section-btn {
  color: #ffffff;
}
.cid-sqj6nVbswQ .mbr-text,
.cid-sqj6nVbswQ .mbr-section-btn {
  color: #ffffff;
}
.cid-rPVp98b6jb {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rPVp98b6jb .block-text {
  color: #000000;
}
.cid-rPVp999pbk {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rPVp999pbk .block-title {
  text-align: left;
}
.cid-rPVp99SSrY {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rPVp99SSrY .mbr-text {
  color: #000000;
}
.cid-rPVp99SSrY .counter-container ul {
  margin-bottom: 0;
  padding-left: .6rem;
}
.cid-rPVp99SSrY .counter-container ul li {
  margin-bottom: 1rem;
}
.cid-rPVp99SSrY .mbr-text .block-title {
  text-align: left;
}
.cid-rPVp99SSrY .mbr-text UL {
  text-align: left;
}
.cid-rPVp9aIem5 {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rPVp9aIem5 .block-title {
  text-align: left;
}
.cid-rPVp9bo3BX {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rPVp9bo3BX .mbr-text {
  color: #000000;
}
.cid-rPVp9bo3BX .counter-container ul {
  margin-bottom: 0;
  padding-left: .6rem;
}
.cid-rPVp9bo3BX .counter-container ul li {
  margin-bottom: 1rem;
}
.cid-rPVp9bo3BX .mbr-text .block-title {
  text-align: left;
}
.cid-rPVp9bo3BX .mbr-text UL {
  text-align: left;
}
.cid-rPVp9cdodg {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rPVp9cdodg .block-title {
  text-align: left;
}
.cid-rPVp9cY4Sy {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rPVp9cY4Sy .mbr-text {
  color: #000000;
}
.cid-rPVp9cY4Sy .counter-container ul {
  margin-bottom: 0;
  padding-left: .6rem;
}
.cid-rPVp9cY4Sy .counter-container ul li {
  margin-bottom: 1rem;
}
.cid-rPVp9cY4Sy .mbr-text .block-title {
  text-align: left;
}
.cid-rPVp9cY4Sy .mbr-text UL {
  text-align: left;
}
.cid-rPVp9dRvBe {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rPVp9dRvBe .block-title {
  text-align: left;
}
.cid-rPVp9eCbEj {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rPVp9eCbEj .mbr-text {
  color: #000000;
}
.cid-rPVp9eCbEj .counter-container ul {
  margin-bottom: 0;
  padding-left: .6rem;
}
.cid-rPVp9eCbEj .counter-container ul li {
  margin-bottom: 1rem;
}
.cid-rPVp9eCbEj .mbr-text .block-title {
  text-align: left;
}
.cid-rPVp9eCbEj .mbr-text UL {
  text-align: left;
}
.cid-rVo9PHJlBD {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rVo9PHJlBD .block-title {
  text-align: left;
}
.cid-rVo9QrT6jG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rVo9QrT6jG .mbr-text {
  color: #000000;
}
.cid-rVo9QrT6jG .counter-container ul {
  margin-bottom: 0;
  padding-left: .6rem;
}
.cid-rVo9QrT6jG .counter-container ul li {
  margin-bottom: 1rem;
}
.cid-rVo9QrT6jG .mbr-text .block-title {
  text-align: left;
}
.cid-rVo9QrT6jG .mbr-text UL {
  text-align: left;
}
.cid-rPVp9fygbh {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rPVp9fygbh .block-text {
  color: #000000;
}
.cid-rQ01zHn2Au {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rQ01zHn2Au .btn {
  border-radius: 20px;
}
.cid-srgXAven2T {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-srgXAven2T .mbr-text {
  color: #000000;
}
.cid-srgXAven2T h4 {
  text-align: center;
}
.cid-srgXAven2T p {
  text-align: center;
}
.cid-srgXAven2T .card .card-img span {
  font-size: 40px;
  padding: 1.5rem;
  background: #ffd402;
  border: 2px solid #ffd402;
  color: #ffffff;
  border-radius: 50%;
  transition: all .3s;
}
.cid-srgXAven2T .card:hover .card-img span {
  background: none;
  color: #ffd402;
}
.cid-srgXAven2T .card-title,
.cid-srgXAven2T .card-img {
  color: #000000;
}
.cid-rPVp9i9lKk {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rPVp9i9lKk .mbr-text,
.cid-rPVp9i9lKk .mbr-section-btn {
  color: #000000;
}
.cid-rPVp9i9lKk p {
  z-index: 2;
  position: relative;
}
.cid-rPVp9i9lKk .author-box {
  display: flex;
  flex-direction: row;
}
.cid-rPVp9i9lKk .col-lg-12 {
  box-shadow: 0 10px 55px 5px rgba(57, 49, 129, 0.35);
  padding: 1rem 1.5rem;
}
.cid-rPVp9i9lKk .ico1 {
  font-size: 2rem;
}
.cid-rPVp9i9lKk .ico2 {
  position: absolute;
  bottom: 15%;
  right: 1.5rem;
  font-size: 8rem;
  z-index: 1;
  opacity: 0.1;
}
.cid-rPVp9i9lKk H3 {
  color: #29235c;
  text-align: center;
}
.cid-rPVp9jutWS {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rPVp9jutWS .block-text {
  color: #000000;
  text-align: center;
}
.cid-rPVp9kiWsv {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rPVp9kiWsv .btn {
  border-radius: 20px;
}
.cid-rPVp9l3nih {
  padding-top: 180px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-blue-dark-3-2000x520.png");
  position: relative;
  overflow: hidden;
}
.cid-rPVp9l3nih .container {
  max-width: 1400px;
}
.cid-rPVp9l3nih .card-img2 span {
  padding-top: 6px;
}
.cid-rPVp9l3nih .soc-item a {
  padding-top: 5px;
}
.cid-rPVp9l3nih .btn {
  padding: 0.4rem 0.6rem!important;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-rPVp9l3nih .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-rPVp9l3nih .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-rPVp9l3nih .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rPVp9l3nih svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-rPVp9l3nih #e2_shape {
  fill: #ffffff !important;
}
.cid-rPVp9l3nih .quote {
  background-color: #ffd402;
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #0072c6;
  text-align: center;
}
.cid-rPVp9l3nih .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: #e3b600 transparent transparent;
}
.cid-rPVp9l3nih .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #ffffff;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-rPVp9l3nih .card-img {
  width: auto;
}
.cid-rPVp9l3nih .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-rPVp9l3nih .soc-item span {
  font-size: 1.4rem;
}
.cid-rPVp9l3nih .soc-item:hover span {
  color: #29235c !important;
}
.cid-rPVp9l3nih .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-rPVp9l3nih .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-rPVp9l3nih .media-wrap {
  margin-bottom: 1rem;
}
.cid-rPVp9l3nih .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rPVp9l3nih img {
  height: 4rem;
}
@media (max-width: 576px) {
  .cid-rPVp9l3nih .item {
    justify-content: center;
  }
  .cid-rPVp9l3nih .quote::after {
    left: 60px;
  }
}
.cid-rPVp9l3nih .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-rPVp9l3nih .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rPVp9l3nih .text1 {
  color: #ffffff;
}
.cid-rPVp9l3nih .item-title {
  color: #ffffff;
}
.cid-rPVp9l3nih H5 {
  color: #ffffff;
  text-align: left;
}
.cid-rPVp9l3nih .theme {
  color: #ffffff;
}
.cid-rPVp9l3nih .copyright > p {
  color: #ff3366;
}
.cid-rPVp9l3nih .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-sqIbVSCQxc .navbar {
  padding: .5rem 0;
  background: #29235c;
  transition: none;
  min-height: 50px;
}
.cid-sqIbVSCQxc .navbar-dropdown.bg-color.transparent.opened {
  background: #29235c;
}
.cid-sqIbVSCQxc a {
  font-style: normal;
}
.cid-sqIbVSCQxc .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sqIbVSCQxc .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-sqIbVSCQxc .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sqIbVSCQxc .content-text {
  margin-bottom: 0;
}
.cid-sqIbVSCQxc .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sqIbVSCQxc .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #29235c;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sqIbVSCQxc .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sqIbVSCQxc .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sqIbVSCQxc .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sqIbVSCQxc .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sqIbVSCQxc .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sqIbVSCQxc .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sqIbVSCQxc .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sqIbVSCQxc .nav-dropdown .link {
  font-weight: 400;
}
.cid-sqIbVSCQxc .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sqIbVSCQxc .content-right-side {
  text-align: center;
}
.cid-sqIbVSCQxc .menu-content-top {
  padding: 0 2rem;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-sqIbVSCQxc .menu-content-top {
    width: 100%;
    display: flex;
  }
  .cid-sqIbVSCQxc .menu-content-top .menu-content-right {
    display: block;
    position: absolute;
    visibility: hidden;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    transition: 0s all 0s;
  }
  .cid-sqIbVSCQxc .menu-content-top .menu-content-right .info-widget {
    padding: 1rem 0;
    text-align: center;
  }
  .cid-sqIbVSCQxc .navbar.opened .menu-content-right {
    visibility: visible;
    transition: 0s all 0.3s;
  }
  .cid-sqIbVSCQxc .menu-bottom {
    justify-content: flex-end;
  }
  .cid-sqIbVSCQxc img {
    height: 3.8rem !important;
  }
  .cid-sqIbVSCQxc .btn {
    display: -webkit-flex;
  }
  .cid-sqIbVSCQxc button.navbar-toggler {
    display: block;
  }
  .cid-sqIbVSCQxc .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-sqIbVSCQxc .navbar {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sqIbVSCQxc .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing,
  .cid-sqIbVSCQxc .navbar-collapse.show {
    display: block !important;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-nav,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-buttons,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sqIbVSCQxc .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-sqIbVSCQxc .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-sqIbVSCQxc .navbar.opened {
    padding-bottom: 8rem;
  }
  .cid-sqIbVSCQxc .navbar .navbar-collapse {
    max-height: calc(100vh - 8rem - 80px);
  }
}
@media (max-width: 575px) {
  .cid-sqIbVSCQxc .navbar.opened {
    padding-bottom: 10rem;
  }
  .cid-sqIbVSCQxc .navbar .navbar-collapse {
    max-height: calc(100vh - 10rem - 80px);
  }
}
.cid-sqIbVSCQxc .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sqIbVSCQxc .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sqIbVSCQxc .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sqIbVSCQxc .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid #e0e0e0;
}
.cid-sqIbVSCQxc .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqIbVSCQxc .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sqIbVSCQxc .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sqIbVSCQxc .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sqIbVSCQxc .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-sqIbVSCQxc .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-sqIbVSCQxc .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sqIbVSCQxc .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-sqIbVSCQxc .content-right-side {
    display: flex;
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sqIbVSCQxc .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-sqIbVSCQxc .navbar {
    display: block;
    padding: 0;
  }
  .cid-sqIbVSCQxc .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sqIbVSCQxc .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-sqIbVSCQxc .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-sqIbVSCQxc .navbar-short .menu-content-top {
    height: 0;
    min-height: 0;
    border: none;
  }
  .cid-sqIbVSCQxc .navbar-toggler {
    display: none;
  }
  .cid-sqIbVSCQxc .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sqIbVSCQxc .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqIbVSCQxc .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sqIbVSCQxc .menu-logo {
  margin-right: auto;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  border-radius: 10px;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu {
  background: #29235c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sqIbVSCQxc .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sqIbVSCQxc .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-sqIbVSCQxc .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sqIbVSCQxc button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sqIbVSCQxc button.navbar-toggler:focus {
  outline: none;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sqIbVSCQxc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sqIbVSCQxc .collapsed .btn {
  display: -webkit-flex;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sqIbVSCQxc .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1.5rem);
  }
  .cid-sqIbVSCQxc .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sqIbVSCQxc .collapsed button.navbar-toggler {
  display: block;
}
.cid-sqIbVSCQxc .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-sqIbVSCQxc .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sqIbVSCQxc .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-sqIbVSCQxc .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sqIbVSCQxc .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-sqIbVSCQxc .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-sqIbVSCQxc .nav-link:focus {
  outline: none;
}
.cid-sqIbVSCQxc .navbar-toggler {
  position: relative;
}
.cid-sqIbVSCQxc .dropdown-item.active,
.cid-sqIbVSCQxc .dropdown-item:active {
  background: #29235c;
  color: initial;
}
.cid-sqIbVSCQxc .nav-link:hover,
.cid-sqIbVSCQxc .dropdown-item:hover {
  color: #4284df;
}
.cid-sqIbVSCQxc .widget-title,
.cid-sqIbVSCQxc .widget-icon {
  color: #ffffff;
}
.cid-sqj6LfBjf7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/header-blue-dark2-3-2000x668.png");
  overflow: hidden;
}
.cid-sqj6LfBjf7 svg {
  fill: #ffffff !important;
  pointer-events: none;
}
.cid-sqj6LfBjf7 #e2_shape {
  fill: #ffffff !important;
}
.cid-sqj6LfBjf7 .mbr-section-title.display-1 {
  line-height: 1.24;
}
.cid-sqj6LfBjf7 .mbr-text {
  font-weight: 300;
}
.cid-sqj6LfBjf7 .mbr-text.display-5 {
  font-size: 24px;
  line-height: 1.416;
}
.cid-sqj6LfBjf7 .btn-white {
  color: #404040 !important;
}
.cid-sqj6LfBjf7 .btn.display-4 {
  font-size: 14px;
  line-height: 1;
  padding: 21px 30px 20px;
}
.cid-sqj6LfBjf7 .btn.display-4 .mbr-iconfont {
  font-size: 0.9rem;
  margin-right: 5px;
}
@media (max-width: 991px) {
  .cid-sqj6LfBjf7 .img-wrap {
    display: none;
  }
}
@media (max-width: 768px) {
  .cid-sqj6LfBjf7 {
    padding: 30px;
  }
  .cid-sqj6LfBjf7 svg {
    display: none;
  }
}
.cid-sqj6LfBjf7 .mbr-section-title,
.cid-sqj6LfBjf7 .mbr-section-btn {
  color: #ffffff;
}
.cid-sqj6LfBjf7 .mbr-text,
.cid-sqj6LfBjf7 .mbr-section-btn {
  color: #ffffff;
}
.cid-rPVqWfDSNU {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rPVqWfDSNU .block-text {
  color: #000000;
}
.cid-rPVqWgh5hz {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rPVqWgh5hz .block-title {
  text-align: left;
}
.cid-rPVqWgU0aD {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rPVqWgU0aD .mbr-text {
  color: #000000;
}
.cid-rPVqWgU0aD .counter-container ul {
  margin-bottom: 0;
  padding-left: .6rem;
}
.cid-rPVqWgU0aD .counter-container ul li {
  margin-bottom: 1rem;
}
.cid-rPVqWgU0aD .mbr-text .block-title {
  text-align: left;
}
.cid-rPVqWgU0aD .mbr-text UL {
  text-align: left;
}
.cid-rPVqWhDCZh {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rPVqWhDCZh .block-title {
  text-align: left;
}
.cid-rPVqWidtkT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rPVqWidtkT .mbr-text {
  color: #000000;
}
.cid-rPVqWidtkT .counter-container ul {
  margin-bottom: 0;
  padding-left: .6rem;
}
.cid-rPVqWidtkT .counter-container ul li {
  margin-bottom: 1rem;
}
.cid-rPVqWidtkT .mbr-text .block-title {
  text-align: left;
}
.cid-rPVqWidtkT .mbr-text UL {
  text-align: left;
}
.cid-rPVqWiVtDU {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rPVqWiVtDU .block-title {
  text-align: left;
}
.cid-rPVqWjxRZu {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rPVqWjxRZu .mbr-text {
  color: #000000;
}
.cid-rPVqWjxRZu .counter-container ul {
  margin-bottom: 0;
  padding-left: .6rem;
}
.cid-rPVqWjxRZu .counter-container ul li {
  margin-bottom: 1rem;
}
.cid-rPVqWjxRZu .mbr-text .block-title {
  text-align: left;
}
.cid-rPVqWjxRZu .mbr-text UL {
  text-align: left;
}
.cid-rPVqWkgIjw {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rPVqWkgIjw .block-title {
  text-align: left;
}
.cid-rPVqWkUUHD {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rPVqWkUUHD .mbr-text {
  color: #000000;
}
.cid-rPVqWkUUHD .counter-container ul {
  margin-bottom: 0;
  padding-left: .6rem;
}
.cid-rPVqWkUUHD .counter-container ul li {
  margin-bottom: 1rem;
}
.cid-rPVqWkUUHD .mbr-text .block-title {
  text-align: left;
}
.cid-rPVqWkUUHD .mbr-text UL {
  text-align: left;
}
.cid-rPVqWlBzVj {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rPVqWlBzVj .block-text {
  color: #000000;
}
.cid-rQ01Q2BTRd {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rQ01Q2BTRd .btn {
  border-radius: 20px;
}
.cid-srgXEtuacD {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-srgXEtuacD .mbr-text {
  color: #000000;
}
.cid-srgXEtuacD h4 {
  text-align: center;
}
.cid-srgXEtuacD p {
  text-align: center;
}
.cid-srgXEtuacD .card .card-img span {
  font-size: 40px;
  padding: 1.5rem;
  background: #ffd402;
  border: 2px solid #ffd402;
  color: #ffffff;
  border-radius: 50%;
  transition: all .3s;
}
.cid-srgXEtuacD .card:hover .card-img span {
  background: none;
  color: #ffd402;
}
.cid-srgXEtuacD .card-title,
.cid-srgXEtuacD .card-img {
  color: #000000;
}
.cid-rPVqWo1kv7 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rPVqWo1kv7 .mbr-text,
.cid-rPVqWo1kv7 .mbr-section-btn {
  color: #000000;
}
.cid-rPVqWo1kv7 p {
  z-index: 2;
  position: relative;
}
.cid-rPVqWo1kv7 .author-box {
  display: flex;
  flex-direction: row;
}
.cid-rPVqWo1kv7 .col-lg-12 {
  box-shadow: 0 10px 55px 5px rgba(57, 49, 129, 0.35);
  padding: 1rem 1.5rem;
}
.cid-rPVqWo1kv7 .ico1 {
  font-size: 2rem;
}
.cid-rPVqWo1kv7 .ico2 {
  position: absolute;
  bottom: 15%;
  right: 1.5rem;
  font-size: 8rem;
  z-index: 1;
  opacity: 0.1;
}
.cid-rPVqWo1kv7 H3 {
  color: #29235c;
  text-align: center;
}
.cid-rPVqWoVqZ1 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rPVqWoVqZ1 .block-text {
  color: #000000;
  text-align: center;
}
.cid-rPVqWpBc8d {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rPVqWpBc8d .btn {
  border-radius: 20px;
}
.cid-rPVqWqf8RJ {
  padding-top: 180px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-blue-dark-3-2000x520.png");
  position: relative;
  overflow: hidden;
}
.cid-rPVqWqf8RJ .container {
  max-width: 1400px;
}
.cid-rPVqWqf8RJ .card-img2 span {
  padding-top: 6px;
}
.cid-rPVqWqf8RJ .soc-item a {
  padding-top: 5px;
}
.cid-rPVqWqf8RJ .btn {
  padding: 0.4rem 0.6rem!important;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-rPVqWqf8RJ .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-rPVqWqf8RJ .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-rPVqWqf8RJ .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rPVqWqf8RJ svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-rPVqWqf8RJ #e2_shape {
  fill: #ffffff !important;
}
.cid-rPVqWqf8RJ .quote {
  background-color: #ffd402;
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #0072c6;
  text-align: center;
}
.cid-rPVqWqf8RJ .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: #e3b600 transparent transparent;
}
.cid-rPVqWqf8RJ .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #ffffff;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-rPVqWqf8RJ .card-img {
  width: auto;
}
.cid-rPVqWqf8RJ .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-rPVqWqf8RJ .soc-item span {
  font-size: 1.4rem;
}
.cid-rPVqWqf8RJ .soc-item:hover span {
  color: #29235c !important;
}
.cid-rPVqWqf8RJ .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-rPVqWqf8RJ .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-rPVqWqf8RJ .media-wrap {
  margin-bottom: 1rem;
}
.cid-rPVqWqf8RJ .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rPVqWqf8RJ img {
  height: 4rem;
}
@media (max-width: 576px) {
  .cid-rPVqWqf8RJ .item {
    justify-content: center;
  }
  .cid-rPVqWqf8RJ .quote::after {
    left: 60px;
  }
}
.cid-rPVqWqf8RJ .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-rPVqWqf8RJ .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rPVqWqf8RJ .text1 {
  color: #ffffff;
}
.cid-rPVqWqf8RJ .item-title {
  color: #ffffff;
}
.cid-rPVqWqf8RJ H5 {
  color: #ffffff;
  text-align: left;
}
.cid-rPVqWqf8RJ .theme {
  color: #ffffff;
}
.cid-rPVqWqf8RJ .copyright > p {
  color: #ff3366;
}
.cid-rPVqWqf8RJ .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-sqIbVSCQxc .navbar {
  padding: .5rem 0;
  background: #29235c;
  transition: none;
  min-height: 50px;
}
.cid-sqIbVSCQxc .navbar-dropdown.bg-color.transparent.opened {
  background: #29235c;
}
.cid-sqIbVSCQxc a {
  font-style: normal;
}
.cid-sqIbVSCQxc .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sqIbVSCQxc .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-sqIbVSCQxc .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sqIbVSCQxc .content-text {
  margin-bottom: 0;
}
.cid-sqIbVSCQxc .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sqIbVSCQxc .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #29235c;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sqIbVSCQxc .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sqIbVSCQxc .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sqIbVSCQxc .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sqIbVSCQxc .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sqIbVSCQxc .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sqIbVSCQxc .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sqIbVSCQxc .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sqIbVSCQxc .nav-dropdown .link {
  font-weight: 400;
}
.cid-sqIbVSCQxc .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sqIbVSCQxc .content-right-side {
  text-align: center;
}
.cid-sqIbVSCQxc .menu-content-top {
  padding: 0 2rem;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-sqIbVSCQxc .menu-content-top {
    width: 100%;
    display: flex;
  }
  .cid-sqIbVSCQxc .menu-content-top .menu-content-right {
    display: block;
    position: absolute;
    visibility: hidden;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    transition: 0s all 0s;
  }
  .cid-sqIbVSCQxc .menu-content-top .menu-content-right .info-widget {
    padding: 1rem 0;
    text-align: center;
  }
  .cid-sqIbVSCQxc .navbar.opened .menu-content-right {
    visibility: visible;
    transition: 0s all 0.3s;
  }
  .cid-sqIbVSCQxc .menu-bottom {
    justify-content: flex-end;
  }
  .cid-sqIbVSCQxc img {
    height: 3.8rem !important;
  }
  .cid-sqIbVSCQxc .btn {
    display: -webkit-flex;
  }
  .cid-sqIbVSCQxc button.navbar-toggler {
    display: block;
  }
  .cid-sqIbVSCQxc .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-sqIbVSCQxc .navbar {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sqIbVSCQxc .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing,
  .cid-sqIbVSCQxc .navbar-collapse.show {
    display: block !important;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-nav,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-buttons,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sqIbVSCQxc .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-sqIbVSCQxc .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-sqIbVSCQxc .navbar.opened {
    padding-bottom: 8rem;
  }
  .cid-sqIbVSCQxc .navbar .navbar-collapse {
    max-height: calc(100vh - 8rem - 80px);
  }
}
@media (max-width: 575px) {
  .cid-sqIbVSCQxc .navbar.opened {
    padding-bottom: 10rem;
  }
  .cid-sqIbVSCQxc .navbar .navbar-collapse {
    max-height: calc(100vh - 10rem - 80px);
  }
}
.cid-sqIbVSCQxc .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sqIbVSCQxc .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sqIbVSCQxc .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sqIbVSCQxc .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid #e0e0e0;
}
.cid-sqIbVSCQxc .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqIbVSCQxc .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sqIbVSCQxc .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sqIbVSCQxc .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sqIbVSCQxc .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-sqIbVSCQxc .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-sqIbVSCQxc .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sqIbVSCQxc .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-sqIbVSCQxc .content-right-side {
    display: flex;
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sqIbVSCQxc .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-sqIbVSCQxc .navbar {
    display: block;
    padding: 0;
  }
  .cid-sqIbVSCQxc .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sqIbVSCQxc .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-sqIbVSCQxc .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-sqIbVSCQxc .navbar-short .menu-content-top {
    height: 0;
    min-height: 0;
    border: none;
  }
  .cid-sqIbVSCQxc .navbar-toggler {
    display: none;
  }
  .cid-sqIbVSCQxc .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sqIbVSCQxc .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqIbVSCQxc .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sqIbVSCQxc .menu-logo {
  margin-right: auto;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  border-radius: 10px;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu {
  background: #29235c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sqIbVSCQxc .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sqIbVSCQxc .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-sqIbVSCQxc .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sqIbVSCQxc button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sqIbVSCQxc button.navbar-toggler:focus {
  outline: none;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sqIbVSCQxc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sqIbVSCQxc .collapsed .btn {
  display: -webkit-flex;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sqIbVSCQxc .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1.5rem);
  }
  .cid-sqIbVSCQxc .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sqIbVSCQxc .collapsed button.navbar-toggler {
  display: block;
}
.cid-sqIbVSCQxc .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-sqIbVSCQxc .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sqIbVSCQxc .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-sqIbVSCQxc .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sqIbVSCQxc .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-sqIbVSCQxc .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-sqIbVSCQxc .nav-link:focus {
  outline: none;
}
.cid-sqIbVSCQxc .navbar-toggler {
  position: relative;
}
.cid-sqIbVSCQxc .dropdown-item.active,
.cid-sqIbVSCQxc .dropdown-item:active {
  background: #29235c;
  color: initial;
}
.cid-sqIbVSCQxc .nav-link:hover,
.cid-sqIbVSCQxc .dropdown-item:hover {
  color: #4284df;
}
.cid-sqIbVSCQxc .widget-title,
.cid-sqIbVSCQxc .widget-icon {
  color: #ffffff;
}
.cid-sqj7llQ7Qf {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/header-blue-dark2-3-2000x668.png");
  overflow: hidden;
}
.cid-sqj7llQ7Qf svg {
  fill: #ffffff !important;
  pointer-events: none;
}
.cid-sqj7llQ7Qf #e2_shape {
  fill: #ffffff !important;
}
.cid-sqj7llQ7Qf .mbr-section-title.display-1 {
  line-height: 1.24;
}
.cid-sqj7llQ7Qf .mbr-text {
  font-weight: 300;
}
.cid-sqj7llQ7Qf .mbr-text.display-5 {
  font-size: 24px;
  line-height: 1.416;
}
.cid-sqj7llQ7Qf .btn-white {
  color: #404040 !important;
}
.cid-sqj7llQ7Qf .btn.display-4 {
  font-size: 14px;
  line-height: 1;
  padding: 21px 30px 20px;
}
.cid-sqj7llQ7Qf .btn.display-4 .mbr-iconfont {
  font-size: 0.9rem;
  margin-right: 5px;
}
@media (max-width: 991px) {
  .cid-sqj7llQ7Qf .img-wrap {
    display: none;
  }
}
@media (max-width: 768px) {
  .cid-sqj7llQ7Qf {
    padding: 30px;
  }
  .cid-sqj7llQ7Qf svg {
    display: none;
  }
}
.cid-sqj7llQ7Qf .mbr-section-title,
.cid-sqj7llQ7Qf .mbr-section-btn {
  color: #ffffff;
}
.cid-sqj7llQ7Qf .mbr-text,
.cid-sqj7llQ7Qf .mbr-section-btn {
  color: #ffffff;
}
.cid-rPVI68uGVm {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rPVI68uGVm .block-text {
  color: #000000;
}
.cid-rPVI69JwL6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rPVI69JwL6 .mbr-text {
  color: #000000;
}
.cid-rPVI69JwL6 .counter-container ul {
  margin-bottom: 0;
  padding-left: .6rem;
}
.cid-rPVI69JwL6 .counter-container ul li {
  margin-bottom: 1rem;
}
.cid-rPVI69JwL6 .mbr-text .block-title {
  text-align: left;
}
.cid-rPVI69JwL6 .mbr-text UL {
  text-align: left;
}
.cid-rPVI6dwaPa {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rPVI6dwaPa .block-text {
  color: #000000;
}
.cid-rQ01XpwEvc {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rQ01XpwEvc .btn {
  border-radius: 20px;
}
.cid-srgXIjziNG {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-srgXIjziNG .mbr-text {
  color: #000000;
}
.cid-srgXIjziNG h4 {
  text-align: center;
}
.cid-srgXIjziNG p {
  text-align: center;
}
.cid-srgXIjziNG .card .card-img span {
  font-size: 40px;
  padding: 1.5rem;
  background: #ffd402;
  border: 2px solid #ffd402;
  color: #ffffff;
  border-radius: 50%;
  transition: all .3s;
}
.cid-srgXIjziNG .card:hover .card-img span {
  background: none;
  color: #ffd402;
}
.cid-srgXIjziNG .card-title,
.cid-srgXIjziNG .card-img {
  color: #000000;
}
.cid-rPVI6fv41B {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rPVI6fv41B .mbr-text,
.cid-rPVI6fv41B .mbr-section-btn {
  color: #000000;
}
.cid-rPVI6fv41B p {
  z-index: 2;
  position: relative;
}
.cid-rPVI6fv41B .author-box {
  display: flex;
  flex-direction: row;
}
.cid-rPVI6fv41B .col-lg-12 {
  box-shadow: 0 10px 55px 5px rgba(57, 49, 129, 0.35);
  padding: 1rem 1.5rem;
}
.cid-rPVI6fv41B .ico1 {
  font-size: 2rem;
}
.cid-rPVI6fv41B .ico2 {
  position: absolute;
  bottom: 15%;
  right: 1.5rem;
  font-size: 8rem;
  z-index: 1;
  opacity: 0.1;
}
.cid-rPVI6fv41B H3 {
  color: #29235c;
  text-align: center;
}
.cid-rPVI6giGzX {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rPVI6giGzX .block-text {
  color: #000000;
  text-align: center;
}
.cid-rPVI6h4vUB {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rPVI6h4vUB .btn {
  border-radius: 20px;
}
.cid-rPVI6hEl56 {
  padding-top: 180px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-blue-dark-3-2000x520.png");
  position: relative;
  overflow: hidden;
}
.cid-rPVI6hEl56 .container {
  max-width: 1400px;
}
.cid-rPVI6hEl56 .card-img2 span {
  padding-top: 6px;
}
.cid-rPVI6hEl56 .soc-item a {
  padding-top: 5px;
}
.cid-rPVI6hEl56 .btn {
  padding: 0.4rem 0.6rem!important;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-rPVI6hEl56 .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-rPVI6hEl56 .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-rPVI6hEl56 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rPVI6hEl56 svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-rPVI6hEl56 #e2_shape {
  fill: #ffffff !important;
}
.cid-rPVI6hEl56 .quote {
  background-color: #ffd402;
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #0072c6;
  text-align: center;
}
.cid-rPVI6hEl56 .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: #e3b600 transparent transparent;
}
.cid-rPVI6hEl56 .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #ffffff;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-rPVI6hEl56 .card-img {
  width: auto;
}
.cid-rPVI6hEl56 .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-rPVI6hEl56 .soc-item span {
  font-size: 1.4rem;
}
.cid-rPVI6hEl56 .soc-item:hover span {
  color: #29235c !important;
}
.cid-rPVI6hEl56 .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-rPVI6hEl56 .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-rPVI6hEl56 .media-wrap {
  margin-bottom: 1rem;
}
.cid-rPVI6hEl56 .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rPVI6hEl56 img {
  height: 4rem;
}
@media (max-width: 576px) {
  .cid-rPVI6hEl56 .item {
    justify-content: center;
  }
  .cid-rPVI6hEl56 .quote::after {
    left: 60px;
  }
}
.cid-rPVI6hEl56 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-rPVI6hEl56 .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rPVI6hEl56 .text1 {
  color: #ffffff;
}
.cid-rPVI6hEl56 .item-title {
  color: #ffffff;
}
.cid-rPVI6hEl56 H5 {
  color: #ffffff;
  text-align: left;
}
.cid-rPVI6hEl56 .theme {
  color: #ffffff;
}
.cid-rPVI6hEl56 .copyright > p {
  color: #ff3366;
}
.cid-rPVI6hEl56 .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-sqIbVSCQxc .navbar {
  padding: .5rem 0;
  background: #29235c;
  transition: none;
  min-height: 50px;
}
.cid-sqIbVSCQxc .navbar-dropdown.bg-color.transparent.opened {
  background: #29235c;
}
.cid-sqIbVSCQxc a {
  font-style: normal;
}
.cid-sqIbVSCQxc .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sqIbVSCQxc .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-sqIbVSCQxc .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sqIbVSCQxc .content-text {
  margin-bottom: 0;
}
.cid-sqIbVSCQxc .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sqIbVSCQxc .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #29235c;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sqIbVSCQxc .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sqIbVSCQxc .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sqIbVSCQxc .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sqIbVSCQxc .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sqIbVSCQxc .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sqIbVSCQxc .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sqIbVSCQxc .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sqIbVSCQxc .nav-dropdown .link {
  font-weight: 400;
}
.cid-sqIbVSCQxc .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sqIbVSCQxc .content-right-side {
  text-align: center;
}
.cid-sqIbVSCQxc .menu-content-top {
  padding: 0 2rem;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-sqIbVSCQxc .menu-content-top {
    width: 100%;
    display: flex;
  }
  .cid-sqIbVSCQxc .menu-content-top .menu-content-right {
    display: block;
    position: absolute;
    visibility: hidden;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    transition: 0s all 0s;
  }
  .cid-sqIbVSCQxc .menu-content-top .menu-content-right .info-widget {
    padding: 1rem 0;
    text-align: center;
  }
  .cid-sqIbVSCQxc .navbar.opened .menu-content-right {
    visibility: visible;
    transition: 0s all 0.3s;
  }
  .cid-sqIbVSCQxc .menu-bottom {
    justify-content: flex-end;
  }
  .cid-sqIbVSCQxc img {
    height: 3.8rem !important;
  }
  .cid-sqIbVSCQxc .btn {
    display: -webkit-flex;
  }
  .cid-sqIbVSCQxc button.navbar-toggler {
    display: block;
  }
  .cid-sqIbVSCQxc .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-sqIbVSCQxc .navbar {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sqIbVSCQxc .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing,
  .cid-sqIbVSCQxc .navbar-collapse.show {
    display: block !important;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-nav,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-buttons,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sqIbVSCQxc .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-sqIbVSCQxc .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-sqIbVSCQxc .navbar.opened {
    padding-bottom: 8rem;
  }
  .cid-sqIbVSCQxc .navbar .navbar-collapse {
    max-height: calc(100vh - 8rem - 80px);
  }
}
@media (max-width: 575px) {
  .cid-sqIbVSCQxc .navbar.opened {
    padding-bottom: 10rem;
  }
  .cid-sqIbVSCQxc .navbar .navbar-collapse {
    max-height: calc(100vh - 10rem - 80px);
  }
}
.cid-sqIbVSCQxc .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sqIbVSCQxc .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sqIbVSCQxc .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sqIbVSCQxc .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid #e0e0e0;
}
.cid-sqIbVSCQxc .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqIbVSCQxc .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sqIbVSCQxc .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sqIbVSCQxc .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sqIbVSCQxc .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-sqIbVSCQxc .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-sqIbVSCQxc .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sqIbVSCQxc .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-sqIbVSCQxc .content-right-side {
    display: flex;
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sqIbVSCQxc .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-sqIbVSCQxc .navbar {
    display: block;
    padding: 0;
  }
  .cid-sqIbVSCQxc .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sqIbVSCQxc .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-sqIbVSCQxc .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-sqIbVSCQxc .navbar-short .menu-content-top {
    height: 0;
    min-height: 0;
    border: none;
  }
  .cid-sqIbVSCQxc .navbar-toggler {
    display: none;
  }
  .cid-sqIbVSCQxc .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sqIbVSCQxc .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqIbVSCQxc .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sqIbVSCQxc .menu-logo {
  margin-right: auto;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  border-radius: 10px;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu {
  background: #29235c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sqIbVSCQxc .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sqIbVSCQxc .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-sqIbVSCQxc .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sqIbVSCQxc button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sqIbVSCQxc button.navbar-toggler:focus {
  outline: none;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sqIbVSCQxc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sqIbVSCQxc .collapsed .btn {
  display: -webkit-flex;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sqIbVSCQxc .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1.5rem);
  }
  .cid-sqIbVSCQxc .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sqIbVSCQxc .collapsed button.navbar-toggler {
  display: block;
}
.cid-sqIbVSCQxc .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-sqIbVSCQxc .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sqIbVSCQxc .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-sqIbVSCQxc .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sqIbVSCQxc .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-sqIbVSCQxc .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-sqIbVSCQxc .nav-link:focus {
  outline: none;
}
.cid-sqIbVSCQxc .navbar-toggler {
  position: relative;
}
.cid-sqIbVSCQxc .dropdown-item.active,
.cid-sqIbVSCQxc .dropdown-item:active {
  background: #29235c;
  color: initial;
}
.cid-sqIbVSCQxc .nav-link:hover,
.cid-sqIbVSCQxc .dropdown-item:hover {
  color: #4284df;
}
.cid-sqIbVSCQxc .widget-title,
.cid-sqIbVSCQxc .widget-icon {
  color: #ffffff;
}
.cid-sqj8cwbuiW {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/header-blue-dark2-3-2000x668.png");
  overflow: hidden;
}
.cid-sqj8cwbuiW svg {
  fill: #ffffff !important;
  pointer-events: none;
}
.cid-sqj8cwbuiW #e2_shape {
  fill: #ffffff !important;
}
.cid-sqj8cwbuiW .mbr-section-title.display-1 {
  line-height: 1.24;
}
.cid-sqj8cwbuiW .mbr-text {
  font-weight: 300;
}
.cid-sqj8cwbuiW .mbr-text.display-5 {
  font-size: 24px;
  line-height: 1.416;
}
.cid-sqj8cwbuiW .btn-white {
  color: #404040 !important;
}
.cid-sqj8cwbuiW .btn.display-4 {
  font-size: 14px;
  line-height: 1;
  padding: 21px 30px 20px;
}
.cid-sqj8cwbuiW .btn.display-4 .mbr-iconfont {
  font-size: 0.9rem;
  margin-right: 5px;
}
@media (max-width: 991px) {
  .cid-sqj8cwbuiW .img-wrap {
    display: none;
  }
}
@media (max-width: 768px) {
  .cid-sqj8cwbuiW {
    padding: 30px;
  }
  .cid-sqj8cwbuiW svg {
    display: none;
  }
}
.cid-sqj8cwbuiW .mbr-section-title,
.cid-sqj8cwbuiW .mbr-section-btn {
  color: #ffffff;
}
.cid-sqj8cwbuiW .mbr-text,
.cid-sqj8cwbuiW .mbr-section-btn {
  color: #ffffff;
}
.cid-rPVILSRo3q {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rPVILSRo3q .block-text {
  color: #000000;
}
.cid-rPVILUda9U {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rPVILUda9U .mbr-text {
  color: #000000;
}
.cid-rPVILUda9U .counter-container ul {
  margin-bottom: 0;
  padding-left: .6rem;
}
.cid-rPVILUda9U .counter-container ul li {
  margin-bottom: 1rem;
}
.cid-rPVILUda9U .mbr-text .block-title {
  text-align: left;
}
.cid-rPVILUda9U .mbr-text UL {
  text-align: left;
}
.cid-rPVILYNLC4 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rPVILYNLC4 .block-text {
  color: #000000;
}
.cid-rQ025TFPMt {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rQ025TFPMt .btn {
  border-radius: 20px;
}
.cid-srgXMy6JIl {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-srgXMy6JIl .mbr-text {
  color: #000000;
}
.cid-srgXMy6JIl h4 {
  text-align: center;
}
.cid-srgXMy6JIl p {
  text-align: center;
}
.cid-srgXMy6JIl .card .card-img span {
  font-size: 40px;
  padding: 1.5rem;
  background: #ffd402;
  border: 2px solid #ffd402;
  color: #ffffff;
  border-radius: 50%;
  transition: all .3s;
}
.cid-srgXMy6JIl .card:hover .card-img span {
  background: none;
  color: #ffd402;
}
.cid-srgXMy6JIl .card-title,
.cid-srgXMy6JIl .card-img {
  color: #000000;
}
.cid-rPVIM0z7Qz {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rPVIM0z7Qz .mbr-text,
.cid-rPVIM0z7Qz .mbr-section-btn {
  color: #000000;
}
.cid-rPVIM0z7Qz p {
  z-index: 2;
  position: relative;
}
.cid-rPVIM0z7Qz .author-box {
  display: flex;
  flex-direction: row;
}
.cid-rPVIM0z7Qz .col-lg-12 {
  box-shadow: 0 10px 55px 5px rgba(57, 49, 129, 0.35);
  padding: 1rem 1.5rem;
}
.cid-rPVIM0z7Qz .ico1 {
  font-size: 2rem;
}
.cid-rPVIM0z7Qz .ico2 {
  position: absolute;
  bottom: 15%;
  right: 1.5rem;
  font-size: 8rem;
  z-index: 1;
  opacity: 0.1;
}
.cid-rPVIM0z7Qz H3 {
  color: #29235c;
  text-align: center;
}
.cid-rPVIM1md7h {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rPVIM1md7h .block-text {
  color: #000000;
  text-align: center;
}
.cid-rPVIM1XfPy {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rPVIM1XfPy .btn {
  border-radius: 20px;
}
.cid-rPVIM2w4ox {
  padding-top: 180px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-blue-dark-3-2000x520.png");
  position: relative;
  overflow: hidden;
}
.cid-rPVIM2w4ox .container {
  max-width: 1400px;
}
.cid-rPVIM2w4ox .card-img2 span {
  padding-top: 6px;
}
.cid-rPVIM2w4ox .soc-item a {
  padding-top: 5px;
}
.cid-rPVIM2w4ox .btn {
  padding: 0.4rem 0.6rem!important;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-rPVIM2w4ox .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-rPVIM2w4ox .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-rPVIM2w4ox .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rPVIM2w4ox svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-rPVIM2w4ox #e2_shape {
  fill: #ffffff !important;
}
.cid-rPVIM2w4ox .quote {
  background-color: #ffd402;
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #0072c6;
  text-align: center;
}
.cid-rPVIM2w4ox .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: #e3b600 transparent transparent;
}
.cid-rPVIM2w4ox .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #ffffff;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-rPVIM2w4ox .card-img {
  width: auto;
}
.cid-rPVIM2w4ox .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-rPVIM2w4ox .soc-item span {
  font-size: 1.4rem;
}
.cid-rPVIM2w4ox .soc-item:hover span {
  color: #29235c !important;
}
.cid-rPVIM2w4ox .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-rPVIM2w4ox .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-rPVIM2w4ox .media-wrap {
  margin-bottom: 1rem;
}
.cid-rPVIM2w4ox .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rPVIM2w4ox img {
  height: 4rem;
}
@media (max-width: 576px) {
  .cid-rPVIM2w4ox .item {
    justify-content: center;
  }
  .cid-rPVIM2w4ox .quote::after {
    left: 60px;
  }
}
.cid-rPVIM2w4ox .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-rPVIM2w4ox .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rPVIM2w4ox .text1 {
  color: #ffffff;
}
.cid-rPVIM2w4ox .item-title {
  color: #ffffff;
}
.cid-rPVIM2w4ox H5 {
  color: #ffffff;
  text-align: left;
}
.cid-rPVIM2w4ox .theme {
  color: #ffffff;
}
.cid-rPVIM2w4ox .copyright > p {
  color: #ff3366;
}
.cid-rPVIM2w4ox .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-sqIbVSCQxc .navbar {
  padding: .5rem 0;
  background: #29235c;
  transition: none;
  min-height: 50px;
}
.cid-sqIbVSCQxc .navbar-dropdown.bg-color.transparent.opened {
  background: #29235c;
}
.cid-sqIbVSCQxc a {
  font-style: normal;
}
.cid-sqIbVSCQxc .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sqIbVSCQxc .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-sqIbVSCQxc .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sqIbVSCQxc .content-text {
  margin-bottom: 0;
}
.cid-sqIbVSCQxc .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sqIbVSCQxc .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #29235c;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sqIbVSCQxc .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sqIbVSCQxc .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sqIbVSCQxc .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sqIbVSCQxc .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sqIbVSCQxc .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sqIbVSCQxc .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sqIbVSCQxc .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sqIbVSCQxc .nav-dropdown .link {
  font-weight: 400;
}
.cid-sqIbVSCQxc .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sqIbVSCQxc .content-right-side {
  text-align: center;
}
.cid-sqIbVSCQxc .menu-content-top {
  padding: 0 2rem;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-sqIbVSCQxc .menu-content-top {
    width: 100%;
    display: flex;
  }
  .cid-sqIbVSCQxc .menu-content-top .menu-content-right {
    display: block;
    position: absolute;
    visibility: hidden;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    transition: 0s all 0s;
  }
  .cid-sqIbVSCQxc .menu-content-top .menu-content-right .info-widget {
    padding: 1rem 0;
    text-align: center;
  }
  .cid-sqIbVSCQxc .navbar.opened .menu-content-right {
    visibility: visible;
    transition: 0s all 0.3s;
  }
  .cid-sqIbVSCQxc .menu-bottom {
    justify-content: flex-end;
  }
  .cid-sqIbVSCQxc img {
    height: 3.8rem !important;
  }
  .cid-sqIbVSCQxc .btn {
    display: -webkit-flex;
  }
  .cid-sqIbVSCQxc button.navbar-toggler {
    display: block;
  }
  .cid-sqIbVSCQxc .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-sqIbVSCQxc .navbar {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sqIbVSCQxc .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing,
  .cid-sqIbVSCQxc .navbar-collapse.show {
    display: block !important;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-nav,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-buttons,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sqIbVSCQxc .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-sqIbVSCQxc .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-sqIbVSCQxc .navbar.opened {
    padding-bottom: 8rem;
  }
  .cid-sqIbVSCQxc .navbar .navbar-collapse {
    max-height: calc(100vh - 8rem - 80px);
  }
}
@media (max-width: 575px) {
  .cid-sqIbVSCQxc .navbar.opened {
    padding-bottom: 10rem;
  }
  .cid-sqIbVSCQxc .navbar .navbar-collapse {
    max-height: calc(100vh - 10rem - 80px);
  }
}
.cid-sqIbVSCQxc .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sqIbVSCQxc .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sqIbVSCQxc .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sqIbVSCQxc .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid #e0e0e0;
}
.cid-sqIbVSCQxc .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqIbVSCQxc .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sqIbVSCQxc .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sqIbVSCQxc .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sqIbVSCQxc .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-sqIbVSCQxc .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-sqIbVSCQxc .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sqIbVSCQxc .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-sqIbVSCQxc .content-right-side {
    display: flex;
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sqIbVSCQxc .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-sqIbVSCQxc .navbar {
    display: block;
    padding: 0;
  }
  .cid-sqIbVSCQxc .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sqIbVSCQxc .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-sqIbVSCQxc .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-sqIbVSCQxc .navbar-short .menu-content-top {
    height: 0;
    min-height: 0;
    border: none;
  }
  .cid-sqIbVSCQxc .navbar-toggler {
    display: none;
  }
  .cid-sqIbVSCQxc .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sqIbVSCQxc .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqIbVSCQxc .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sqIbVSCQxc .menu-logo {
  margin-right: auto;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  border-radius: 10px;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu {
  background: #29235c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sqIbVSCQxc .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sqIbVSCQxc .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-sqIbVSCQxc .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sqIbVSCQxc button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sqIbVSCQxc button.navbar-toggler:focus {
  outline: none;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sqIbVSCQxc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sqIbVSCQxc .collapsed .btn {
  display: -webkit-flex;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sqIbVSCQxc .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1.5rem);
  }
  .cid-sqIbVSCQxc .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sqIbVSCQxc .collapsed button.navbar-toggler {
  display: block;
}
.cid-sqIbVSCQxc .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-sqIbVSCQxc .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sqIbVSCQxc .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-sqIbVSCQxc .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sqIbVSCQxc .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-sqIbVSCQxc .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-sqIbVSCQxc .nav-link:focus {
  outline: none;
}
.cid-sqIbVSCQxc .navbar-toggler {
  position: relative;
}
.cid-sqIbVSCQxc .dropdown-item.active,
.cid-sqIbVSCQxc .dropdown-item:active {
  background: #29235c;
  color: initial;
}
.cid-sqIbVSCQxc .nav-link:hover,
.cid-sqIbVSCQxc .dropdown-item:hover {
  color: #4284df;
}
.cid-sqIbVSCQxc .widget-title,
.cid-sqIbVSCQxc .widget-icon {
  color: #ffffff;
}
.cid-sqj8urO5Fg {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/header-blue-dark2-3-2000x668.png");
  overflow: hidden;
}
.cid-sqj8urO5Fg svg {
  fill: #ffffff !important;
  pointer-events: none;
}
.cid-sqj8urO5Fg #e2_shape {
  fill: #ffffff !important;
}
.cid-sqj8urO5Fg .mbr-section-title.display-1 {
  line-height: 1.24;
}
.cid-sqj8urO5Fg .mbr-text {
  font-weight: 300;
}
.cid-sqj8urO5Fg .mbr-text.display-5 {
  font-size: 24px;
  line-height: 1.416;
}
.cid-sqj8urO5Fg .btn-white {
  color: #404040 !important;
}
.cid-sqj8urO5Fg .btn.display-4 {
  font-size: 14px;
  line-height: 1;
  padding: 21px 30px 20px;
}
.cid-sqj8urO5Fg .btn.display-4 .mbr-iconfont {
  font-size: 0.9rem;
  margin-right: 5px;
}
@media (max-width: 991px) {
  .cid-sqj8urO5Fg .img-wrap {
    display: none;
  }
}
@media (max-width: 768px) {
  .cid-sqj8urO5Fg {
    padding: 30px;
  }
  .cid-sqj8urO5Fg svg {
    display: none;
  }
}
.cid-sqj8urO5Fg .mbr-section-title,
.cid-sqj8urO5Fg .mbr-section-btn {
  color: #ffffff;
}
.cid-sqj8urO5Fg .mbr-text,
.cid-sqj8urO5Fg .mbr-section-btn {
  color: #ffffff;
}
.cid-rPVJNJfjjl {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rPVJNJfjjl .block-text {
  color: #000000;
}
.cid-rPVJNJOjfI {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rPVJNJOjfI .mbr-text {
  color: #000000;
}
.cid-rPVJNJOjfI .counter-container ul {
  margin-bottom: 0;
  padding-left: .6rem;
}
.cid-rPVJNJOjfI .counter-container ul li {
  margin-bottom: 1rem;
}
.cid-rPVJNJOjfI .mbr-text .block-title {
  text-align: left;
}
.cid-rPVJNJOjfI .mbr-text UL {
  text-align: left;
}
.cid-rPVJNKuWep {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rPVJNKuWep .block-text {
  color: #000000;
}
.cid-rQ02BOVyX7 {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rQ02BOVyX7 .btn {
  border-radius: 20px;
}
.cid-srgXQJdosQ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-srgXQJdosQ .mbr-text {
  color: #000000;
}
.cid-srgXQJdosQ h4 {
  text-align: center;
}
.cid-srgXQJdosQ p {
  text-align: center;
}
.cid-srgXQJdosQ .card .card-img span {
  font-size: 40px;
  padding: 1.5rem;
  background: #ffd402;
  border: 2px solid #ffd402;
  color: #ffffff;
  border-radius: 50%;
  transition: all .3s;
}
.cid-srgXQJdosQ .card:hover .card-img span {
  background: none;
  color: #ffd402;
}
.cid-srgXQJdosQ .card-title,
.cid-srgXQJdosQ .card-img {
  color: #000000;
}
.cid-rPVJNMVbzu {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rPVJNMVbzu .mbr-text,
.cid-rPVJNMVbzu .mbr-section-btn {
  color: #000000;
}
.cid-rPVJNMVbzu p {
  z-index: 2;
  position: relative;
}
.cid-rPVJNMVbzu .author-box {
  display: flex;
  flex-direction: row;
}
.cid-rPVJNMVbzu .col-lg-12 {
  box-shadow: 0 10px 55px 5px rgba(57, 49, 129, 0.35);
  padding: 1rem 1.5rem;
}
.cid-rPVJNMVbzu .ico1 {
  font-size: 2rem;
}
.cid-rPVJNMVbzu .ico2 {
  position: absolute;
  bottom: 15%;
  right: 1.5rem;
  font-size: 8rem;
  z-index: 1;
  opacity: 0.1;
}
.cid-rPVJNMVbzu H3 {
  color: #29235c;
  text-align: center;
}
.cid-rPVJNNF39i {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rPVJNNF39i .block-text {
  color: #000000;
  text-align: center;
}
.cid-rPVJNOaquG {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rPVJNOaquG .btn {
  border-radius: 20px;
}
.cid-rPVJNOR6Z8 {
  padding-top: 180px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-blue-dark-3-2000x520.png");
  position: relative;
  overflow: hidden;
}
.cid-rPVJNOR6Z8 .container {
  max-width: 1400px;
}
.cid-rPVJNOR6Z8 .card-img2 span {
  padding-top: 6px;
}
.cid-rPVJNOR6Z8 .soc-item a {
  padding-top: 5px;
}
.cid-rPVJNOR6Z8 .btn {
  padding: 0.4rem 0.6rem!important;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-rPVJNOR6Z8 .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-rPVJNOR6Z8 .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-rPVJNOR6Z8 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rPVJNOR6Z8 svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-rPVJNOR6Z8 #e2_shape {
  fill: #ffffff !important;
}
.cid-rPVJNOR6Z8 .quote {
  background-color: #ffd402;
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #0072c6;
  text-align: center;
}
.cid-rPVJNOR6Z8 .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: #e3b600 transparent transparent;
}
.cid-rPVJNOR6Z8 .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #ffffff;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-rPVJNOR6Z8 .card-img {
  width: auto;
}
.cid-rPVJNOR6Z8 .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-rPVJNOR6Z8 .soc-item span {
  font-size: 1.4rem;
}
.cid-rPVJNOR6Z8 .soc-item:hover span {
  color: #29235c !important;
}
.cid-rPVJNOR6Z8 .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-rPVJNOR6Z8 .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-rPVJNOR6Z8 .media-wrap {
  margin-bottom: 1rem;
}
.cid-rPVJNOR6Z8 .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rPVJNOR6Z8 img {
  height: 4rem;
}
@media (max-width: 576px) {
  .cid-rPVJNOR6Z8 .item {
    justify-content: center;
  }
  .cid-rPVJNOR6Z8 .quote::after {
    left: 60px;
  }
}
.cid-rPVJNOR6Z8 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-rPVJNOR6Z8 .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rPVJNOR6Z8 .text1 {
  color: #ffffff;
}
.cid-rPVJNOR6Z8 .item-title {
  color: #ffffff;
}
.cid-rPVJNOR6Z8 H5 {
  color: #ffffff;
  text-align: left;
}
.cid-rPVJNOR6Z8 .theme {
  color: #ffffff;
}
.cid-rPVJNOR6Z8 .copyright > p {
  color: #ff3366;
}
.cid-rPVJNOR6Z8 .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-sqIbVSCQxc .navbar {
  padding: .5rem 0;
  background: #29235c;
  transition: none;
  min-height: 50px;
}
.cid-sqIbVSCQxc .navbar-dropdown.bg-color.transparent.opened {
  background: #29235c;
}
.cid-sqIbVSCQxc a {
  font-style: normal;
}
.cid-sqIbVSCQxc .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sqIbVSCQxc .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-sqIbVSCQxc .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sqIbVSCQxc .content-text {
  margin-bottom: 0;
}
.cid-sqIbVSCQxc .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sqIbVSCQxc .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #29235c;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sqIbVSCQxc .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sqIbVSCQxc .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sqIbVSCQxc .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sqIbVSCQxc .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sqIbVSCQxc .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sqIbVSCQxc .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sqIbVSCQxc .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sqIbVSCQxc .nav-dropdown .link {
  font-weight: 400;
}
.cid-sqIbVSCQxc .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sqIbVSCQxc .content-right-side {
  text-align: center;
}
.cid-sqIbVSCQxc .menu-content-top {
  padding: 0 2rem;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-sqIbVSCQxc .menu-content-top {
    width: 100%;
    display: flex;
  }
  .cid-sqIbVSCQxc .menu-content-top .menu-content-right {
    display: block;
    position: absolute;
    visibility: hidden;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    transition: 0s all 0s;
  }
  .cid-sqIbVSCQxc .menu-content-top .menu-content-right .info-widget {
    padding: 1rem 0;
    text-align: center;
  }
  .cid-sqIbVSCQxc .navbar.opened .menu-content-right {
    visibility: visible;
    transition: 0s all 0.3s;
  }
  .cid-sqIbVSCQxc .menu-bottom {
    justify-content: flex-end;
  }
  .cid-sqIbVSCQxc img {
    height: 3.8rem !important;
  }
  .cid-sqIbVSCQxc .btn {
    display: -webkit-flex;
  }
  .cid-sqIbVSCQxc button.navbar-toggler {
    display: block;
  }
  .cid-sqIbVSCQxc .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-sqIbVSCQxc .navbar {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sqIbVSCQxc .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing,
  .cid-sqIbVSCQxc .navbar-collapse.show {
    display: block !important;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-nav,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-buttons,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sqIbVSCQxc .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-sqIbVSCQxc .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-sqIbVSCQxc .navbar.opened {
    padding-bottom: 8rem;
  }
  .cid-sqIbVSCQxc .navbar .navbar-collapse {
    max-height: calc(100vh - 8rem - 80px);
  }
}
@media (max-width: 575px) {
  .cid-sqIbVSCQxc .navbar.opened {
    padding-bottom: 10rem;
  }
  .cid-sqIbVSCQxc .navbar .navbar-collapse {
    max-height: calc(100vh - 10rem - 80px);
  }
}
.cid-sqIbVSCQxc .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sqIbVSCQxc .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sqIbVSCQxc .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sqIbVSCQxc .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid #e0e0e0;
}
.cid-sqIbVSCQxc .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqIbVSCQxc .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sqIbVSCQxc .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sqIbVSCQxc .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sqIbVSCQxc .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-sqIbVSCQxc .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-sqIbVSCQxc .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sqIbVSCQxc .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-sqIbVSCQxc .content-right-side {
    display: flex;
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sqIbVSCQxc .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-sqIbVSCQxc .navbar {
    display: block;
    padding: 0;
  }
  .cid-sqIbVSCQxc .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sqIbVSCQxc .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-sqIbVSCQxc .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-sqIbVSCQxc .navbar-short .menu-content-top {
    height: 0;
    min-height: 0;
    border: none;
  }
  .cid-sqIbVSCQxc .navbar-toggler {
    display: none;
  }
  .cid-sqIbVSCQxc .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sqIbVSCQxc .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqIbVSCQxc .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sqIbVSCQxc .menu-logo {
  margin-right: auto;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  border-radius: 10px;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu {
  background: #29235c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sqIbVSCQxc .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sqIbVSCQxc .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-sqIbVSCQxc .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sqIbVSCQxc button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sqIbVSCQxc button.navbar-toggler:focus {
  outline: none;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sqIbVSCQxc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sqIbVSCQxc .collapsed .btn {
  display: -webkit-flex;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sqIbVSCQxc .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1.5rem);
  }
  .cid-sqIbVSCQxc .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sqIbVSCQxc .collapsed button.navbar-toggler {
  display: block;
}
.cid-sqIbVSCQxc .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-sqIbVSCQxc .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sqIbVSCQxc .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-sqIbVSCQxc .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sqIbVSCQxc .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-sqIbVSCQxc .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-sqIbVSCQxc .nav-link:focus {
  outline: none;
}
.cid-sqIbVSCQxc .navbar-toggler {
  position: relative;
}
.cid-sqIbVSCQxc .dropdown-item.active,
.cid-sqIbVSCQxc .dropdown-item:active {
  background: #29235c;
  color: initial;
}
.cid-sqIbVSCQxc .nav-link:hover,
.cid-sqIbVSCQxc .dropdown-item:hover {
  color: #4284df;
}
.cid-sqIbVSCQxc .widget-title,
.cid-sqIbVSCQxc .widget-icon {
  color: #ffffff;
}
.cid-sqj3hfdzzT {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/header-blue-dark2-3-2000x668.png");
  overflow: hidden;
}
.cid-sqj3hfdzzT svg {
  fill: #ffffff !important;
  pointer-events: none;
}
.cid-sqj3hfdzzT #e2_shape {
  fill: #ffffff !important;
}
.cid-sqj3hfdzzT .mbr-section-title.display-1 {
  line-height: 1.24;
}
.cid-sqj3hfdzzT .mbr-text {
  font-weight: 300;
}
.cid-sqj3hfdzzT .mbr-text.display-5 {
  font-size: 24px;
  line-height: 1.416;
}
.cid-sqj3hfdzzT .btn-white {
  color: #404040 !important;
}
.cid-sqj3hfdzzT .btn.display-4 {
  font-size: 14px;
  line-height: 1;
  padding: 21px 30px 20px;
}
.cid-sqj3hfdzzT .btn.display-4 .mbr-iconfont {
  font-size: 0.9rem;
  margin-right: 5px;
}
@media (max-width: 991px) {
  .cid-sqj3hfdzzT .img-wrap {
    display: none;
  }
}
@media (max-width: 768px) {
  .cid-sqj3hfdzzT {
    padding: 30px;
  }
  .cid-sqj3hfdzzT svg {
    display: none;
  }
}
.cid-sqj3hfdzzT .mbr-section-title,
.cid-sqj3hfdzzT .mbr-section-btn {
  color: #ffffff;
}
.cid-sqj3hfdzzT .mbr-text,
.cid-sqj3hfdzzT .mbr-section-btn {
  color: #ffffff;
}
#custom-html-ch {
  /* Type valid CSS here */
}
.cid-rOB1Xtz3Q4 {
  padding-top: 180px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-blue-dark-3-2000x520.png");
  position: relative;
  overflow: hidden;
}
.cid-rOB1Xtz3Q4 .container {
  max-width: 1400px;
}
.cid-rOB1Xtz3Q4 .card-img2 span {
  padding-top: 6px;
}
.cid-rOB1Xtz3Q4 .soc-item a {
  padding-top: 5px;
}
.cid-rOB1Xtz3Q4 .btn {
  padding: 0.4rem 0.6rem!important;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-rOB1Xtz3Q4 .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-rOB1Xtz3Q4 .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-rOB1Xtz3Q4 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rOB1Xtz3Q4 svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-rOB1Xtz3Q4 #e2_shape {
  fill: #ffffff !important;
}
.cid-rOB1Xtz3Q4 .quote {
  background-color: #ffd402;
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #0072c6;
  text-align: center;
}
.cid-rOB1Xtz3Q4 .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: #e3b600 transparent transparent;
}
.cid-rOB1Xtz3Q4 .card-img2 {
  min-width: 45px;
  height: 45px;
  background: #ffffff;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-rOB1Xtz3Q4 .card-img {
  width: auto;
}
.cid-rOB1Xtz3Q4 .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-rOB1Xtz3Q4 .soc-item span {
  font-size: 1.4rem;
}
.cid-rOB1Xtz3Q4 .soc-item:hover span {
  color: #29235c !important;
}
.cid-rOB1Xtz3Q4 .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-rOB1Xtz3Q4 .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-rOB1Xtz3Q4 .media-wrap {
  margin-bottom: 1rem;
}
.cid-rOB1Xtz3Q4 .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rOB1Xtz3Q4 img {
  height: 4rem;
}
@media (max-width: 576px) {
  .cid-rOB1Xtz3Q4 .item {
    justify-content: center;
  }
  .cid-rOB1Xtz3Q4 .quote::after {
    left: 60px;
  }
}
.cid-rOB1Xtz3Q4 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-rOB1Xtz3Q4 .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rOB1Xtz3Q4 .text1 {
  color: #ffffff;
}
.cid-rOB1Xtz3Q4 .item-title {
  color: #ffffff;
}
.cid-rOB1Xtz3Q4 H5 {
  color: #ffffff;
  text-align: left;
}
.cid-rOB1Xtz3Q4 .theme {
  color: #ffffff;
}
.cid-rOB1Xtz3Q4 .copyright > p {
  color: #ff3366;
}
.cid-rOB1Xtz3Q4 .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-sqIbVSCQxc .navbar {
  padding: .5rem 0;
  background: #29235c;
  transition: none;
  min-height: 50px;
}
.cid-sqIbVSCQxc .navbar-dropdown.bg-color.transparent.opened {
  background: #29235c;
}
.cid-sqIbVSCQxc a {
  font-style: normal;
}
.cid-sqIbVSCQxc .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sqIbVSCQxc .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-sqIbVSCQxc .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sqIbVSCQxc .content-text {
  margin-bottom: 0;
}
.cid-sqIbVSCQxc .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sqIbVSCQxc .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #29235c;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sqIbVSCQxc .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sqIbVSCQxc .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sqIbVSCQxc .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sqIbVSCQxc .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sqIbVSCQxc .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sqIbVSCQxc .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sqIbVSCQxc .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sqIbVSCQxc .nav-dropdown .link {
  font-weight: 400;
}
.cid-sqIbVSCQxc .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sqIbVSCQxc .content-right-side {
  text-align: center;
}
.cid-sqIbVSCQxc .menu-content-top {
  padding: 0 2rem;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-sqIbVSCQxc .menu-content-top {
    width: 100%;
    display: flex;
  }
  .cid-sqIbVSCQxc .menu-content-top .menu-content-right {
    display: block;
    position: absolute;
    visibility: hidden;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    transition: 0s all 0s;
  }
  .cid-sqIbVSCQxc .menu-content-top .menu-content-right .info-widget {
    padding: 1rem 0;
    text-align: center;
  }
  .cid-sqIbVSCQxc .navbar.opened .menu-content-right {
    visibility: visible;
    transition: 0s all 0.3s;
  }
  .cid-sqIbVSCQxc .menu-bottom {
    justify-content: flex-end;
  }
  .cid-sqIbVSCQxc img {
    height: 3.8rem !important;
  }
  .cid-sqIbVSCQxc .btn {
    display: -webkit-flex;
  }
  .cid-sqIbVSCQxc button.navbar-toggler {
    display: block;
  }
  .cid-sqIbVSCQxc .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-sqIbVSCQxc .navbar {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sqIbVSCQxc .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing,
  .cid-sqIbVSCQxc .navbar-collapse.show {
    display: block !important;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-nav,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-buttons,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-sqIbVSCQxc .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sqIbVSCQxc .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sqIbVSCQxc .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-sqIbVSCQxc .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-sqIbVSCQxc .navbar.opened {
    padding-bottom: 8rem;
  }
  .cid-sqIbVSCQxc .navbar .navbar-collapse {
    max-height: calc(100vh - 8rem - 80px);
  }
}
@media (max-width: 575px) {
  .cid-sqIbVSCQxc .navbar.opened {
    padding-bottom: 10rem;
  }
  .cid-sqIbVSCQxc .navbar .navbar-collapse {
    max-height: calc(100vh - 10rem - 80px);
  }
}
.cid-sqIbVSCQxc .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sqIbVSCQxc .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sqIbVSCQxc .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sqIbVSCQxc .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid #e0e0e0;
}
.cid-sqIbVSCQxc .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqIbVSCQxc .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sqIbVSCQxc .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sqIbVSCQxc .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sqIbVSCQxc .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-sqIbVSCQxc .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-sqIbVSCQxc .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sqIbVSCQxc .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-sqIbVSCQxc .content-right-side {
    display: flex;
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sqIbVSCQxc .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-sqIbVSCQxc .navbar {
    display: block;
    padding: 0;
  }
  .cid-sqIbVSCQxc .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sqIbVSCQxc .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-sqIbVSCQxc .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-sqIbVSCQxc .navbar-short .menu-content-top {
    height: 0;
    min-height: 0;
    border: none;
  }
  .cid-sqIbVSCQxc .navbar-toggler {
    display: none;
  }
  .cid-sqIbVSCQxc .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sqIbVSCQxc .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqIbVSCQxc .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sqIbVSCQxc .menu-logo {
  margin-right: auto;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  border-radius: 10px;
}
.cid-sqIbVSCQxc .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu {
  background: #29235c;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sqIbVSCQxc .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sqIbVSCQxc .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sqIbVSCQxc .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sqIbVSCQxc .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-sqIbVSCQxc .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sqIbVSCQxc .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sqIbVSCQxc button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sqIbVSCQxc button.navbar-toggler:focus {
  outline: none;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sqIbVSCQxc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sqIbVSCQxc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sqIbVSCQxc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sqIbVSCQxc .collapsed .btn {
  display: -webkit-flex;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-sqIbVSCQxc .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sqIbVSCQxc .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sqIbVSCQxc .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1.5rem);
  }
  .cid-sqIbVSCQxc .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sqIbVSCQxc .collapsed button.navbar-toggler {
  display: block;
}
.cid-sqIbVSCQxc .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-sqIbVSCQxc .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sqIbVSCQxc .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sqIbVSCQxc .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-sqIbVSCQxc .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sqIbVSCQxc .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-sqIbVSCQxc .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-sqIbVSCQxc .nav-link:focus {
  outline: none;
}
.cid-sqIbVSCQxc .navbar-toggler {
  position: relative;
}
.cid-sqIbVSCQxc .dropdown-item.active,
.cid-sqIbVSCQxc .dropdown-item:active {
  background: #29235c;
  color: initial;
}
.cid-sqIbVSCQxc .nav-link:hover,
.cid-sqIbVSCQxc .dropdown-item:hover {
  color: #4284df;
}
.cid-sqIbVSCQxc .widget-title,
.cid-sqIbVSCQxc .widget-icon {
  color: #ffffff;
}
