body {
  font-family: Dosis;
}
.display-1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 3rem;
}
.display-2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 2rem;
}
.display-4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8rem;
}
.display-5 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.4rem;
}
.display-7 {
  font-family: 'Open Sans', 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.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 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: #0c57bf !important;
}
.bg-success {
  background-color: #36d88a !important;
}
.bg-info {
  background-color: #ff4100 !important;
}
.bg-warning {
  background-color: #c1c1c1 !important;
}
.bg-danger {
  background-color: #444444 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #0c57bf !important;
  border-color: #0c57bf !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #0c57bf !important;
  border-color: #0c57bf !important;
}
.btn-primary:before {
  background-color: #073677 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #073677 !important;
  border-color: #073677 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #3e97d1 !important;
  border-color: #3e97d1 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #3e97d1 !important;
  border-color: #3e97d1 !important;
}
.btn-secondary:before {
  background-color: #256e9d !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #256e9d !important;
  border-color: #256e9d !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #ff4100 !important;
  border-color: #ff4100 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #ff4100 !important;
  border-color: #ff4100 !important;
}
.btn-info:before {
  background-color: #b32d00 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #b32d00 !important;
  border-color: #b32d00 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #36d88a !important;
  border-color: #36d88a !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #36d88a !important;
  border-color: #36d88a !important;
}
.btn-success:before {
  background-color: #1fa263 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #1fa263 !important;
  border-color: #1fa263 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
}
.btn-warning:before {
  background-color: #9b9b9b !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #9b9b9b !important;
  border-color: #9b9b9b !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #444444 !important;
  border-color: #444444 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #444444 !important;
  border-color: #444444 !important;
}
.btn-danger:before {
  background-color: #1e1e1e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  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: #062b5f;
  color: #062b5f;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff;
  border-color: #0c57bf;
}
.btn-primary-outline:before {
  background-color: #0c57bf;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #0c57bf !important;
  border-color: #0c57bf !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #215f88;
  color: #215f88;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff;
  border-color: #3e97d1;
}
.btn-secondary-outline:before {
  background-color: #3e97d1;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #3e97d1 !important;
  border-color: #3e97d1 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #992700;
  color: #992700;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff;
  border-color: #ff4100;
}
.btn-info-outline:before {
  background-color: #ff4100;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #ff4100 !important;
  border-color: #ff4100 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #1b8d56;
  color: #1b8d56;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff;
  border-color: #36d88a;
}
.btn-success-outline:before {
  background-color: #36d88a;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #36d88a !important;
  border-color: #36d88a !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #8e8e8e;
  color: #8e8e8e;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff;
  border-color: #c1c1c1;
}
.btn-warning-outline:before {
  background-color: #c1c1c1;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #111111;
  color: #111111;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff;
  border-color: #444444;
}
.btn-danger-outline:before {
  background-color: #444444;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #444444 !important;
  border-color: #444444 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff;
  border-color: #333333;
}
.btn-black-outline:before {
  background-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  border-color: #ffffff;
}
.btn-white-outline:before {
  background-color: #ffffff;
}
.btn-bgr {
  position: relative;
  transition: border 0.3s ease-in-out, color 0.5s;
  -webkit-mask-image: -webkit-radial-gradient(circle, white, black);
}
.btn-bgr span {
  position: relative;
  z-index: 12;
}
.btn-bgr:before {
  content: ' ';
  position: absolute;
  top: -2px;
  left: -2px;
  right: 105%;
  bottom: -2px;
  transition: right 0.3s ease-in-out;
  z-index: -1;
  border-radius: 100px;
}
.btn-bgr:hover:before {
  right: -2px;
}
.btn-underline {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: color 0.2s ease-out;
}
.btn-underline:before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #0c57bf;
  -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: #0c57bf !important;
}
.text-secondary {
  color: #3e97d1 !important;
}
.text-success {
  color: #36d88a !important;
}
.text-info {
  color: #ff4100 !important;
}
.text-warning {
  color: #c1c1c1 !important;
}
.text-danger {
  color: #444444 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #062b5f !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #215f88 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #1b8d56 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #992700 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #8e8e8e !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #111111 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ff4100;
}
.alert-warning {
  background-color: #c1c1c1;
}
.alert-danger {
  background-color: #444444;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #0c57bf;
  border-color: #0c57bf;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #0c57bf;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #5698f4;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #e1f9ed;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffd9cc;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #b7b7b7;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
blockquote {
  border-color: #0c57bf;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.form2 .form-control {
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
}
.form2 .input-group-btn a.btn {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.form2 .input-group-btn button[type="submit"] {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.form3 input[type="email"] {
  border-radius: 100px !important;
}
@media (max-width: 349px) {
  .form2 input[type="email"] {
    border-radius: 100px !important;
  }
  .form2 .input-group-btn a.btn {
    border-radius: 100px !important;
  }
  .form2 .input-group-btn button[type="submit"] {
    border-radius: 100px !important;
  }
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #0c57bf;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #0c57bf;
}
/*Menu*/
.display-1 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-2 > .mbr-iconfont {
  font-size: 3.2rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.28rem;
}
.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: #0c57bf;
  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: #0c57bf;
  border-bottom-color: #0c57bf;
}
.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: #0c57bf !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: #3e97d1 !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='%230c57bf' %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-tE51zgbU5b .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-tE51zgbU5b .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-tE51zgbU5b a {
  font-style: normal;
}
.cid-tE51zgbU5b .show {
  overflow: visible;
}
.cid-tE51zgbU5b .dropdown-menu {
  max-height: 400px;
}
.cid-tE51zgbU5b .dropdown-item:active {
  background-color: transparent;
}
.cid-tE51zgbU5b .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-tE51zgbU5b .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-tE51zgbU5b .nav-item:focus,
.cid-tE51zgbU5b .nav-link:focus {
  outline: none;
}
.cid-tE51zgbU5b .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-tE51zgbU5b .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tE51zgbU5b .menu-logo {
  margin-right: auto;
}
.cid-tE51zgbU5b .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tE51zgbU5b .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-tE51zgbU5b .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tE51zgbU5b .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tE51zgbU5b .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tE51zgbU5b .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tE51zgbU5b .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-tE51zgbU5b .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-tE51zgbU5b .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-tE51zgbU5b .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tE51zgbU5b .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tE51zgbU5b .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-tE51zgbU5b .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tE51zgbU5b .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tE51zgbU5b .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tE51zgbU5b .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tE51zgbU5b .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tE51zgbU5b .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tE51zgbU5b .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-tE51zgbU5b .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tE51zgbU5b .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tE51zgbU5b .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tE51zgbU5b .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tE51zgbU5b .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tE51zgbU5b button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tE51zgbU5b button.navbar-toggler:focus {
  outline: none;
}
.cid-tE51zgbU5b button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #36404c;
}
.cid-tE51zgbU5b button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tE51zgbU5b button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tE51zgbU5b button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tE51zgbU5b button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tE51zgbU5b nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tE51zgbU5b nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tE51zgbU5b nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tE51zgbU5b nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tE51zgbU5b .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tE51zgbU5b .collapsed .btn {
  display: -webkit-flex;
}
.cid-tE51zgbU5b .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tE51zgbU5b .collapsed .navbar-collapse.collapsing,
.cid-tE51zgbU5b .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-tE51zgbU5b .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tE51zgbU5b .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tE51zgbU5b .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tE51zgbU5b .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tE51zgbU5b .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tE51zgbU5b .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tE51zgbU5b .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tE51zgbU5b .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tE51zgbU5b .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 94.375vh;
  }
}
.cid-tE51zgbU5b .collapsed button.navbar-toggler {
  display: block;
}
.cid-tE51zgbU5b .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tE51zgbU5b .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tE51zgbU5b .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-tE51zgbU5b .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tE51zgbU5b .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tE51zgbU5b .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
@media (max-width: 991px) {
  .cid-tE51zgbU5b.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tE51zgbU5b img {
    height: 3.8rem !important;
  }
  .cid-tE51zgbU5b .btn {
    display: -webkit-flex;
  }
  .cid-tE51zgbU5b button.navbar-toggler {
    display: block;
  }
  .cid-tE51zgbU5b .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tE51zgbU5b .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tE51zgbU5b .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tE51zgbU5b .navbar-collapse.collapsing,
  .cid-tE51zgbU5b .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-tE51zgbU5b .navbar-collapse.collapsing .navbar-nav,
  .cid-tE51zgbU5b .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tE51zgbU5b .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tE51zgbU5b .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tE51zgbU5b .navbar-collapse.collapsing .navbar-buttons,
  .cid-tE51zgbU5b .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tE51zgbU5b .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tE51zgbU5b .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tE51zgbU5b .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-tE51zgbU5b .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tE51zgbU5b .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tE51zgbU5b .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
}
@media (max-width: 767px) {
  .cid-tE51zgbU5b .nav-link {
    justify-content: start !important;
  }
  .cid-tE51zgbU5b .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-tE51zgbU5b .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-tE51zgbU5b .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-tE51zgbU5b .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-tE51zgbU5b .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-tE51zgbU5b .nav-link:hover,
.cid-tE51zgbU5b .dropdown-item:hover {
  color: #1d2671 !important;
}
@media (min-width: 1500px) {
  .cid-tE51zgbU5b .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-tE51zgbU5b .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-tE4ZQ8I5nL .modal-body .close {
  background: #1b1b1b;
}
.cid-tE4ZQ8I5nL .modal-body .close span {
  font-style: normal;
}
.cid-tE4ZQ8I5nL .carousel-inner > .active,
.cid-tE4ZQ8I5nL .carousel-inner > .next,
.cid-tE4ZQ8I5nL .carousel-inner > .prev {
  display: flex;
}
.cid-tE4ZQ8I5nL .carousel-control .icon-next,
.cid-tE4ZQ8I5nL .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-tE4ZQ8I5nL .carousel-control:hover {
  background: #0c57bf;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tE4ZQ8I5nL .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tE4ZQ8I5nL .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-tE4ZQ8I5nL .boxed-slider > div {
  position: relative;
}
.cid-tE4ZQ8I5nL .container img {
  width: 100%;
}
.cid-tE4ZQ8I5nL .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-tE4ZQ8I5nL .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-tE4ZQ8I5nL .mbr-table-cell {
  padding: 0;
}
.cid-tE4ZQ8I5nL .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tE4ZQ8I5nL .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-tE4ZQ8I5nL .mbr-overlay {
  z-index: 1;
}
.cid-tE4ZQ8I5nL .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-tE4ZQ8I5nL .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-tE4ZQ8I5nL .carousel-item.active.right,
.cid-tE4ZQ8I5nL .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-tE4ZQ8I5nL .carousel-item.active.left,
.cid-tE4ZQ8I5nL .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-tE4ZQ8I5nL .carousel-item.active,
.cid-tE4ZQ8I5nL .carousel-item.next.left,
.cid-tE4ZQ8I5nL .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-tE4ZQ8I5nL .mbr-slider .carousel-control {
  top: 50%;
  margin-top: -1.9rem;
  width: 60px;
  height: 60px;
  font-size: 25px;
  border: 2px solid #fff;
  border-radius: 0 !important;
  transition: all 0.3s;
  z-index: 11;
}
.cid-tE4ZQ8I5nL .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
}
.cid-tE4ZQ8I5nL .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
}
@media (max-width: 767px) {
  .cid-tE4ZQ8I5nL .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tE4ZQ8I5nL .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tE4ZQ8I5nL .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: #0c57bf;
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tE4ZQ8I5nL .mbr-slider .carousel-indicators li.active,
.cid-tE4ZQ8I5nL .mbr-slider .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tE4ZQ8I5nL .mbr-slider .carousel-indicators li::after,
.cid-tE4ZQ8I5nL .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-tE4ZQ8I5nL .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-tE4ZQ8I5nL .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-tE4ZQ8I5nL .mbr-slider > .container img {
  width: 100%;
}
.cid-tE4ZQ8I5nL .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-tE4ZQ8I5nL .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-tE4ZQ8I5nL .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tE4ZQ8I5nL .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-tE4ZQ8I5nL .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-tE4ZQ8I5nL .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-tE4ZQ8I5nL .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-tE4ZQ8I5nL .full-screen .slider-fullscreen-image.active {
  display: flex;
}
.cid-tE4ZQ8I5nL .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-tE4ZQ8I5nL .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-tE4ZQ8I5nL .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-tE4ZQ8I5nL .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-tE4ZQ8I5nL .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-tE53xX3Thj {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tE53xX3Thj .card-wrapper {
  display: flex;
  padding: 0 1.5rem;
}
@media (max-width: 1600px) {
  .cid-tE53xX3Thj .card-wrapper {
    padding: 0;
  }
}
.cid-tE53xX3Thj img {
  width: 100%;
}
.cid-tE53xX3Thj .mbr-iconfont {
  font-size: 3rem;
  background: linear-gradient(to left, #3e97d1, #0c57bf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-tE53xX3Thj .line {
  width: 55px;
  margin-bottom: 0.5rem;
  height: 5px;
  display: inline-block;
  background: linear-gradient(to left, #3e97d1, #0c57bf);
}
.cid-tE53xX3Thj .icon-wrapper {
  margin: auto;
  margin-right: 1.5rem;
  display: flex;
  justify-content: center;
  border-radius: 50%;
}
.cid-tE53xX3Thj h4 {
  margin: 0;
}
.cid-tE53xX3Thj .card-text {
  color: #000000;
}
.cid-tE53xX3Thj .mbr-text {
  color: #000000;
}
.cid-tE53xX3Thj .card-title {
  color: #0c57bf;
}
@media (min-width: 1200px) {
  .cid-tE53xX3Thj .mbr-text {
    max-width: 600px;
  }
}
@media (max-width: 767px) {
  .cid-tE53xX3Thj .card-wrapper {
    flex-direction: column;
    margin: auto;
    text-align: center;
  }
  .cid-tE53xX3Thj .card-wrapper .icon-wrapper {
    margin: 0 auto;
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tE53xX3Thj .mbr-text {
    padding-bottom: 2rem;
    max-width: 100%;
  }
}
.cid-tE53xX3Thj H3 {
  color: #787324;
}
.cid-tE53xX3Thj .mbr-section-title,
.cid-tE53xX3Thj .title-wrapper {
  color: #0c57bf;
}
.cid-tE53xX3Thj .mbr-text,
.cid-tE53xX3Thj .mbr-section-btn {
  color: #000000;
}
.cid-tE582C596H {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #fbfcff;
}
.cid-tE582C596H .card-inner {
  background: #ffffff;
  border: 1px solid #e9e9e9;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  z-index: 5;
  padding: 55px 30px 25px 40px;
  margin-top: 45px;
  height: 380px;
}
.cid-tE582C596H .card-inner:before {
  content: "";
  width: 273px;
  height: 273px;
  background-color: #6c9cdf;
  border-radius: 50%;
  position: absolute;
  top: -148px;
  left: -83px;
  transform: scale(0);
}
.cid-tE582C596H .card-inner:hover {
  border: none;
}
.cid-tE582C596H .card-inner:hover .circle {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}
.cid-tE582C596H .card-inner:hover .circle:nth-child(1) {
  top: 25px;
  left: 40%;
  z-index: 1;
  animation: scale__one 1s alternate infinite ease-in;
}
.cid-tE582C596H .card-inner:hover .circle:nth-child(2) {
  top: 25px;
  left: 70%;
  animation: scale__one 1.1s alternate infinite ease-in;
}
.cid-tE582C596H .card-inner:hover .circle:nth-child(3) {
  top: 75px;
  left: 60%;
  animation: scale__one 0.8s alternate infinite ease-in;
}
.cid-tE582C596H .card-inner:hover .circle:nth-child(4) {
  top: 135px;
  left: 85%;
  animation: scale__one 1s alternate infinite ease-in;
}
.cid-tE582C596H .card-inner:hover .circle:nth-child(5) {
  bottom: 35px;
  right: 15%;
  animation: scale__one 1.2s alternate infinite ease-in;
}
.cid-tE582C596H .card-inner:hover .circle:nth-child(6) {
  bottom: 80px;
  right: 30%;
  animation: scale__one 0.9s alternate infinite ease-in;
}
.cid-tE582C596H .card-inner:hover .circle:nth-child(7) {
  bottom: 40px;
  right: 60%;
  animation: scale__one 1s alternate infinite ease-in;
}
.cid-tE582C596H .card-inner:hover:before {
  transform: scale(1);
  transition: all 0.5s linear;
  transition-delay: 0.1s;
}
.cid-tE582C596H .card-inner:hover .card-title,
.cid-tE582C596H .card-inner:hover .mbr-text,
.cid-tE582C596H .card-inner:hover .icon__block {
  color: #ffffff !important;
}
.cid-tE582C596H .card-inner:hover .animation__background {
  opacity: 1;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.cid-tE582C596H .card-inner:hover .animation__background:before {
  opacity: 1;
  transform: translate(0%, 0%);
  transition: all 0.9s linear;
}
.cid-tE582C596H .card-inner:hover .animation__background:after {
  opacity: 1;
  transform: translate(0%, 0%);
  transition: all 1.3s linear;
}
.cid-tE582C596H .animation__background {
  background-color: #1d2671;
  z-index: -3;
  opacity: 0;
  transition: all 0.3s linear;
}
.cid-tE582C596H .animation__background:before {
  content: "";
  width: 495px;
  height: 495px;
  background-color: #4284df;
  border-radius: 50%;
  position: absolute;
  top: -250px;
  left: -180px;
  z-index: 1;
  transform: translate(-50%, -50%);
  opacity: 0;
}
.cid-tE582C596H .animation__background:after {
  content: "";
  width: 602px;
  height: 602px;
  background-color: #1d2671;
  border-radius: 50%;
  position: absolute;
  top: -195px;
  left: -180px;
  z-index: -1;
  transform: translate(-50%, -50%);
  opacity: 0;
}
.cid-tE582C596H .icon__block {
  position: relative;
  font-size: 65px;
  margin-bottom: 60px;
  color: #36d88a;
  transition: all 0.3s ease-in-out;
}
.cid-tE582C596H .card-title {
  font-weight: 400;
  line-height: 32px;
  margin-bottom: 30px;
  color: #233d63;
  transition: all 0.3s ease-in-out;
}
.cid-tE582C596H .mbr-text {
  padding-bottom: 20px;
}
.cid-tE582C596H .mbr-arrow {
  bottom: -50px;
  left: 50%;
  width: 90px;
  height: 90px;
  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0px 15px 20px 0px rgba(209, 218, 235, 0.35);
  color: #0c57bf;
}
.cid-tE582C596H .mbr-arrow > a {
  color: #0c57bf;
}
.cid-tE582C596H .mbr-arrow > a > i {
  left: 29px;
  top: 10px;
}
@media (max-width: 575px) {
  .cid-tE582C596H .card-inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@keyframes scale__one {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  40% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.cid-tHnPIjVho6 {
  padding-top: 100px;
  padding-bottom: 45px;
  background-color: #f6fbff;
}
.cid-tHnPIjVho6 .media-content .btn-bgr {
  z-index: 0;
}
.cid-tHnPIjVho6 .mbr-overlay {
  background: linear-gradient(90deg, #4284df, #00113e);
}
@media (min-width: 992px) {
  .cid-tHnPIjVho6 .media-content {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
@media (max-width: 991px) {
  .cid-tHnPIjVho6 {
    text-align: center !important;
  }
  .cid-tHnPIjVho6 .mbr-text {
    text-align: center;
  }
}
.cid-tHnPIjVho6 .media-container-row {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tHnPIjVho6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tHnPIjVho6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tHnPIjVho6 .mbr-text,
.cid-tHnPIjVho6 .mbr-section-btn {
  text-align: center;
  color: #04367c;
}
.cid-tHnPIjVho6 H1 {
  text-align: center;
  color: #04367c;
}
.cid-rzMraftkbp {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rzMraftkbp .subicon-title {
  color: #000000;
  text-align: center;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-rzMraftkbp .subicon-text {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-rzMraftkbp .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-rzMraftkbp .underline .line {
  width: 3rem;
  height: 2px;
  background: #0c57bf;
  display: inline-block;
}
.cid-rzMraftkbp .process-icon,
.cid-rzMraftkbp .process-icon-without-before {
  width: 100%;
  padding-bottom: 2rem;
}
.cid-rzMraftkbp .wrapper,
.cid-rzMraftkbp .wrapper-without-before {
  position: relative;
  margin-bottom: 2rem;
}
.cid-rzMraftkbp .wrapper::before {
  content: '\e966';
  font-family: MobiriseIcons !important;
  position: absolute;
  font-size: 30px;
  left: -15px;
  top: 30%;
  color: #4284df;
  opacity: .4;
}
.cid-rzMraftkbp .icon-container {
  display: inline-flex;
  position: relative;
}
.cid-rzMraftkbp .icon-container a {
  display: inherit;
}
.cid-rzMraftkbp .icon-number {
  text-align: center;
  height: 2.5em;
  width: 2.5em;
  margin: 0;
  line-height: 2.5em;
  top: 0;
  right: 0;
  position: absolute;
  display: inline-block;
  background-color: #0c57bf !important;
  transition: all 0.3s ease-in-out 0s;
  border-radius: 50%;
  color: #ffffff;
  z-index: 1;
}
.cid-rzMraftkbp .icon-main {
  margin: 1rem 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
  padding: 0;
  transition: all 0.3s ease-in-out 0s;
}
.cid-rzMraftkbp .icon-main:hover .icon-wrapper {
  background-color: #0c57bf !important;
}
.cid-rzMraftkbp .icon-main:hover .icon-number {
  background-color: #4284df !important;
  color: #ffffff !important;
}
.cid-rzMraftkbp .icon-wrapper {
  position: relative;
  z-index: 1;
  padding: 0.9em;
  height: 100%;
  margin: 0 auto;
  transition: all 0.3s ease-in-out 0s;
  border-radius: 50%;
  font-size: 50px;
  color: #ffffff;
}
.cid-rzMraftkbp .main-wrapper {
  padding: 3rem 0 0 0;
}
@media (max-width: 767px) {
  .cid-rzMraftkbp .wrapper::before {
    display: none;
  }
}
@media (max-width: 991px) {
  .cid-rzMraftkbp .third-elem .wrapper:before {
    display: none;
  }
}
.cid-rzMraftkbp .mbr-section-title {
  margin: 0;
}
.cid-rzMraftkbp .mbr-section-subtitle {
  color: #232323;
  text-align: center;
}
.cid-rzMraftkbp .mbr-section-title,
.cid-rzMraftkbp .underline {
  color: #0c57bf;
}
.cid-tE5cKmATMV {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/fundo1-1920x700.jpg");
}
.cid-tE5cKmATMV .mbr-overlay {
  background: #a3906f;
}
.cid-tE5cKmATMV .mbr-text,
.cid-tE5cKmATMV .mbr-section-btn {
  color: #ffffff;
}
.cid-tE5cKmATMV H1 {
  color: #ffffff;
}
.cid-tE5fhy7pDr {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-tE5fhy7pDr .card {
  margin-bottom: .75rem;
  padding: 1rem 2.5rem;
  background-color: #fafafa;
  width: 100%;
  border-radius: 0 !important;
}
.cid-tE5fhy7pDr .card img {
  height: 59px;
  width: 100%;
  object-fit: contain;
}
.cid-tE5fhy7pDr .mbr-section-subtitle {
  margin-top: .75rem;
  color: #000000;
  text-align: center;
}
.cid-tE5fhy7pDr .logo-container {
  justify-content: space-around;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 992px) {
  .cid-tE5fhy7pDr .col-lg-1 {
    flex: 0 0 19.7%;
    max-width: 19.7%;
  }
}
.cid-tE5fhy7pDr H2 {
  color: #0c57bf;
  text-align: center;
}
.cid-tE5fhy7pDr .mbr-section-subtitle,
.cid-tE5fhy7pDr .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-tE5kvFVGTO {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tE5kvFVGTO .content {
    text-align: center;
  }
  .cid-tE5kvFVGTO .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tE5kvFVGTO .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tE5kvFVGTO .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tE5kvFVGTO .media-wrap img {
  height: 6rem;
}
.cid-tE5kvFVGTO .mbr-text {
  color: #8d97ad;
}
.cid-tE5kvFVGTO .p-title {
  font-size: 17px;
}
.cid-tE5kvFVGTO .p-title span {
  color: #111111;
}
.cid-tE5kvFVGTO .title-card {
  font-size: 1.3rem;
}
.cid-tE5kvFVGTO .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tE5kvFVGTO .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-tE5kvFVGTO .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-tE5kvFVGTO .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-tE5kvFVGTO .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-tE5kvFVGTO .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tE5kvFVGTO .copyright img {
  margin-right: 10px;
}
.cid-tE5kvFVGTO .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #0c57bf;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tE5kvFVGTO .icon-transition span:hover {
  background-color: #6c9cdf;
}
@media (max-width: 767px) {
  .cid-tE5kvFVGTO .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tE5kvFVGTO .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-tE5kvFVGTO .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tE5kvFVGTO H5 {
  color: #0c57bf;
}
.cid-tE5kvFVGTO SPAN {
  color: #0c57bf;
}
.cid-tE5kvFVGTO .p-title,
.cid-tE5kvFVGTO .social-media {
  color: #000000;
}
.cid-tE5lzSJMD4 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-tF1N2atnrn .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-tF1N2atnrn .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-tF1N2atnrn a {
  font-style: normal;
}
.cid-tF1N2atnrn .show {
  overflow: visible;
}
.cid-tF1N2atnrn .dropdown-menu {
  max-height: 400px;
}
.cid-tF1N2atnrn .dropdown-item:active {
  background-color: transparent;
}
.cid-tF1N2atnrn .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-tF1N2atnrn .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-tF1N2atnrn .nav-item:focus,
.cid-tF1N2atnrn .nav-link:focus {
  outline: none;
}
.cid-tF1N2atnrn .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-tF1N2atnrn .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tF1N2atnrn .menu-logo {
  margin-right: auto;
}
.cid-tF1N2atnrn .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tF1N2atnrn .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-tF1N2atnrn .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tF1N2atnrn .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tF1N2atnrn .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tF1N2atnrn .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tF1N2atnrn .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-tF1N2atnrn .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-tF1N2atnrn .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-tF1N2atnrn .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tF1N2atnrn .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tF1N2atnrn .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-tF1N2atnrn .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tF1N2atnrn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tF1N2atnrn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tF1N2atnrn .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tF1N2atnrn .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tF1N2atnrn .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tF1N2atnrn .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-tF1N2atnrn .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tF1N2atnrn .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tF1N2atnrn .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tF1N2atnrn .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tF1N2atnrn .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tF1N2atnrn button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tF1N2atnrn button.navbar-toggler:focus {
  outline: none;
}
.cid-tF1N2atnrn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #36404c;
}
.cid-tF1N2atnrn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tF1N2atnrn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tF1N2atnrn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tF1N2atnrn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tF1N2atnrn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tF1N2atnrn nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tF1N2atnrn nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tF1N2atnrn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tF1N2atnrn .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tF1N2atnrn .collapsed .btn {
  display: -webkit-flex;
}
.cid-tF1N2atnrn .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tF1N2atnrn .collapsed .navbar-collapse.collapsing,
.cid-tF1N2atnrn .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-tF1N2atnrn .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tF1N2atnrn .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tF1N2atnrn .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tF1N2atnrn .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tF1N2atnrn .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tF1N2atnrn .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tF1N2atnrn .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tF1N2atnrn .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tF1N2atnrn .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 94.375vh;
  }
}
.cid-tF1N2atnrn .collapsed button.navbar-toggler {
  display: block;
}
.cid-tF1N2atnrn .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tF1N2atnrn .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tF1N2atnrn .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-tF1N2atnrn .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tF1N2atnrn .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tF1N2atnrn .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
@media (max-width: 991px) {
  .cid-tF1N2atnrn.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tF1N2atnrn img {
    height: 3.8rem !important;
  }
  .cid-tF1N2atnrn .btn {
    display: -webkit-flex;
  }
  .cid-tF1N2atnrn button.navbar-toggler {
    display: block;
  }
  .cid-tF1N2atnrn .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tF1N2atnrn .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tF1N2atnrn .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tF1N2atnrn .navbar-collapse.collapsing,
  .cid-tF1N2atnrn .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-tF1N2atnrn .navbar-collapse.collapsing .navbar-nav,
  .cid-tF1N2atnrn .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tF1N2atnrn .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tF1N2atnrn .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tF1N2atnrn .navbar-collapse.collapsing .navbar-buttons,
  .cid-tF1N2atnrn .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tF1N2atnrn .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tF1N2atnrn .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tF1N2atnrn .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-tF1N2atnrn .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tF1N2atnrn .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tF1N2atnrn .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
}
@media (max-width: 767px) {
  .cid-tF1N2atnrn .nav-link {
    justify-content: start !important;
  }
  .cid-tF1N2atnrn .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-tF1N2atnrn .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-tF1N2atnrn .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-tF1N2atnrn .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-tF1N2atnrn .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-tF1N2atnrn .nav-link:hover,
.cid-tF1N2atnrn .dropdown-item:hover {
  color: #1d2671 !important;
}
@media (min-width: 1500px) {
  .cid-tF1N2atnrn .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-tF1N2atnrn .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-tF1N2aSjSX {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-tF1N2brISz {
  background-image: url("../../../assets/images/family-playing-with-son-beach-sunset-time-1000x667.jpg");
}
.cid-tF1N2brISz .media-content .btn-bgr {
  z-index: 0;
}
.cid-tF1N2brISz .mbr-overlay {
  background: linear-gradient(90deg, #a2a2a2, #00113e);
}
@media (min-width: 992px) {
  .cid-tF1N2brISz .media-content {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
@media (max-width: 991px) {
  .cid-tF1N2brISz {
    text-align: center !important;
  }
  .cid-tF1N2brISz .mbr-text {
    text-align: center;
  }
}
.cid-tF1N2brISz .media-container-row {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tF1N2brISz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tF1N2brISz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tF1N2brISz H1 {
  color: #ffffff;
  text-align: left;
}
.cid-tF1N2brISz .mbr-text,
.cid-tF1N2brISz .mbr-section-btn {
  color: #f6fbff;
  text-align: left;
}
.cid-tF1N2c9ooA {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #4284df;
  background: linear-gradient(90deg, #4284df, #04367c);
}
.cid-tF1N2c9ooA .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #4284df);
}
.cid-tF1N2c9ooA h3 {
  color: #FFFFFF;
  font-weight: 500;
}
.cid-tF1N2c9ooA p {
  color: #FFFFFF;
}
.cid-tF1N2c9ooA h4 {
  color: #FFFFFF;
  display: none;
}
.cid-tF1N2c9ooA .mbr-figure img {
  padding-left: 1rem;
}
.cid-tF1N2c9ooA .counter-container {
  color: #767676;
  padding-right: 4rem;
}
.cid-tF1N2c9ooA .counter-container div {
  margin-bottom: 1rem;
  padding-left: .5rem;
}
@media (max-width: 575px) {
  .cid-tF1N2c9ooA .counter-container .counter {
    left: 2rem;
  }
}
.cid-tF1N2c9ooA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tF1N2c9ooA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tF1N2c9ooA P {
  text-align: left;
  color: #feffe3;
}
.cid-tF1N2cRt4h {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #4284df;
  background: linear-gradient(90deg, #4284df, #04367c);
}
.cid-tF1N2cRt4h .media-content .btn-bgr {
  z-index: 0;
}
.cid-tF1N2cRt4h .mbr-overlay {
  background: linear-gradient(90deg, #52e2dd, #8120c9);
}
@media (min-width: 992px) {
  .cid-tF1N2cRt4h .media-content {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
@media (max-width: 991px) {
  .cid-tF1N2cRt4h {
    text-align: center !important;
  }
  .cid-tF1N2cRt4h .mbr-text {
    text-align: center;
  }
}
.cid-tF1N2cRt4h .media-container-row {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tF1N2cRt4h .mbr-fallback-image.disabled {
  display: none;
}
.cid-tF1N2cRt4h .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tF1N2dovUP {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tF1N2dovUP .card-img span {
  font-size: 90px;
  color: #0c57bf;
}
@media (min-width: 992px) {
  .cid-tF1N2dovUP .col-lg-x {
    flex: 0 0 20%;
    max-width: 20%;
  }
}
.cid-tF1N2dovUP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tF1N2dovUP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tF1N2dovUP .card-title,
.cid-tF1N2dovUP .card-img {
  color: #0c57bf;
}
.cid-tF1N2dovUP .mbr-text,
.cid-tF1N2dovUP .mbr-section-btn {
  color: #000000;
}
.cid-tF1N2ffsQ7 {
  padding-top: 20px;
  padding-bottom: 30px;
  background-color: #0c57bf;
}
.cid-tF1N2ffsQ7 .media-content .btn-bgr {
  z-index: 0;
}
.cid-tF1N2ffsQ7 .mbr-overlay {
  background: linear-gradient(90deg, #4284df, #00113e);
}
@media (min-width: 992px) {
  .cid-tF1N2ffsQ7 .media-content {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
@media (max-width: 991px) {
  .cid-tF1N2ffsQ7 {
    text-align: center !important;
  }
  .cid-tF1N2ffsQ7 .mbr-text {
    text-align: center;
  }
}
.cid-tF1N2ffsQ7 .media-container-row {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tF1N2ffsQ7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tF1N2ffsQ7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tF1N2fOdHo {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-tF1N2fOdHo .card {
  margin-bottom: .75rem;
  padding: 1rem 2.5rem;
  background-color: #fafafa;
  width: 100%;
  border-radius: 0 !important;
}
.cid-tF1N2fOdHo .card img {
  height: 59px;
  width: 100%;
  object-fit: contain;
}
.cid-tF1N2fOdHo .mbr-section-subtitle {
  margin-top: .75rem;
  color: #000000;
  text-align: center;
}
.cid-tF1N2fOdHo .logo-container {
  justify-content: space-around;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 992px) {
  .cid-tF1N2fOdHo .col-lg-1 {
    flex: 0 0 19.7%;
    max-width: 19.7%;
  }
}
.cid-tF1N2fOdHo H2 {
  color: #0c57bf;
  text-align: center;
}
.cid-tF1N2fOdHo .mbr-section-subtitle,
.cid-tF1N2fOdHo .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-tHo6SKajwG {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tHo6SKajwG .content {
    text-align: center;
  }
  .cid-tHo6SKajwG .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tHo6SKajwG .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tHo6SKajwG .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tHo6SKajwG .media-wrap img {
  height: 6rem;
}
.cid-tHo6SKajwG .mbr-text {
  color: #8d97ad;
}
.cid-tHo6SKajwG .p-title {
  font-size: 17px;
}
.cid-tHo6SKajwG .p-title span {
  color: #111111;
}
.cid-tHo6SKajwG .title-card {
  font-size: 1.3rem;
}
.cid-tHo6SKajwG .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tHo6SKajwG .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-tHo6SKajwG .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-tHo6SKajwG .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-tHo6SKajwG .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-tHo6SKajwG .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHo6SKajwG .copyright img {
  margin-right: 10px;
}
.cid-tHo6SKajwG .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #0c57bf;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tHo6SKajwG .icon-transition span:hover {
  background-color: #6c9cdf;
}
@media (max-width: 767px) {
  .cid-tHo6SKajwG .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tHo6SKajwG .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-tHo6SKajwG .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tHo6SKajwG H5 {
  color: #0c57bf;
}
.cid-tHo6SKajwG SPAN {
  color: #0c57bf;
}
.cid-tHo6SKajwG .p-title,
.cid-tHo6SKajwG .social-media {
  color: #000000;
}
.cid-tF2aTaIU6B .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-tF2aTaIU6B .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-tF2aTaIU6B a {
  font-style: normal;
}
.cid-tF2aTaIU6B .show {
  overflow: visible;
}
.cid-tF2aTaIU6B .dropdown-menu {
  max-height: 400px;
}
.cid-tF2aTaIU6B .dropdown-item:active {
  background-color: transparent;
}
.cid-tF2aTaIU6B .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-tF2aTaIU6B .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-tF2aTaIU6B .nav-item:focus,
.cid-tF2aTaIU6B .nav-link:focus {
  outline: none;
}
.cid-tF2aTaIU6B .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-tF2aTaIU6B .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tF2aTaIU6B .menu-logo {
  margin-right: auto;
}
.cid-tF2aTaIU6B .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tF2aTaIU6B .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-tF2aTaIU6B .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tF2aTaIU6B .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tF2aTaIU6B .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tF2aTaIU6B .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tF2aTaIU6B .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-tF2aTaIU6B .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-tF2aTaIU6B .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-tF2aTaIU6B .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tF2aTaIU6B .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tF2aTaIU6B .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-tF2aTaIU6B .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tF2aTaIU6B .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tF2aTaIU6B .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tF2aTaIU6B .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tF2aTaIU6B .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tF2aTaIU6B .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tF2aTaIU6B .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-tF2aTaIU6B .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tF2aTaIU6B .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tF2aTaIU6B .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tF2aTaIU6B .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tF2aTaIU6B .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tF2aTaIU6B button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tF2aTaIU6B button.navbar-toggler:focus {
  outline: none;
}
.cid-tF2aTaIU6B button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #36404c;
}
.cid-tF2aTaIU6B button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tF2aTaIU6B button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tF2aTaIU6B button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tF2aTaIU6B button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tF2aTaIU6B nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tF2aTaIU6B nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tF2aTaIU6B nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tF2aTaIU6B nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tF2aTaIU6B .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tF2aTaIU6B .collapsed .btn {
  display: -webkit-flex;
}
.cid-tF2aTaIU6B .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tF2aTaIU6B .collapsed .navbar-collapse.collapsing,
.cid-tF2aTaIU6B .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-tF2aTaIU6B .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tF2aTaIU6B .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tF2aTaIU6B .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tF2aTaIU6B .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tF2aTaIU6B .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tF2aTaIU6B .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tF2aTaIU6B .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tF2aTaIU6B .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tF2aTaIU6B .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 94.375vh;
  }
}
.cid-tF2aTaIU6B .collapsed button.navbar-toggler {
  display: block;
}
.cid-tF2aTaIU6B .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tF2aTaIU6B .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tF2aTaIU6B .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-tF2aTaIU6B .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tF2aTaIU6B .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tF2aTaIU6B .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
@media (max-width: 991px) {
  .cid-tF2aTaIU6B.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tF2aTaIU6B img {
    height: 3.8rem !important;
  }
  .cid-tF2aTaIU6B .btn {
    display: -webkit-flex;
  }
  .cid-tF2aTaIU6B button.navbar-toggler {
    display: block;
  }
  .cid-tF2aTaIU6B .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tF2aTaIU6B .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tF2aTaIU6B .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tF2aTaIU6B .navbar-collapse.collapsing,
  .cid-tF2aTaIU6B .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-tF2aTaIU6B .navbar-collapse.collapsing .navbar-nav,
  .cid-tF2aTaIU6B .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tF2aTaIU6B .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tF2aTaIU6B .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tF2aTaIU6B .navbar-collapse.collapsing .navbar-buttons,
  .cid-tF2aTaIU6B .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tF2aTaIU6B .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tF2aTaIU6B .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tF2aTaIU6B .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-tF2aTaIU6B .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tF2aTaIU6B .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tF2aTaIU6B .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
}
@media (max-width: 767px) {
  .cid-tF2aTaIU6B .nav-link {
    justify-content: start !important;
  }
  .cid-tF2aTaIU6B .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-tF2aTaIU6B .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-tF2aTaIU6B .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-tF2aTaIU6B .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-tF2aTaIU6B .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-tF2aTaIU6B .nav-link:hover,
.cid-tF2aTaIU6B .dropdown-item:hover {
  color: #1d2671 !important;
}
@media (min-width: 1500px) {
  .cid-tF2aTaIU6B .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-tF2aTaIU6B .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-tF2aTbqqIR {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-tF2aTcbgGO {
  background-image: url("../../../assets/images/woman-home-using-smartphone-front-computer-while-having-coffee-2000x1334.jpg");
}
.cid-tF2aTcbgGO .media-content .btn-bgr {
  z-index: 0;
}
.cid-tF2aTcbgGO .mbr-overlay {
  background: linear-gradient(90deg, #a2a2a2, #00113e);
}
@media (min-width: 992px) {
  .cid-tF2aTcbgGO .media-content {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
@media (max-width: 991px) {
  .cid-tF2aTcbgGO {
    text-align: center !important;
  }
  .cid-tF2aTcbgGO .mbr-text {
    text-align: center;
  }
}
.cid-tF2aTcbgGO .media-container-row {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tF2aTcbgGO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tF2aTcbgGO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tF2aTcbgGO H1 {
  color: #ffffff;
  text-align: left;
}
.cid-tF2aTcbgGO .mbr-text,
.cid-tF2aTcbgGO .mbr-section-btn {
  color: #f6fbff;
  text-align: left;
}
.cid-tF2aTd6O4z {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #4284df;
  background: linear-gradient(90deg, #4284df, #04367c);
}
.cid-tF2aTd6O4z .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #4284df);
}
.cid-tF2aTd6O4z h3 {
  color: #FFFFFF;
  font-weight: 500;
}
.cid-tF2aTd6O4z p {
  color: #FFFFFF;
}
.cid-tF2aTd6O4z h4 {
  color: #FFFFFF;
  display: none;
}
.cid-tF2aTd6O4z .mbr-figure img {
  padding-left: 1rem;
}
.cid-tF2aTd6O4z .counter-container {
  color: #767676;
  padding-right: 4rem;
}
.cid-tF2aTd6O4z .counter-container div {
  margin-bottom: 1rem;
  padding-left: .5rem;
}
@media (max-width: 575px) {
  .cid-tF2aTd6O4z .counter-container .counter {
    left: 2rem;
  }
}
.cid-tF2aTd6O4z .mbr-fallback-image.disabled {
  display: none;
}
.cid-tF2aTd6O4z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tF2aTd6O4z P {
  text-align: left;
  color: #feffe3;
}
.cid-tF2aTeaXfQ {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #4284df;
  background: linear-gradient(90deg, #4284df, #04367c);
}
.cid-tF2aTeaXfQ .media-content .btn-bgr {
  z-index: 0;
}
.cid-tF2aTeaXfQ .mbr-overlay {
  background: linear-gradient(90deg, #52e2dd, #8120c9);
}
@media (min-width: 992px) {
  .cid-tF2aTeaXfQ .media-content {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
@media (max-width: 991px) {
  .cid-tF2aTeaXfQ {
    text-align: center !important;
  }
  .cid-tF2aTeaXfQ .mbr-text {
    text-align: center;
  }
}
.cid-tF2aTeaXfQ .media-container-row {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tF2aTeaXfQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tF2aTeaXfQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tHnVWiexZH {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tHnVWiexZH .card-img span {
  font-size: 90px;
  color: #0c57bf;
}
@media (min-width: 992px) {
  .cid-tHnVWiexZH .col-lg-x {
    flex: 0 0 20%;
    max-width: 20%;
  }
}
.cid-tHnVWiexZH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tHnVWiexZH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tHnVWiexZH .card-title,
.cid-tHnVWiexZH .card-img {
  color: #0c57bf;
}
.cid-tF2aTfPEJI {
  padding-top: 20px;
  padding-bottom: 30px;
  background-color: #0c57bf;
}
.cid-tF2aTfPEJI .media-content .btn-bgr {
  z-index: 0;
}
.cid-tF2aTfPEJI .mbr-overlay {
  background: linear-gradient(90deg, #4284df, #00113e);
}
@media (min-width: 992px) {
  .cid-tF2aTfPEJI .media-content {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
@media (max-width: 991px) {
  .cid-tF2aTfPEJI {
    text-align: center !important;
  }
  .cid-tF2aTfPEJI .mbr-text {
    text-align: center;
  }
}
.cid-tF2aTfPEJI .media-container-row {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tF2aTfPEJI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tF2aTfPEJI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tF2aTgq6Qs {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-tF2aTgq6Qs .card {
  margin-bottom: .75rem;
  padding: 1rem 2.5rem;
  background-color: #fafafa;
  width: 100%;
  border-radius: 0 !important;
}
.cid-tF2aTgq6Qs .card img {
  height: 59px;
  width: 100%;
  object-fit: contain;
}
.cid-tF2aTgq6Qs .mbr-section-subtitle {
  margin-top: .75rem;
  color: #000000;
  text-align: center;
}
.cid-tF2aTgq6Qs .logo-container {
  justify-content: space-around;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 992px) {
  .cid-tF2aTgq6Qs .col-lg-1 {
    flex: 0 0 19.7%;
    max-width: 19.7%;
  }
}
.cid-tF2aTgq6Qs H2 {
  color: #0c57bf;
  text-align: center;
}
.cid-tF2aTgq6Qs .mbr-section-subtitle,
.cid-tF2aTgq6Qs .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-tHo6VPVbbl {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tHo6VPVbbl .content {
    text-align: center;
  }
  .cid-tHo6VPVbbl .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tHo6VPVbbl .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tHo6VPVbbl .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tHo6VPVbbl .media-wrap img {
  height: 6rem;
}
.cid-tHo6VPVbbl .mbr-text {
  color: #8d97ad;
}
.cid-tHo6VPVbbl .p-title {
  font-size: 17px;
}
.cid-tHo6VPVbbl .p-title span {
  color: #111111;
}
.cid-tHo6VPVbbl .title-card {
  font-size: 1.3rem;
}
.cid-tHo6VPVbbl .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tHo6VPVbbl .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-tHo6VPVbbl .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-tHo6VPVbbl .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-tHo6VPVbbl .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-tHo6VPVbbl .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHo6VPVbbl .copyright img {
  margin-right: 10px;
}
.cid-tHo6VPVbbl .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #0c57bf;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tHo6VPVbbl .icon-transition span:hover {
  background-color: #6c9cdf;
}
@media (max-width: 767px) {
  .cid-tHo6VPVbbl .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tHo6VPVbbl .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-tHo6VPVbbl .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tHo6VPVbbl H5 {
  color: #0c57bf;
}
.cid-tHo6VPVbbl SPAN {
  color: #0c57bf;
}
.cid-tHo6VPVbbl .p-title,
.cid-tHo6VPVbbl .social-media {
  color: #000000;
}
.cid-tF7BBRI304 .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-tF7BBRI304 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-tF7BBRI304 a {
  font-style: normal;
}
.cid-tF7BBRI304 .show {
  overflow: visible;
}
.cid-tF7BBRI304 .dropdown-menu {
  max-height: 400px;
}
.cid-tF7BBRI304 .dropdown-item:active {
  background-color: transparent;
}
.cid-tF7BBRI304 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-tF7BBRI304 .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-tF7BBRI304 .nav-item:focus,
.cid-tF7BBRI304 .nav-link:focus {
  outline: none;
}
.cid-tF7BBRI304 .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-tF7BBRI304 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tF7BBRI304 .menu-logo {
  margin-right: auto;
}
.cid-tF7BBRI304 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tF7BBRI304 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-tF7BBRI304 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tF7BBRI304 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tF7BBRI304 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tF7BBRI304 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tF7BBRI304 .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-tF7BBRI304 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-tF7BBRI304 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-tF7BBRI304 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tF7BBRI304 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tF7BBRI304 .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-tF7BBRI304 .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tF7BBRI304 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tF7BBRI304 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tF7BBRI304 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tF7BBRI304 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tF7BBRI304 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tF7BBRI304 .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-tF7BBRI304 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tF7BBRI304 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tF7BBRI304 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tF7BBRI304 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tF7BBRI304 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tF7BBRI304 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tF7BBRI304 button.navbar-toggler:focus {
  outline: none;
}
.cid-tF7BBRI304 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #36404c;
}
.cid-tF7BBRI304 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tF7BBRI304 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tF7BBRI304 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tF7BBRI304 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tF7BBRI304 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tF7BBRI304 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tF7BBRI304 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tF7BBRI304 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tF7BBRI304 .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tF7BBRI304 .collapsed .btn {
  display: -webkit-flex;
}
.cid-tF7BBRI304 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tF7BBRI304 .collapsed .navbar-collapse.collapsing,
.cid-tF7BBRI304 .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-tF7BBRI304 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tF7BBRI304 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tF7BBRI304 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tF7BBRI304 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tF7BBRI304 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tF7BBRI304 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tF7BBRI304 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tF7BBRI304 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tF7BBRI304 .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 94.375vh;
  }
}
.cid-tF7BBRI304 .collapsed button.navbar-toggler {
  display: block;
}
.cid-tF7BBRI304 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tF7BBRI304 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tF7BBRI304 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-tF7BBRI304 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tF7BBRI304 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tF7BBRI304 .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
@media (max-width: 991px) {
  .cid-tF7BBRI304.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tF7BBRI304 img {
    height: 3.8rem !important;
  }
  .cid-tF7BBRI304 .btn {
    display: -webkit-flex;
  }
  .cid-tF7BBRI304 button.navbar-toggler {
    display: block;
  }
  .cid-tF7BBRI304 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tF7BBRI304 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tF7BBRI304 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tF7BBRI304 .navbar-collapse.collapsing,
  .cid-tF7BBRI304 .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-tF7BBRI304 .navbar-collapse.collapsing .navbar-nav,
  .cid-tF7BBRI304 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tF7BBRI304 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tF7BBRI304 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tF7BBRI304 .navbar-collapse.collapsing .navbar-buttons,
  .cid-tF7BBRI304 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tF7BBRI304 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tF7BBRI304 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tF7BBRI304 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-tF7BBRI304 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tF7BBRI304 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tF7BBRI304 .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
}
@media (max-width: 767px) {
  .cid-tF7BBRI304 .nav-link {
    justify-content: start !important;
  }
  .cid-tF7BBRI304 .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-tF7BBRI304 .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-tF7BBRI304 .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-tF7BBRI304 .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-tF7BBRI304 .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-tF7BBRI304 .nav-link:hover,
.cid-tF7BBRI304 .dropdown-item:hover {
  color: #1d2671 !important;
}
@media (min-width: 1500px) {
  .cid-tF7BBRI304 .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-tF7BBRI304 .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-tF7BBSacbq {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-tF7BBSIjw2 {
  background-image: url("../../../assets/images/happy-satisfied-customer-just-bought-brand-new-car-vehicle-dealership22222-899x600.jpg");
}
.cid-tF7BBSIjw2 .media-content .btn-bgr {
  z-index: 0;
}
.cid-tF7BBSIjw2 .mbr-overlay {
  background: linear-gradient(90deg, #a2a2a2, #00113e);
}
@media (min-width: 992px) {
  .cid-tF7BBSIjw2 .media-content {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
@media (max-width: 991px) {
  .cid-tF7BBSIjw2 {
    text-align: center !important;
  }
  .cid-tF7BBSIjw2 .mbr-text {
    text-align: center;
  }
}
.cid-tF7BBSIjw2 .media-container-row {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tF7BBSIjw2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tF7BBSIjw2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tF7BBSIjw2 H1 {
  color: #ffffff;
  text-align: left;
}
.cid-tF7BBSIjw2 .mbr-text,
.cid-tF7BBSIjw2 .mbr-section-btn {
  color: #f6fbff;
  text-align: left;
}
.cid-tF7BBTpizR {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #4284df;
  background: linear-gradient(90deg, #4284df, #04367c);
}
.cid-tF7BBTpizR .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #4284df);
}
.cid-tF7BBTpizR h3 {
  color: #FFFFFF;
  font-weight: 500;
}
.cid-tF7BBTpizR p {
  color: #FFFFFF;
}
.cid-tF7BBTpizR h4 {
  color: #FFFFFF;
  display: none;
}
.cid-tF7BBTpizR .mbr-figure img {
  padding-left: 1rem;
}
.cid-tF7BBTpizR .counter-container {
  color: #767676;
  padding-right: 4rem;
}
.cid-tF7BBTpizR .counter-container div {
  margin-bottom: 1rem;
  padding-left: .5rem;
}
@media (max-width: 575px) {
  .cid-tF7BBTpizR .counter-container .counter {
    left: 2rem;
  }
}
.cid-tF7BBTpizR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tF7BBTpizR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tF7BBTpizR P {
  text-align: left;
  color: #feffe3;
}
.cid-tF7BBTpizR H3 {
  text-align: left;
}
.cid-tF7BBU6Ovl {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #4284df;
  background: linear-gradient(90deg, #4284df, #04367c);
}
.cid-tF7BBU6Ovl .media-content .btn-bgr {
  z-index: 0;
}
.cid-tF7BBU6Ovl .mbr-overlay {
  background: linear-gradient(90deg, #52e2dd, #8120c9);
}
@media (min-width: 992px) {
  .cid-tF7BBU6Ovl .media-content {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
@media (max-width: 991px) {
  .cid-tF7BBU6Ovl {
    text-align: center !important;
  }
  .cid-tF7BBU6Ovl .mbr-text {
    text-align: center;
  }
}
.cid-tF7BBU6Ovl .media-container-row {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tF7BBU6Ovl .mbr-fallback-image.disabled {
  display: none;
}
.cid-tF7BBU6Ovl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tF7BBUHmL1 {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tF7BBUHmL1 .card-img span {
  font-size: 90px;
  color: #0c57bf;
}
@media (min-width: 992px) {
  .cid-tF7BBUHmL1 .col-lg-x {
    flex: 0 0 20%;
    max-width: 20%;
  }
}
.cid-tF7BBUHmL1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tF7BBUHmL1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tF7BBUHmL1 .card-title,
.cid-tF7BBUHmL1 .card-img {
  color: #0c57bf;
}
.cid-tF7BBVLHaH {
  padding-top: 20px;
  padding-bottom: 30px;
  background-color: #0c57bf;
}
.cid-tF7BBVLHaH .media-content .btn-bgr {
  z-index: 0;
}
.cid-tF7BBVLHaH .mbr-overlay {
  background: linear-gradient(90deg, #4284df, #00113e);
}
@media (min-width: 992px) {
  .cid-tF7BBVLHaH .media-content {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
@media (max-width: 991px) {
  .cid-tF7BBVLHaH {
    text-align: center !important;
  }
  .cid-tF7BBVLHaH .mbr-text {
    text-align: center;
  }
}
.cid-tF7BBVLHaH .media-container-row {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tF7BBVLHaH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tF7BBVLHaH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tHo7gWga3H {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tHo7gWga3H .content {
    text-align: center;
  }
  .cid-tHo7gWga3H .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tHo7gWga3H .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tHo7gWga3H .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tHo7gWga3H .media-wrap img {
  height: 6rem;
}
.cid-tHo7gWga3H .mbr-text {
  color: #8d97ad;
}
.cid-tHo7gWga3H .p-title {
  font-size: 17px;
}
.cid-tHo7gWga3H .p-title span {
  color: #111111;
}
.cid-tHo7gWga3H .title-card {
  font-size: 1.3rem;
}
.cid-tHo7gWga3H .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tHo7gWga3H .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-tHo7gWga3H .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-tHo7gWga3H .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-tHo7gWga3H .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-tHo7gWga3H .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHo7gWga3H .copyright img {
  margin-right: 10px;
}
.cid-tHo7gWga3H .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #0c57bf;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tHo7gWga3H .icon-transition span:hover {
  background-color: #6c9cdf;
}
@media (max-width: 767px) {
  .cid-tHo7gWga3H .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tHo7gWga3H .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-tHo7gWga3H .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tHo7gWga3H H5 {
  color: #0c57bf;
}
.cid-tHo7gWga3H SPAN {
  color: #0c57bf;
}
.cid-tHo7gWga3H .p-title,
.cid-tHo7gWga3H .social-media {
  color: #000000;
}
.cid-tF7NCeoOyI .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-tF7NCeoOyI .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-tF7NCeoOyI a {
  font-style: normal;
}
.cid-tF7NCeoOyI .show {
  overflow: visible;
}
.cid-tF7NCeoOyI .dropdown-menu {
  max-height: 400px;
}
.cid-tF7NCeoOyI .dropdown-item:active {
  background-color: transparent;
}
.cid-tF7NCeoOyI .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-tF7NCeoOyI .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-tF7NCeoOyI .nav-item:focus,
.cid-tF7NCeoOyI .nav-link:focus {
  outline: none;
}
.cid-tF7NCeoOyI .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-tF7NCeoOyI .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tF7NCeoOyI .menu-logo {
  margin-right: auto;
}
.cid-tF7NCeoOyI .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tF7NCeoOyI .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-tF7NCeoOyI .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tF7NCeoOyI .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tF7NCeoOyI .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tF7NCeoOyI .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tF7NCeoOyI .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-tF7NCeoOyI .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-tF7NCeoOyI .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-tF7NCeoOyI .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tF7NCeoOyI .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tF7NCeoOyI .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-tF7NCeoOyI .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tF7NCeoOyI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tF7NCeoOyI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tF7NCeoOyI .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tF7NCeoOyI .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tF7NCeoOyI .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tF7NCeoOyI .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-tF7NCeoOyI .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tF7NCeoOyI .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tF7NCeoOyI .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tF7NCeoOyI .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tF7NCeoOyI .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tF7NCeoOyI button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tF7NCeoOyI button.navbar-toggler:focus {
  outline: none;
}
.cid-tF7NCeoOyI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #36404c;
}
.cid-tF7NCeoOyI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tF7NCeoOyI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tF7NCeoOyI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tF7NCeoOyI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tF7NCeoOyI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tF7NCeoOyI nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tF7NCeoOyI nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tF7NCeoOyI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tF7NCeoOyI .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tF7NCeoOyI .collapsed .btn {
  display: -webkit-flex;
}
.cid-tF7NCeoOyI .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tF7NCeoOyI .collapsed .navbar-collapse.collapsing,
.cid-tF7NCeoOyI .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-tF7NCeoOyI .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tF7NCeoOyI .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tF7NCeoOyI .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tF7NCeoOyI .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tF7NCeoOyI .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tF7NCeoOyI .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tF7NCeoOyI .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tF7NCeoOyI .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tF7NCeoOyI .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 94.375vh;
  }
}
.cid-tF7NCeoOyI .collapsed button.navbar-toggler {
  display: block;
}
.cid-tF7NCeoOyI .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tF7NCeoOyI .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tF7NCeoOyI .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-tF7NCeoOyI .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tF7NCeoOyI .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tF7NCeoOyI .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
@media (max-width: 991px) {
  .cid-tF7NCeoOyI.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tF7NCeoOyI img {
    height: 3.8rem !important;
  }
  .cid-tF7NCeoOyI .btn {
    display: -webkit-flex;
  }
  .cid-tF7NCeoOyI button.navbar-toggler {
    display: block;
  }
  .cid-tF7NCeoOyI .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tF7NCeoOyI .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tF7NCeoOyI .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tF7NCeoOyI .navbar-collapse.collapsing,
  .cid-tF7NCeoOyI .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-tF7NCeoOyI .navbar-collapse.collapsing .navbar-nav,
  .cid-tF7NCeoOyI .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tF7NCeoOyI .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tF7NCeoOyI .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tF7NCeoOyI .navbar-collapse.collapsing .navbar-buttons,
  .cid-tF7NCeoOyI .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tF7NCeoOyI .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tF7NCeoOyI .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tF7NCeoOyI .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-tF7NCeoOyI .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tF7NCeoOyI .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tF7NCeoOyI .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
}
@media (max-width: 767px) {
  .cid-tF7NCeoOyI .nav-link {
    justify-content: start !important;
  }
  .cid-tF7NCeoOyI .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-tF7NCeoOyI .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-tF7NCeoOyI .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-tF7NCeoOyI .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-tF7NCeoOyI .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-tF7NCeoOyI .nav-link:hover,
.cid-tF7NCeoOyI .dropdown-item:hover {
  color: #1d2671 !important;
}
@media (min-width: 1500px) {
  .cid-tF7NCeoOyI .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-tF7NCeoOyI .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-tF7NCeSkJV {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-tF7NCftIy0 {
  background-color: #0c57bf;
  background: linear-gradient(90deg, #0c57bf, #00113e);
}
.cid-tF7NCftIy0 .media-content .btn-bgr {
  z-index: 0;
}
.cid-tF7NCftIy0 .mbr-overlay {
  background: linear-gradient(90deg, #a2a2a2, #00113e);
}
@media (min-width: 992px) {
  .cid-tF7NCftIy0 .media-content {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
@media (max-width: 991px) {
  .cid-tF7NCftIy0 {
    text-align: center !important;
  }
  .cid-tF7NCftIy0 .mbr-text {
    text-align: center;
  }
}
.cid-tF7NCftIy0 .media-container-row {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tF7NCftIy0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tF7NCftIy0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tF7NCftIy0 H1 {
  color: #ffffff;
  text-align: center;
}
.cid-tF7NCftIy0 .mbr-text,
.cid-tF7NCftIy0 .mbr-section-btn {
  color: #f6fbff;
  text-align: center;
}
.cid-tHnU9Tm8rr {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tHnU9Tm8rr .fade-in-up {
  animation: fade-in-up 0.2s ease-in-out forwards;
}
.cid-tHnU9Tm8rr .mbr-text {
  animation-delay: .2s;
  margin-top: 1.5rem;
  text-align: left;
}
.cid-tHnU9Tm8rr .mbr-section-btn {
  margin-top: 2rem;
  animation-delay: .2s;
}
.cid-tHnU9Tm8rr .box2 {
  background-image: url("../../../assets/images/033.jpg");
  background-size: cover;
  background-position: center;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}
.cid-tHnU9Tm8rr .icon-wrap {
  background-color: #ffffff !important;
  border-radius: 50%;
  width: 73.5px;
  height: 73.5px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-tHnU9Tm8rr .icon-wrap:hover {
  transform: scale(1.1);
}
.cid-tHnU9Tm8rr .icon-wrap span {
  padding-left: 8px;
}
.cid-tHnU9Tm8rr .mbr-media span {
  font-size: 30px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #000000 !important;
}
.cid-tHnU9Tm8rr .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-tHnU9Tm8rr .text-wrapper {
  max-width: 24rem;
}
@media (max-width: 991px) {
  .cid-tHnU9Tm8rr .text-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tHnU9Tm8rr .text-wrapper {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.cid-tHnU9Tm8rr .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tHnU9Tm8rr .modalWindow .modalWindow-container {
  transform: translateY(50vh) translateY(-22vw);
}
.cid-tHnU9Tm8rr .modalWindow .modalWindow-video {
  height: 44.9943757vw;
  width: 80vw;
  margin: 0 auto;
}
.cid-tHnU9Tm8rr a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-tHnU9Tm8rr a.close:hover {
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tHnU9Tm8rr {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media (max-width: 576px) {
  .cid-tHnU9Tm8rr {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .cid-tHnU9Tm8rr .box2 {
    height: 250px;
  }
}
.cid-tHnU9Tm8rr .mbr-section-subtitle {
  text-align: left;
  color: #04367c;
}
.cid-tHnU9Tm8rr .mbr-text,
.cid-tHnU9Tm8rr .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-tHo7mEf2Ul {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tHo7mEf2Ul .content {
    text-align: center;
  }
  .cid-tHo7mEf2Ul .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tHo7mEf2Ul .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tHo7mEf2Ul .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tHo7mEf2Ul .media-wrap img {
  height: 6rem;
}
.cid-tHo7mEf2Ul .mbr-text {
  color: #8d97ad;
}
.cid-tHo7mEf2Ul .p-title {
  font-size: 17px;
}
.cid-tHo7mEf2Ul .p-title span {
  color: #111111;
}
.cid-tHo7mEf2Ul .title-card {
  font-size: 1.3rem;
}
.cid-tHo7mEf2Ul .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tHo7mEf2Ul .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-tHo7mEf2Ul .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-tHo7mEf2Ul .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-tHo7mEf2Ul .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-tHo7mEf2Ul .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHo7mEf2Ul .copyright img {
  margin-right: 10px;
}
.cid-tHo7mEf2Ul .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #0c57bf;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tHo7mEf2Ul .icon-transition span:hover {
  background-color: #6c9cdf;
}
@media (max-width: 767px) {
  .cid-tHo7mEf2Ul .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tHo7mEf2Ul .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-tHo7mEf2Ul .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tHo7mEf2Ul H5 {
  color: #0c57bf;
}
.cid-tHo7mEf2Ul SPAN {
  color: #0c57bf;
}
.cid-tHo7mEf2Ul .p-title,
.cid-tHo7mEf2Ul .social-media {
  color: #000000;
}
.cid-tH6xbvP51V .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-tH6xbvP51V .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-tH6xbvP51V a {
  font-style: normal;
}
.cid-tH6xbvP51V .show {
  overflow: visible;
}
.cid-tH6xbvP51V .dropdown-menu {
  max-height: 400px;
}
.cid-tH6xbvP51V .dropdown-item:active {
  background-color: transparent;
}
.cid-tH6xbvP51V .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-tH6xbvP51V .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-tH6xbvP51V .nav-item:focus,
.cid-tH6xbvP51V .nav-link:focus {
  outline: none;
}
.cid-tH6xbvP51V .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-tH6xbvP51V .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tH6xbvP51V .menu-logo {
  margin-right: auto;
}
.cid-tH6xbvP51V .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tH6xbvP51V .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-tH6xbvP51V .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tH6xbvP51V .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tH6xbvP51V .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tH6xbvP51V .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tH6xbvP51V .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-tH6xbvP51V .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-tH6xbvP51V .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-tH6xbvP51V .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tH6xbvP51V .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tH6xbvP51V .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-tH6xbvP51V .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tH6xbvP51V .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tH6xbvP51V .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tH6xbvP51V .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tH6xbvP51V .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tH6xbvP51V .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tH6xbvP51V .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-tH6xbvP51V .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tH6xbvP51V .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tH6xbvP51V .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tH6xbvP51V .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tH6xbvP51V .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tH6xbvP51V button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tH6xbvP51V button.navbar-toggler:focus {
  outline: none;
}
.cid-tH6xbvP51V button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #36404c;
}
.cid-tH6xbvP51V button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tH6xbvP51V button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tH6xbvP51V button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tH6xbvP51V button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tH6xbvP51V nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tH6xbvP51V nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tH6xbvP51V nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tH6xbvP51V nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tH6xbvP51V .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tH6xbvP51V .collapsed .btn {
  display: -webkit-flex;
}
.cid-tH6xbvP51V .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tH6xbvP51V .collapsed .navbar-collapse.collapsing,
.cid-tH6xbvP51V .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-tH6xbvP51V .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tH6xbvP51V .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tH6xbvP51V .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tH6xbvP51V .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tH6xbvP51V .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tH6xbvP51V .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tH6xbvP51V .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tH6xbvP51V .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tH6xbvP51V .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 94.375vh;
  }
}
.cid-tH6xbvP51V .collapsed button.navbar-toggler {
  display: block;
}
.cid-tH6xbvP51V .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tH6xbvP51V .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tH6xbvP51V .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-tH6xbvP51V .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tH6xbvP51V .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tH6xbvP51V .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
@media (max-width: 991px) {
  .cid-tH6xbvP51V.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tH6xbvP51V img {
    height: 3.8rem !important;
  }
  .cid-tH6xbvP51V .btn {
    display: -webkit-flex;
  }
  .cid-tH6xbvP51V button.navbar-toggler {
    display: block;
  }
  .cid-tH6xbvP51V .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tH6xbvP51V .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tH6xbvP51V .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tH6xbvP51V .navbar-collapse.collapsing,
  .cid-tH6xbvP51V .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-tH6xbvP51V .navbar-collapse.collapsing .navbar-nav,
  .cid-tH6xbvP51V .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tH6xbvP51V .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tH6xbvP51V .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tH6xbvP51V .navbar-collapse.collapsing .navbar-buttons,
  .cid-tH6xbvP51V .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tH6xbvP51V .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tH6xbvP51V .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tH6xbvP51V .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-tH6xbvP51V .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tH6xbvP51V .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tH6xbvP51V .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
}
@media (max-width: 767px) {
  .cid-tH6xbvP51V .nav-link {
    justify-content: start !important;
  }
  .cid-tH6xbvP51V .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-tH6xbvP51V .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-tH6xbvP51V .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-tH6xbvP51V .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-tH6xbvP51V .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-tH6xbvP51V .nav-link:hover,
.cid-tH6xbvP51V .dropdown-item:hover {
  color: #1d2671 !important;
}
@media (min-width: 1500px) {
  .cid-tH6xbvP51V .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-tH6xbvP51V .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-tH6xbwdAdw {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-tH6xbwGGsr {
  background-image: url("../../../assets/images/young-handsome-physician-in-a-medical-robe-with-stethoscope-1000x667.jpg");
}
.cid-tH6xbwGGsr .media-content .btn-bgr {
  z-index: 0;
}
.cid-tH6xbwGGsr .mbr-overlay {
  background: linear-gradient(90deg, #a2a2a2, #00113e);
}
@media (min-width: 992px) {
  .cid-tH6xbwGGsr .media-content {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
@media (max-width: 991px) {
  .cid-tH6xbwGGsr {
    text-align: center !important;
  }
  .cid-tH6xbwGGsr .mbr-text {
    text-align: center;
  }
}
.cid-tH6xbwGGsr .media-container-row {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tH6xbwGGsr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tH6xbwGGsr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tH6xbwGGsr H1 {
  color: #ffffff;
  text-align: center;
}
.cid-tH6xbwGGsr .mbr-text,
.cid-tH6xbwGGsr .mbr-section-btn {
  color: #f6fbff;
  text-align: center;
}
.cid-tH6yJ1hPwP {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-tH6yJ1hPwP .mbr-text {
  color: #000000;
}
.cid-tH6yJ1hPwP h4 {
  font-weight: 500;
}
.cid-tH6yJ1hPwP h4,
.cid-tH6yJ1hPwP h5 {
  text-align: center;
}
.cid-tH6yJ1hPwP p {
  text-align: center;
}
.cid-tH6yJ1hPwP .card-box {
  text-align: center;
}
.cid-tH6yJ1hPwP .card-img {
  font-size: 3rem;
}
.cid-tH6yJ1hPwP .mbr-iconfont {
  color: #0c57bf;
}
.cid-tH6yJ1hPwP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tH6yJ1hPwP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tH6xbxVZqc {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #f6fbff;
}
.cid-tH6xbxVZqc .media-content .btn-bgr {
  z-index: 0;
}
.cid-tH6xbxVZqc .mbr-overlay {
  background: linear-gradient(90deg, #52e2dd, #8120c9);
}
@media (min-width: 992px) {
  .cid-tH6xbxVZqc .media-content {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
@media (max-width: 991px) {
  .cid-tH6xbxVZqc {
    text-align: center !important;
  }
  .cid-tH6xbxVZqc .mbr-text {
    text-align: center;
  }
}
.cid-tH6xbxVZqc .media-container-row {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tH6xbxVZqc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tH6xbxVZqc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tH6CHL2wAo {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tH6CHL2wAo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tH6CHL2wAo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tH6CHL2wAo .title-wrapper {
  padding: 96px 10px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tH6CHL2wAo .title-wrapper {
    padding: 60px 10px;
  }
}
@media (max-width: 768px) {
  .cid-tH6CHL2wAo .title-wrapper {
    padding: 40px 10px;
  }
}
.cid-tH6CHL2wAo .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tH6CHL2wAo .panel-group {
  padding: 40px 10px 10px 10px;
}
.cid-tH6CHL2wAo .panel-group .card {
  border-bottom: 1px solid #e2e2e2;
  border-radius: 0;
}
.cid-tH6CHL2wAo .panel-group .card .card-header {
  padding: 15px 10px 15px 5px;
  background-color: transparent;
  border: none;
}
.cid-tH6CHL2wAo .panel-group .card .card-header .panel-title {
  display: flex;
}
.cid-tH6CHL2wAo .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont,
.cid-tH6CHL2wAo .panel-group .card .card-header .panel-title:hover .icon-wrapper .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-tH6CHL2wAo .panel-group .card .card-header .panel-title .icon-wrapper {
  min-width: 36px;
  width: 36px;
  height: 36px;
  background-color: #04367c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cid-tH6CHL2wAo .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 18px;
  color: #ffffff;
  transition: all .3s ease;
}
.cid-tH6CHL2wAo .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-left: 26px;
  margin-bottom: 0;
}
.cid-tH6CHL2wAo .panel-group .card .panel-collapse .panel-body {
  padding: 0 0 30px 66px;
}
.cid-tH6CHL2wAo .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tH6CHL2wAo .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tH6CHL2wAo .panel-title-edit {
  color: #000000;
}
.cid-tH6CHL2wAo .panel-text {
  color: #000000;
}
.cid-tH6CHL2wAo .mbr-section-title,
.cid-tH6CHL2wAo .mbr-section-btn {
  color: #000000;
}
.cid-tH6GMlRGxP {
  background-color: #4284df;
  background: linear-gradient(90deg, #4284df, #04367c);
}
.cid-tH6GMlRGxP .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #4284df);
}
.cid-tH6GMlRGxP h3 {
  color: #FFFFFF;
  font-weight: 500;
}
.cid-tH6GMlRGxP p {
  color: #FFFFFF;
}
.cid-tH6GMlRGxP h4 {
  color: #FFFFFF;
  display: none;
}
.cid-tH6GMlRGxP .mbr-figure img {
  padding-left: 1rem;
}
.cid-tH6GMlRGxP .counter-container {
  color: #767676;
  padding-right: 4rem;
}
.cid-tH6GMlRGxP .counter-container div {
  margin-bottom: 1rem;
  padding-left: .5rem;
}
@media (max-width: 575px) {
  .cid-tH6GMlRGxP .counter-container .counter {
    left: 2rem;
  }
}
.cid-tH6GMlRGxP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tH6GMlRGxP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tH6A4RhrsQ {
  background-image: url("../../../assets/images/young-handsome-physician-in-a-medical-robe-with-stethoscope-1000x667.jpg");
}
.cid-tH6A4RhrsQ .media-content .btn-bgr {
  z-index: 0;
}
.cid-tH6A4RhrsQ .mbr-overlay {
  background: linear-gradient(90deg, #a2a2a2, #00113e);
}
@media (min-width: 992px) {
  .cid-tH6A4RhrsQ .media-content {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
@media (max-width: 991px) {
  .cid-tH6A4RhrsQ {
    text-align: center !important;
  }
  .cid-tH6A4RhrsQ .mbr-text {
    text-align: center;
  }
}
.cid-tH6A4RhrsQ .media-container-row {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tH6A4RhrsQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tH6A4RhrsQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tH6A4RhrsQ H1 {
  color: #ffffff;
  text-align: center;
}
.cid-tH6A4RhrsQ .mbr-text,
.cid-tH6A4RhrsQ .mbr-section-btn {
  color: #f6fbff;
  text-align: center;
}
.cid-tHo7kbh03P {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tHo7kbh03P .content {
    text-align: center;
  }
  .cid-tHo7kbh03P .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tHo7kbh03P .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tHo7kbh03P .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tHo7kbh03P .media-wrap img {
  height: 6rem;
}
.cid-tHo7kbh03P .mbr-text {
  color: #8d97ad;
}
.cid-tHo7kbh03P .p-title {
  font-size: 17px;
}
.cid-tHo7kbh03P .p-title span {
  color: #111111;
}
.cid-tHo7kbh03P .title-card {
  font-size: 1.3rem;
}
.cid-tHo7kbh03P .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tHo7kbh03P .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-tHo7kbh03P .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-tHo7kbh03P .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-tHo7kbh03P .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-tHo7kbh03P .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHo7kbh03P .copyright img {
  margin-right: 10px;
}
.cid-tHo7kbh03P .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #0c57bf;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tHo7kbh03P .icon-transition span:hover {
  background-color: #6c9cdf;
}
@media (max-width: 767px) {
  .cid-tHo7kbh03P .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tHo7kbh03P .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-tHo7kbh03P .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tHo7kbh03P H5 {
  color: #0c57bf;
}
.cid-tHo7kbh03P SPAN {
  color: #0c57bf;
}
.cid-tHo7kbh03P .p-title,
.cid-tHo7kbh03P .social-media {
  color: #000000;
}
.cid-tE51zgbU5b .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-tE51zgbU5b .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-tE51zgbU5b a {
  font-style: normal;
}
.cid-tE51zgbU5b .show {
  overflow: visible;
}
.cid-tE51zgbU5b .dropdown-menu {
  max-height: 400px;
}
.cid-tE51zgbU5b .dropdown-item:active {
  background-color: transparent;
}
.cid-tE51zgbU5b .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-tE51zgbU5b .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.2rem !important;
  -webkit-align-items: center;
}
.cid-tE51zgbU5b .nav-item:focus,
.cid-tE51zgbU5b .nav-link:focus {
  outline: none;
}
.cid-tE51zgbU5b .btn {
  padding: 0.7rem 2rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-tE51zgbU5b .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tE51zgbU5b .menu-logo {
  margin-right: auto;
}
.cid-tE51zgbU5b .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tE51zgbU5b .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-tE51zgbU5b .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tE51zgbU5b .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tE51zgbU5b .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tE51zgbU5b .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tE51zgbU5b .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-tE51zgbU5b .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-tE51zgbU5b .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-tE51zgbU5b .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tE51zgbU5b .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tE51zgbU5b .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-tE51zgbU5b .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tE51zgbU5b .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tE51zgbU5b .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tE51zgbU5b .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tE51zgbU5b .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tE51zgbU5b .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tE51zgbU5b .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-tE51zgbU5b .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tE51zgbU5b .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tE51zgbU5b .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tE51zgbU5b .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tE51zgbU5b .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tE51zgbU5b button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tE51zgbU5b button.navbar-toggler:focus {
  outline: none;
}
.cid-tE51zgbU5b button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #36404c;
}
.cid-tE51zgbU5b button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tE51zgbU5b button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tE51zgbU5b button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tE51zgbU5b button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tE51zgbU5b nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tE51zgbU5b nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tE51zgbU5b nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tE51zgbU5b nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tE51zgbU5b .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tE51zgbU5b .collapsed .btn {
  display: -webkit-flex;
}
.cid-tE51zgbU5b .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tE51zgbU5b .collapsed .navbar-collapse.collapsing,
.cid-tE51zgbU5b .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-tE51zgbU5b .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tE51zgbU5b .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tE51zgbU5b .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tE51zgbU5b .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tE51zgbU5b .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tE51zgbU5b .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tE51zgbU5b .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tE51zgbU5b .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tE51zgbU5b .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 94.375vh;
  }
}
.cid-tE51zgbU5b .collapsed button.navbar-toggler {
  display: block;
}
.cid-tE51zgbU5b .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tE51zgbU5b .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tE51zgbU5b .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-tE51zgbU5b .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tE51zgbU5b .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tE51zgbU5b .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
@media (max-width: 991px) {
  .cid-tE51zgbU5b.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tE51zgbU5b img {
    height: 3.8rem !important;
  }
  .cid-tE51zgbU5b .btn {
    display: -webkit-flex;
  }
  .cid-tE51zgbU5b button.navbar-toggler {
    display: block;
  }
  .cid-tE51zgbU5b .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tE51zgbU5b .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tE51zgbU5b .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tE51zgbU5b .navbar-collapse.collapsing,
  .cid-tE51zgbU5b .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-tE51zgbU5b .navbar-collapse.collapsing .navbar-nav,
  .cid-tE51zgbU5b .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tE51zgbU5b .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tE51zgbU5b .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tE51zgbU5b .navbar-collapse.collapsing .navbar-buttons,
  .cid-tE51zgbU5b .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tE51zgbU5b .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tE51zgbU5b .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tE51zgbU5b .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-tE51zgbU5b .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tE51zgbU5b .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tE51zgbU5b .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
}
@media (max-width: 767px) {
  .cid-tE51zgbU5b .nav-link {
    justify-content: start !important;
  }
  .cid-tE51zgbU5b .navbar.opened {
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-tE51zgbU5b .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-tE51zgbU5b .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-tE51zgbU5b .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-tE51zgbU5b .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-tE51zgbU5b .nav-link:hover,
.cid-tE51zgbU5b .dropdown-item:hover {
  color: #1d2671 !important;
}
@media (min-width: 1500px) {
  .cid-tE51zgbU5b .navbar-toggleable-sm .navbar-collapse {
    max-width: 60% !important;
    padding-right: 5rem;
  }
  .cid-tE51zgbU5b .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-tE5lzSJMD4 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-tEEjE8vZLL {
  background-image: url("../../../assets/images/you-are-best-grandma-world-2000x1333.jpg");
}
.cid-tEEjE8vZLL .media-content .btn-bgr {
  z-index: 0;
}
.cid-tEEjE8vZLL .mbr-overlay {
  background: linear-gradient(90deg, #a2a2a2, #00113e);
}
@media (min-width: 992px) {
  .cid-tEEjE8vZLL .media-content {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
@media (max-width: 991px) {
  .cid-tEEjE8vZLL {
    text-align: center !important;
  }
  .cid-tEEjE8vZLL .mbr-text {
    text-align: center;
  }
}
.cid-tEEjE8vZLL .media-container-row {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tEEjE8vZLL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEEjE8vZLL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEEjE8vZLL H1 {
  color: #ffffff;
}
.cid-tEEjE8vZLL .mbr-text,
.cid-tEEjE8vZLL .mbr-section-btn {
  color: #f6fbff;
}
.cid-tEEnS7VtDc {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #4284df;
  background: linear-gradient(90deg, #4284df, #04367c);
}
.cid-tEEnS7VtDc .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #4284df);
}
.cid-tEEnS7VtDc h3 {
  color: #FFFFFF;
  font-weight: 500;
}
.cid-tEEnS7VtDc p {
  color: #FFFFFF;
}
.cid-tEEnS7VtDc h4 {
  color: #FFFFFF;
  display: none;
}
.cid-tEEnS7VtDc .mbr-figure img {
  padding-left: 1rem;
}
.cid-tEEnS7VtDc .counter-container {
  color: #767676;
  padding-right: 4rem;
}
.cid-tEEnS7VtDc .counter-container div {
  margin-bottom: 1rem;
  padding-left: .5rem;
}
@media (max-width: 575px) {
  .cid-tEEnS7VtDc .counter-container .counter {
    left: 2rem;
  }
}
.cid-tEEnS7VtDc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEEnS7VtDc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEEnS7VtDc P {
  text-align: left;
  color: #feffe3;
}
.cid-tEEFu49Yev {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #4284df;
  background: linear-gradient(90deg, #4284df, #04367c);
}
.cid-tEEFu49Yev .media-content .btn-bgr {
  z-index: 0;
}
.cid-tEEFu49Yev .mbr-overlay {
  background: linear-gradient(90deg, #52e2dd, #8120c9);
}
@media (min-width: 992px) {
  .cid-tEEFu49Yev .media-content {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
@media (max-width: 991px) {
  .cid-tEEFu49Yev {
    text-align: center !important;
  }
  .cid-tEEFu49Yev .mbr-text {
    text-align: center;
  }
}
.cid-tEEFu49Yev .media-container-row {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tEEFu49Yev .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEEFu49Yev .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEEAbyoBPD {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tEEAbyoBPD .card-img span {
  font-size: 90px;
  color: #0c57bf;
}
@media (min-width: 992px) {
  .cid-tEEAbyoBPD .col-lg-x {
    flex: 0 0 20%;
    max-width: 20%;
  }
}
.cid-tEEAbyoBPD .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEEAbyoBPD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEEAbyoBPD .card-title,
.cid-tEEAbyoBPD .card-img {
  color: #0c57bf;
}
.cid-tEEAQk35NB {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tEEAQk35NB .card-img span {
  font-size: 90px;
  color: #0c57bf;
}
@media (min-width: 992px) {
  .cid-tEEAQk35NB .col-lg-x {
    flex: 0 0 20%;
    max-width: 20%;
  }
}
.cid-tEEAQk35NB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEEAQk35NB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEEAQk35NB .card-title,
.cid-tEEAQk35NB .card-img {
  color: #0c57bf;
}
.cid-tEEDcVeSH7 {
  padding-top: 20px;
  padding-bottom: 30px;
  background-color: #0c57bf;
}
.cid-tEEDcVeSH7 .media-content .btn-bgr {
  z-index: 0;
}
.cid-tEEDcVeSH7 .mbr-overlay {
  background: linear-gradient(90deg, #4284df, #00113e);
}
@media (min-width: 992px) {
  .cid-tEEDcVeSH7 .media-content {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
@media (max-width: 991px) {
  .cid-tEEDcVeSH7 {
    text-align: center !important;
  }
  .cid-tEEDcVeSH7 .mbr-text {
    text-align: center;
  }
}
.cid-tEEDcVeSH7 .media-container-row {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tEEDcVeSH7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEEDcVeSH7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEEIJKkTM3 {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-tEEIJKkTM3 .card {
  margin-bottom: .75rem;
  padding: 1rem 2.5rem;
  background-color: #fafafa;
  width: 100%;
  border-radius: 0 !important;
}
.cid-tEEIJKkTM3 .card img {
  height: 59px;
  width: 100%;
  object-fit: contain;
}
.cid-tEEIJKkTM3 .mbr-section-subtitle {
  margin-top: .75rem;
  color: #000000;
  text-align: center;
}
.cid-tEEIJKkTM3 .logo-container {
  justify-content: space-around;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 992px) {
  .cid-tEEIJKkTM3 .col-lg-1 {
    flex: 0 0 19.7%;
    max-width: 19.7%;
  }
}
.cid-tEEIJKkTM3 H2 {
  color: #0c57bf;
  text-align: center;
}
.cid-tEEIJKkTM3 .mbr-section-subtitle,
.cid-tEEIJKkTM3 .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-tHo6ObQbCQ {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tHo6ObQbCQ .content {
    text-align: center;
  }
  .cid-tHo6ObQbCQ .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tHo6ObQbCQ .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tHo6ObQbCQ .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tHo6ObQbCQ .media-wrap img {
  height: 6rem;
}
.cid-tHo6ObQbCQ .mbr-text {
  color: #8d97ad;
}
.cid-tHo6ObQbCQ .p-title {
  font-size: 17px;
}
.cid-tHo6ObQbCQ .p-title span {
  color: #111111;
}
.cid-tHo6ObQbCQ .title-card {
  font-size: 1.3rem;
}
.cid-tHo6ObQbCQ .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tHo6ObQbCQ .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-tHo6ObQbCQ .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-tHo6ObQbCQ .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-tHo6ObQbCQ .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-tHo6ObQbCQ .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tHo6ObQbCQ .copyright img {
  margin-right: 10px;
}
.cid-tHo6ObQbCQ .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #0c57bf;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tHo6ObQbCQ .icon-transition span:hover {
  background-color: #6c9cdf;
}
@media (max-width: 767px) {
  .cid-tHo6ObQbCQ .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tHo6ObQbCQ .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-tHo6ObQbCQ .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tHo6ObQbCQ H5 {
  color: #0c57bf;
}
.cid-tHo6ObQbCQ SPAN {
  color: #0c57bf;
}
.cid-tHo6ObQbCQ .p-title,
.cid-tHo6ObQbCQ .social-media {
  color: #000000;
}
