body {
  font-family: Muli;
}
.display-1 {
  font-family: 'Muli', sans-serif;
  font-size: 4.2rem;
}
.display-1 > .mbr-iconfont {
  font-size: 4.2rem;
}
.display-2 {
  font-family: 'Muli', sans-serif;
  font-size: 2.5rem;
}
.display-2 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-4 {
  font-family: 'Muli', sans-serif;
  font-size: 1.4rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.4rem;
}
.display-5 {
  font-family: 'Muli', sans-serif;
  font-size: 1.875rem;
}
.display-5 > .mbr-iconfont {
  font-size: 1.875rem;
}
.display-7 {
  font-family: 'Muli', sans-serif;
  font-size: 1.1rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.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: 3.36rem;
    font-size: calc( 2.12rem + (4.2 - 2.12) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.12rem + (4.2 - 2.12) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    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))));
  }
  .display-5 {
    font-size: 1.5rem;
    font-size: calc( 1.30625rem + (1.875 - 1.30625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.30625rem + (1.875 - 1.30625) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 10px 15px;
  border-radius: 6px;
}
.btn-sm {
  padding: 5px 10px;
  border-radius: 6px;
}
.btn-md {
  padding: 15px 20px;
  border-radius: 6px;
}
.btn-lg {
  padding: 20px 25px;
  border-radius: 6px;
}
.bg-primary {
  background-color: #344cf1 !important;
}
.bg-success {
  background-color: #ffffff !important;
}
.bg-info {
  background-color: #6d7a8c !important;
}
.bg-warning {
  background-color: #e6ecf2 !important;
}
.bg-danger {
  background-color: #ececec !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #344cf1 !important;
  border-color: #344cf1 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #0e26cb !important;
  border-color: #0e26cb !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #0e26cb !important;
  border-color: #0e26cb !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #1d3494 !important;
  border-color: #1d3494 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #101e54 !important;
  border-color: #101e54 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #101e54 !important;
  border-color: #101e54 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #6d7a8c !important;
  border-color: #6d7a8c !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #4c5561 !important;
  border-color: #4c5561 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #4c5561 !important;
  border-color: #4c5561 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #e6ecf2 !important;
  border-color: #e6ecf2 !important;
  color: #4a6d8f !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #4a6d8f !important;
  background-color: #b4c6d8 !important;
  border-color: #b4c6d8 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #4a6d8f !important;
  background-color: #b4c6d8 !important;
  border-color: #b4c6d8 !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #ececec !important;
  border-color: #ececec !important;
  color: #6d6d6d !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #6d6d6d !important;
  background-color: #c6c6c6 !important;
  border-color: #c6c6c6 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #6d6d6d !important;
  background-color: #c6c6c6 !important;
  border-color: #c6c6c6 !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: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #0c21b3;
  color: #0c21b3;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff;
  background-color: #344cf1;
  border-color: #344cf1;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #344cf1 !important;
  border-color: #344cf1 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #0c163f;
  color: #0c163f;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff;
  background-color: #1d3494;
  border-color: #1d3494;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #1d3494 !important;
  border-color: #1d3494 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #404853;
  color: #404853;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff;
  background-color: #6d7a8c;
  border-color: #6d7a8c;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #6d7a8c !important;
  border-color: #6d7a8c !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #cccccc;
  color: #cccccc;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #808080;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #a3b9cf;
  color: #a3b9cf;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #4a6d8f;
  background-color: #e6ecf2;
  border-color: #e6ecf2;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #4a6d8f !important;
  background-color: #e6ecf2 !important;
  border-color: #e6ecf2 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #b9b9b9;
  color: #b9b9b9;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #6d6d6d;
  background-color: #ececec;
  border-color: #ececec;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #6d6d6d !important;
  background-color: #ececec !important;
  border-color: #ececec !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;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #344cf1 !important;
}
.text-secondary {
  color: #1d3494 !important;
}
.text-success {
  color: #ffffff !important;
}
.text-info {
  color: #6d7a8c !important;
}
.text-warning {
  color: #e6ecf2 !important;
}
.text-danger {
  color: #ececec !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #0c21b3 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #0c163f !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #cccccc !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #404853 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #a3b9cf !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #b9b9b9 !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: #6d7a8c;
}
.alert-warning {
  background-color: #e6ecf2;
}
.alert-danger {
  background-color: #ececec;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #344cf1;
  border-color: #344cf1;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #4f87fb;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #f3f4fe;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #b4bbc5;
}
.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: #ffffff;
}
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Muli', sans-serif;
  font-size: 1.1rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.1rem;
}
blockquote {
  border-color: #344cf1;
}
/* Forms */
.mbr-form .btn {
  margin: 0.4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn button[type='submit'] {
  border-radius: 100px !important;
}
.btn-primary:hover {
  color: #ffffff !important;
  background: #1d3494 !important;
  border-color: #1d3494 !important;
}
.form-control,
.jq-number__spin {
  background-color: #ffffff;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #344cf1;
  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: #344cf1;
  border-bottom-color: #344cf1;
}
.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: #344cf1 !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: #1d3494 !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='%23344cf1' %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;
}
.is-builder .cid-sNYTywXyrL .navbar {
  padding-top: 20px !important;
}
.cid-sNYTywXyrL .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  -webkit-transition: none;
  transition: none;
  min-height: 77px;
}
@media (min-width: 1200px) {
  .cid-sNYTywXyrL .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.835em 2.5385em 0.835em 3.5385em !important;
    margin: 0 !important;
  }
  .cid-sNYTywXyrL .navbar .dropdown .dropdown-menu .dropdown-item:hover {
    padding: 0.835em 2.5385em 0.835em 3.8385em !important;
  }
}
.cid-sNYTywXyrL .menu-logo {
  display: flex;
  position: relative;
  -webkit-box-align: center;
  align-items: center;
  margin-right: auto;
}
.cid-sNYTywXyrL .menu-logo .navbar-brand {
  display: flex;
  margin-left: 4rem;
  padding: 0.5rem 0;
  -webkit-transition: padding 0.2s;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-box-align: center;
  align-items: center;
}
.cid-sNYTywXyrL .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sNYTywXyrL .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sNYTywXyrL .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  -webkit-transition: font-size 0.25s;
  transition: font-size 0.25s;
}
.cid-sNYTywXyrL .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sNYTywXyrL .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  -webkit-transition: font-size 0.25s;
  transition: font-size 0.25s;
}
.cid-sNYTywXyrL .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-sNYTywXyrL a {
  font-style: normal;
}
.cid-sNYTywXyrL .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-sNYTywXyrL .nav-item a {
  padding: 0.4rem 0 !important;
}
.cid-sNYTywXyrL .dropdown-item:before {
  color: #ffffff;
  font-family: Material-Design-Icons !important;
  content: "\e716";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1.125rem;
  top: 1.1rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sNYTywXyrL .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
}
.cid-sNYTywXyrL .content-text {
  margin-bottom: 0;
}
.cid-sNYTywXyrL .navbar-nav {
  position: relative;
  min-height: 100px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
}
.cid-sNYTywXyrL .navbar-nav li:first-child > a {
  color: #344cf1;
}
.cid-sNYTywXyrL .navbar-nav li:last-child > a::before {
  position: absolute;
  content: "";
  height: 20px;
  width: 1px;
  right: -9px;
  margin-top: -10px;
  top: 50%;
  background-color: rgba(0, 0, 0, 0.46);
  margin-right: 12px;
  width: 0px;
  height: 0px;
}
@media (min-width: 1200px) {
  .cid-sNYTywXyrL .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #344cf1;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sNYTywXyrL .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
  .cid-sNYTywXyrL .navbar-nav .nav-item a {
    margin: 0 1.1rem !important;
  }
}
@media (max-width: 1200px) {
  .cid-sNYTywXyrL .navbar-nav .nav-item a {
    margin: 0 !important;
  }
}
.cid-sNYTywXyrL .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-sNYTywXyrL .display-4 > .mbr-iconfont {
  font-size: 1.23em;
}
.cid-sNYTywXyrL .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sNYTywXyrL .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sNYTywXyrL .content-link {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.cid-sNYTywXyrL .content-link:first-child {
  padding-left: 1.3rem;
}
@media (max-width: 1200px) {
  .cid-sNYTywXyrL .content-link {
    display: none;
  }
}
.cid-sNYTywXyrL .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
.cid-sNYTywXyrL .navbar-buttons.mbr-section-btn > .mbr-iconfont {
  font-size: 17px !important;
  margin-right: 13px;
}
.cid-sNYTywXyrL .nav-dropdown .link {
  font-weight: 600;
}
.cid-sNYTywXyrL .nav-dropdown .link.display-4 {
  font-size: 15px;
}
.cid-sNYTywXyrL .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sNYTywXyrL .content-left-side {
  text-align: center;
  padding-top: 3px;
}
@media (max-width: 575px) {
  .cid-sNYTywXyrL .content-left-side {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-sNYTywXyrL .content-left-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}
.cid-sNYTywXyrL .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-sNYTywXyrL .content-right-side {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-sNYTywXyrL .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}
.cid-sNYTywXyrL .content-right-side .icons-block {
  padding-bottom: 5px;
  padding-left: 17px;
}
.cid-sNYTywXyrL .content-right-side .content-link {
  margin-left: 1rem;
}
.cid-sNYTywXyrL .content-right-side .content-link span {
  vertical-align: middle;
  padding-bottom: 2px;
}
.cid-sNYTywXyrL .menu-content-top {
  display: none;
  padding: 1rem 4rem 1rem 3.8rem;
  -webkit-transition: height 0.3s ease-in-out;
  transition: height 0.3s ease-in-out;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-sNYTywXyrL .content-left-side .content-link {
  margin-left: 1rem;
}
.cid-sNYTywXyrL .content-left-side .content-link span {
  vertical-align: middle;
  padding-bottom: 2px;
}
@media (max-width: 1200px) {
  .cid-sNYTywXyrL .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-sNYTywXyrL .dropdown-item {
    padding: 0.235em 0 !important;
    margin: 0 !important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
  }
  .cid-sNYTywXyrL .dropdown-item:before {
    display: none;
  }
  .cid-sNYTywXyrL .menu-logo {
    width: 100%;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .cid-sNYTywXyrL .menu-bottom {
    width: 100%;
    padding: 0 1rem;
    display: block;
  }
  .cid-sNYTywXyrL img {
    height: 3.8rem !important;
  }
  .cid-sNYTywXyrL .btn {
    display: flex;
  }
  .cid-sNYTywXyrL button.navbar-toggler {
    display: block;
  }
  .cid-sNYTywXyrL .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-sNYTywXyrL .navbar-toggleable-sm {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-sNYTywXyrL .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sNYTywXyrL .navbar-collapse.collapsing,
  .cid-sNYTywXyrL .navbar-collapse.show {
    display: block !important;
  }
  .cid-sNYTywXyrL .navbar-collapse.collapsing .navbar-nav,
  .cid-sNYTywXyrL .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sNYTywXyrL .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sNYTywXyrL .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-sNYTywXyrL .navbar-collapse.collapsing .navbar-buttons,
  .cid-sNYTywXyrL .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sNYTywXyrL .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sNYTywXyrL .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sNYTywXyrL .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-property: opacity, padding, height;
    transition-property: opacity, padding, height;
  }
  .cid-sNYTywXyrL .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sNYTywXyrL .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sNYTywXyrL .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 (min-width: 1200px) {
  .cid-sNYTywXyrL .navbar .menu-content-top {
    display: block;
  }
  .cid-sNYTywXyrL .menu-content-top .row {
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  .cid-sNYTywXyrL .content-right-side {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: end;
    justify-content: flex-end;
    flex-basis: 70%;
    flex-shrink: 0;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-sNYTywXyrL .content-left-side {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: start;
    justify-content: flex-start;
    flex-basis: 70%;
    flex-shrink: 0;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-sNYTywXyrL .menu-content-top {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }
  .cid-sNYTywXyrL .menu-bottom {
    display: flex;
  }
  .cid-sNYTywXyrL .navbar {
    display: block;
    padding: 0;
  }
  .cid-sNYTywXyrL .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
  }
  .cid-sNYTywXyrL .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex !important;
    -webkit-box-align: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-sNYTywXyrL .navbar-toggler {
    display: none;
  }
}
.cid-sNYTywXyrL .navbar-short .menu-content-top {
  border: none;
  display: none;
}
.cid-sNYTywXyrL .btn {
  padding: 15px 30px;
  font-weight: 800;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  border-width: 1px;
  box-shadow: none;
}
.cid-sNYTywXyrL .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sNYTywXyrL .btn.display-4 {
  letter-spacing: 0.5px;
  font-size: 13px;
  line-height: 13px;
}
.cid-sNYTywXyrL .navbar-toggleable-sm .navbar-collapse {
  -webkit-box-pack: end;
  justify-content: flex-end;
  padding-right: 4rem;
  width: 100%;
}
.cid-sNYTywXyrL .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-sNYTywXyrL .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sNYTywXyrL .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sNYTywXyrL .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  border-top: 3px solid #344cf1;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  min-width: 16.875rem;
  text-align: left;
  padding-top: 0;
  padding-bottom: 0;
}
@media (max-width: 1200px) {
  .cid-sNYTywXyrL .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sNYTywXyrL .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sNYTywXyrL .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sNYTywXyrL .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #130947;
  color: #ffffff;
}
.cid-sNYTywXyrL .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sNYTywXyrL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sNYTywXyrL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  color: #ffffff;
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sNYTywXyrL .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sNYTywXyrL .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sNYTywXyrL .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-sNYTywXyrL .navbar.navbar-short {
  min-height: 60px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-sNYTywXyrL .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  -webkit-transition: font-size 0.25s;
  transition: font-size 0.25s;
}
.cid-sNYTywXyrL .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sNYTywXyrL .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sNYTywXyrL .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sNYTywXyrL .navbar.navbar-short .navbar-nav {
  min-height: 60px;
}
.cid-sNYTywXyrL button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-sNYTywXyrL button.navbar-toggler:focus {
  outline: none;
}
.cid-sNYTywXyrL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #130947;
}
.cid-sNYTywXyrL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-sNYTywXyrL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-sNYTywXyrL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-sNYTywXyrL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-sNYTywXyrL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-sNYTywXyrL nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-sNYTywXyrL nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-sNYTywXyrL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-sNYTywXyrL .collapsed.navbar {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.cid-sNYTywXyrL .collapsed .menu-bottom {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}
.cid-sNYTywXyrL .collapsed .menu-logo {
  margin-right: 0;
}
.cid-sNYTywXyrL .collapsed .btn {
  display: flex;
}
.cid-sNYTywXyrL .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sNYTywXyrL .collapsed .navbar-collapse.collapsing,
.cid-sNYTywXyrL .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sNYTywXyrL .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sNYTywXyrL .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sNYTywXyrL .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sNYTywXyrL .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sNYTywXyrL .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sNYTywXyrL .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sNYTywXyrL .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sNYTywXyrL .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1200px) {
  .cid-sNYTywXyrL .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.9rem  - 1rem);
  }
  .cid-sNYTywXyrL .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sNYTywXyrL .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sNYTywXyrL .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-sNYTywXyrL .collapsed .navbar-toggleable-sm {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.cid-sNYTywXyrL .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
  -webkit-transition-property: opacity, padding, height;
  transition-property: opacity, padding, height;
}
.cid-sNYTywXyrL .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sNYTywXyrL .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sNYTywXyrL .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-sNYTywXyrL .collapsed .dropdown-item:before {
  display: none;
}
.cid-sNYTywXyrL .navbar-dropdown {
  flex-wrap: nowrap;
}
.cid-sNYTywXyrL .navbar-collapse {
  flex-basis: auto;
  display: flex;
}
.cid-sNYTywXyrL .nav-link:focus {
  outline: none;
}
.cid-sNYTywXyrL .navbar-toggler {
  position: relative;
}
.cid-sNYTywXyrL .dropdown-item.active,
.cid-sNYTywXyrL .dropdown-item:active {
  background-color: #ffffff;
  color: #ffffff;
}
.cid-sNYTywXyrL .nav-link:hover,
.cid-sNYTywXyrL .dropdown-item:hover {
  color: #130947;
}
.cid-sO1wtGT4dG {
  padding-top: 120px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sO1wtGT4dG .media-content .btn-bgr {
  z-index: 0;
}
.cid-sO1wtGT4dG .mbr-section-text {
  word-break: break-word;
}
.cid-sO1wtGT4dG .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
@media (min-width: 992px) {
  .cid-sO1wtGT4dG .mbr-figure {
    padding-left: 4rem;
    padding-right: 4rem;
    padding-left: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-sO1wtGT4dG .mbr-figure {
    padding-top: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-sO1wtGT4dG .mbr-text {
    text-align: center;
  }
}
.cid-sO1wtGT4dG .media-container-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-sO1wtGT4dG H1 {
  color: #1d3494;
  text-align: center;
}
.cid-sO1wtGT4dG .mbr-text,
.cid-sO1wtGT4dG .mbr-section-btn {
  color: #232323;
}
.cid-sO5uPa2udq {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sO5uPa2udq .card {
  padding: 1rem 1rem 3rem 1rem;
}
.cid-sO5uPa2udq .card-img {
  padding-bottom: 2rem;
  border-radius: 25px;
  overflow: hidden;
}
.cid-sO5uPa2udq .card-img img {
  border-radius: 25px;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0 0.75rem 1.5rem #12263f08;
}
.cid-sO5uPa2udq .section-text,
.cid-sO5uPa2udq .card-text {
  color: #8d97ad;
}
@media (max-width: 767px) {
  .cid-sO5uPa2udq .section-text,
  .cid-sO5uPa2udq .card-text,
  .cid-sO5uPa2udq .card-title,
  .cid-sO5uPa2udq .mbr-section-title {
    text-align: center;
  }
}
.cid-sO5uPa2udq H2 {
  color: #1d3494;
}
.cid-sO5uPa2udq .card-title,
.cid-sO5uPa2udq .card-img {
  color: #1d3494;
}
.cid-sO5uPa2udq .section-text {
  color: #6d7a8c;
}
.cid-sO5uPa2udq .card-text,
.cid-sO5uPa2udq .mbr-section-btn {
  color: #6d7a8c;
}
.cid-sO0l22q0TG {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sO0l22q0TG .mbr-overlay {
  background: linear-gradient(90deg, #ffffff, #1ec5bf);
}
.cid-sO0l22q0TG h3 {
  color: #000000;
  font-weight: 300;
}
.cid-sO0l22q0TG p {
  color: #464646;
}
.cid-sO0l22q0TG h2 {
  color: #000000;
}
.cid-sO0l22q0TG .counter-container {
  color: #767676;
}
.cid-sO0l22q0TG .counter-container div {
  margin-bottom: .5rem !important;
  padding-left: .5rem;
}
.cid-sO0l22q0TG .media-content {
  padding-right: 3rem;
  padding-left: 1.5rem;
}
@media (max-width: 991px) {
  .cid-sO0l22q0TG .media-content {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}
.cid-sO0l22q0TG .mbr-figure:last-of-type {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sO0l22q0TG .list-counter {
  float: left;
  font-size: 2rem;
  margin-right: 1rem;
}
.cid-sO0l22q0TG .half-list:nth-of-type(even) {
  display: inline-block;
  width: 48%;
  margin-left: 4%;
}
.cid-sO0l22q0TG .half-list {
  text-align: left;
  display: inline-block;
  width: 48%;
  vertical-align: top;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-sO0l22q0TG .half-list {
    width: 100%;
    margin: 0;
  }
  .cid-sO0l22q0TG .half-list:nth-of-type(even) {
    width: 100%;
    margin: 0;
  }
}
.cid-sO0l22q0TG .mbr-figure {
  -ms-flex-item-align: initial;
  -ms-grid-row-align: initial;
  -webkit-align-self: flex-start;
  align-self: flex-start;
  padding-right: 1rem;
  padding-left: 4rem;
}
@media (min-width: 992px) {
  .cid-sO0l22q0TG .mbr-figure {
    padding-left: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-sO0l22q0TG .mbr-figure {
    padding-top: 1rem;
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-sO0l22q0TG .media-container-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .cid-sO0l22q0TG .mbr-text {
    text-align: center;
  }
}
.cid-sO0l22q0TG .content-list-title {
  color: #000000;
}
.cid-sO0l22q0TG H2 {
  color: #1d3494;
  text-align: center;
}
.cid-sO0l22q0TG H4 {
  color: #1d3494;
}
.cid-sO0l22q0TG P {
  color: #6d7a8c;
  text-align: left;
}
.cid-sO0l22q0TG .mbr-section-subtitle {
  color: #6d7a8c;
  text-align: center;
}
.cid-sO0l22q0TG .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-sOFow0O3S0 {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sOFow0O3S0 .mbr-overlay {
  background: #5eeebb;
  background: linear-gradient(to right, #5eeebb, #51aafa);
}
.cid-sOFow0O3S0 .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sOFow0O3S0 .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-sOFow0O3S0 .carousel-item .wrap-img {
  text-align: center;
}
.cid-sOFow0O3S0 .carousel-item .wrap-img img {
  max-height: 150px;
  width: auto;
  max-width: 100%;
}
.cid-sOFow0O3S0 .carousel-controls {
  position: absolute;
  width: 100%;
  top: 0;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.cid-sOFow0O3S0 .carousel-controls .carousel-control {
  z-index: 2;
  background: transparent;
  position: static;
  width: 40px;
  height: 40px;
  margin-top: 1.4rem;
  color: #232323;
  font-weight: bold;
}
.cid-sOFow0O3S0 .carousel-controls .carousel-control.carousel-control-prev {
  left: auto;
  margin-right: 20px;
  margin-left: 0;
}
.cid-sOFow0O3S0 .carousel-controls .carousel-control.carousel-control-next {
  right: auto;
  margin-right: 0;
}
.cid-sOFow0O3S0 .carousel-controls .carousel-control .mbr-iconfont {
  font-size: 1.2rem;
  font-weight: bold;
}
.cid-sOFow0O3S0 .cloneditem-1,
.cid-sOFow0O3S0 .cloneditem-2,
.cid-sOFow0O3S0 .cloneditem-3,
.cid-sOFow0O3S0 .cloneditem-4,
.cid-sOFow0O3S0 .cloneditem-5 {
  display: none;
}
.cid-sOFow0O3S0 .col-lg-15 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  -webkit-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  position: relative;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px;
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sOFow0O3S0 .col-lg-15 {
    -ms-flex: 0 0 20%;
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    width: 20%;
  }
  .cid-sOFow0O3S0 .carousel-inner {
    z-index: 1;
  }
  .cid-sOFow0O3S0 .carousel-inner.slides2 > .carousel-item.active.carousel-item-right,
  .cid-sOFow0O3S0 .carousel-inner.slides2 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);
  }
  .cid-sOFow0O3S0 .carousel-inner.slides2 > .carousel-item.active.carousel-item-left,
  .cid-sOFow0O3S0 .carousel-inner.slides2 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
  .cid-sOFow0O3S0 .carousel-inner.slides2 > .carousel-item.carousel-item-left,
  .cid-sOFow0O3S0 .carousel-inner.slides2 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-sOFow0O3S0 .carousel-inner.slides2 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-sOFow0O3S0 .carousel-inner.slides2 .cloneditem-1,
  .cid-sOFow0O3S0 .carousel-inner.slides2 .cloneditem-2,
  .cid-sOFow0O3S0 .carousel-inner.slides2 .cloneditem-3 {
    display: block;
  }
  .cid-sOFow0O3S0 .carousel-inner.slides3 > .carousel-item.active.carousel-item-right,
  .cid-sOFow0O3S0 .carousel-inner.slides3 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(33.333333%, 0, 0);
    transform: translate3d(33.333333%, 0, 0);
  }
  .cid-sOFow0O3S0 .carousel-inner.slides3 > .carousel-item.active.carousel-item-left,
  .cid-sOFow0O3S0 .carousel-inner.slides3 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-33.333333%, 0, 0);
    transform: translate3d(-33.333333%, 0, 0);
  }
  .cid-sOFow0O3S0 .carousel-inner.slides3 > .carousel-item.carousel-item-left,
  .cid-sOFow0O3S0 .carousel-inner.slides3 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-sOFow0O3S0 .carousel-inner.slides3 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-sOFow0O3S0 .carousel-inner.slides3 .cloneditem-1,
  .cid-sOFow0O3S0 .carousel-inner.slides3 .cloneditem-2,
  .cid-sOFow0O3S0 .carousel-inner.slides3 .cloneditem-3 {
    display: block;
  }
  .cid-sOFow0O3S0 .carousel-inner.slides4 > .carousel-item.active.carousel-item-right,
  .cid-sOFow0O3S0 .carousel-inner.slides4 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(25%, 0, 0);
    transform: translate3d(25%, 0, 0);
  }
  .cid-sOFow0O3S0 .carousel-inner.slides4 > .carousel-item.active.carousel-item-left,
  .cid-sOFow0O3S0 .carousel-inner.slides4 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-25%, 0, 0);
    transform: translate3d(-25%, 0, 0);
  }
  .cid-sOFow0O3S0 .carousel-inner.slides4 > .carousel-item.carousel-item-left,
  .cid-sOFow0O3S0 .carousel-inner.slides4 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-sOFow0O3S0 .carousel-inner.slides4 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-sOFow0O3S0 .carousel-inner.slides4 .cloneditem-1,
  .cid-sOFow0O3S0 .carousel-inner.slides4 .cloneditem-2,
  .cid-sOFow0O3S0 .carousel-inner.slides4 .cloneditem-3 {
    display: block;
  }
  .cid-sOFow0O3S0 .carousel-inner.slides5 > .carousel-item.active.carousel-item-right,
  .cid-sOFow0O3S0 .carousel-inner.slides5 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0);
  }
  .cid-sOFow0O3S0 .carousel-inner.slides5 > .carousel-item.active.carousel-item-left,
  .cid-sOFow0O3S0 .carousel-inner.slides5 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-20%, 0, 0);
    transform: translate3d(-20%, 0, 0);
  }
  .cid-sOFow0O3S0 .carousel-inner.slides5 > .carousel-item.carousel-item-left,
  .cid-sOFow0O3S0 .carousel-inner.slides5 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-sOFow0O3S0 .carousel-inner.slides5 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-sOFow0O3S0 .carousel-inner.slides5 .cloneditem-1,
  .cid-sOFow0O3S0 .carousel-inner.slides5 .cloneditem-2,
  .cid-sOFow0O3S0 .carousel-inner.slides5 .cloneditem-3,
  .cid-sOFow0O3S0 .carousel-inner.slides5 .cloneditem-4 {
    display: block;
  }
  .cid-sOFow0O3S0 .carousel-inner.slides6 > .carousel-item.active.carousel-item-right,
  .cid-sOFow0O3S0 .carousel-inner.slides6 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(16.666667%, 0, 0);
    transform: translate3d(16.666667%, 0, 0);
  }
  .cid-sOFow0O3S0 .carousel-inner.slides6 > .carousel-item.active.carousel-item-left,
  .cid-sOFow0O3S0 .carousel-inner.slides6 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-16.666667%, 0, 0);
    transform: translate3d(-16.666667%, 0, 0);
  }
  .cid-sOFow0O3S0 .carousel-inner.slides6 > .carousel-item.carousel-item-left,
  .cid-sOFow0O3S0 .carousel-inner.slides6 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-sOFow0O3S0 .carousel-inner.slides6 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-sOFow0O3S0 .carousel-inner.slides6 .cloneditem-1,
  .cid-sOFow0O3S0 .carousel-inner.slides6 .cloneditem-2,
  .cid-sOFow0O3S0 .carousel-inner.slides6 .cloneditem-3,
  .cid-sOFow0O3S0 .carousel-inner.slides6 .cloneditem-4,
  .cid-sOFow0O3S0 .carousel-inner.slides6 .cloneditem-5 {
    display: block;
  }
}
.cid-sOFow0O3S0 .mbr-section-title {
  color: #1d3494;
}
.cid-sOFow0O3S0 .mbr-section-subtitle {
  color: #6d7a8c;
}
.cid-sOFbzilI4B {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sOFbzilI4B .mbr-section-subtitle {
  color: #344cf1;
  margin-bottom: 10px;
  font-weight: 800;
}
.cid-sOFbzilI4B .mbr-section-subtitle.display-4 {
  font-size: 13px;
  letter-spacing: 2px;
  line-height: 24px;
}
.cid-sOFbzilI4B .mbr-section-title {
  margin-bottom: 20px;
  line-height: 48px;
  letter-spacing: -0.5px;
  font-weight: 700;
  color: #1d3494;
}
.cid-sOFbzilI4B .mbr-section-text {
  margin-top: 20px;
  color: #6d7a8c;
}
.cid-sOFbzilI4B .mbr-section-text.display-7 {
  line-height: 28px;
  letter-spacing: 0;
}
.cid-sOFbzilI4B .card .card-wrapper {
  overflow: hidden;
  height: 100%;
  color: #232323;
  padding: 0;
  position: relative;
  border-radius: 25px;
  box-shadow: 0 0.75rem 1.5rem #12263f08;
  border: 1px solid #EFF2F7;
}
.cid-sOFbzilI4B .card .card-wrapper img {
  height: 270px;
  width: 100%;
  object-fit: cover;
}
.cid-sOFbzilI4B .card .card-wrapper .card-box {
  opacity: 1;
  background: #ffffff;
  position: absolute;
  width: 100%;
  text-align: center;
  padding: 13.5px 15px;
  bottom: 0;
  left: 0;
  border-radius: 4px;
}
.cid-sOFbzilI4B .card .card-wrapper .card-box .card-title {
  color: #ffffff;
  margin: 0;
  text-align: center;
  line-height: 20px;
  letter-spacing: 0;
}
.cid-sOFbzilI4B .card .card-wrapper .card-box .card-title .mbr-iconfont {
  margin-right: 10px;
  font-size: 1.5rem;
}
.cid-sOFbzilI4B .card .card-wrapper .card-box .card-title {
  color: #1d3494;
}
.cid-sO0nAPnGRz {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sO0nAPnGRz .top-part {
  margin-bottom: 20px;
}
.cid-sO0nAPnGRz .top-part .mbr-section-subtitle {
  color: #344cf1;
  font-weight: 800;
}
.cid-sO0nAPnGRz .top-part .mbr-section-subtitle.display-4 {
  font-size: 13px;
  line-height: 24px;
  letter-spacing: 2px;
}
.cid-sO0nAPnGRz .top-part .mbr-section-title {
  color: #1d3494;
  font-weight: 700;
}
.cid-sO0nAPnGRz .top-part .mbr-section-title.display-2 {
  line-height: 48px;
  letter-spacing: -0.5px;
}
.cid-sO0nAPnGRz .nav-tabs .nav-item.open .nav-link:focus,
.cid-sO0nAPnGRz .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-sO0nAPnGRz .nav-tabs {
  flex-wrap: wrap;
  justify-content: space-around;
}
.cid-sO0nAPnGRz .nav-tabs .nav-item {
  padding: 0rem;
}
.cid-sO0nAPnGRz .nav-tabs .nav-link.display-7 {
  font-size: 16px !important;
  line-height: 1.5;
}
.cid-sO0nAPnGRz .nav-link {
  padding: 0.4rem 0.8rem;
}
.cid-sO0nAPnGRz .nav-tabs .nav-link {
  color: #6d7a8c;
  font-weight: 700;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: transparent;
  border: none;
  border-radius: 0 !important;
  border-bottom: 2px solid transparent;
}
.cid-sO0nAPnGRz .nav-tabs .nav-link:hover {
  cursor: pointer;
}
.cid-sO0nAPnGRz .nav-tabs .nav-link.active {
  border-bottom: 2px solid #4f87fb;
  color: #28303f;
}
.cid-sO0nAPnGRz .nav-tabs .nav-link.active span {
  color: #4f87fb;
}
.cid-sO0nAPnGRz .nav-tabs .nav-link span {
  margin-right: 14px;
  font-size: 1.525rem;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .cid-sO0nAPnGRz .nav-tabs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-sO0nAPnGRz .mbr-text,
  .cid-sO0nAPnGRz .nav-link {
    text-align: left;
  }
  .cid-sO0nAPnGRz .nav-link {
    padding: 14px 20px;
    padding-left: 0;
  }
  .cid-sO0nAPnGRz .mbr-section-title,
  .cid-sO0nAPnGRz .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-sO0nAPnGRz .tab-content {
  margin-top: 44px;
}
.cid-sO0nAPnGRz .tab-content .tab-pane img {
  width: 100%;
  border-radius: 25px;
  box-shadow: 0 0.75rem 1.5rem #12263f08;
  border: 1px solid #EFF2F7;
}
.cid-sO0nAPnGRz .tab-content .tab-pane .mbr-section-title {
  text-align: left;
  color: #1d3494;
  font-weight: 700;
}
.cid-sO0nAPnGRz .tab-content .tab-pane .mbr-section-title.display-5 {
  font-size: 24px;
  line-height: 28px;
  letter-spacing: -0.5px;
}
.cid-sO0nAPnGRz .tab-content .tab-pane .mbr-text {
  color: #6d7a8c;
}
.cid-sO0nAPnGRz .tab-content .tab-pane .mbr-text.display-7 {
  line-height: 1.5;
  font-size: 1em;
}
.cid-sO0nAPnGRz .tab-content .tab-pane .mbr-list {
  margin-top: 35px;
}
.cid-sO0nAPnGRz .tab-content .tab-pane .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-sO0nAPnGRz .tab-content .tab-pane .mbr-list .list li {
  margin-bottom: 1rem;
  list-style: ✓;
}
.cid-sO0nAPnGRz .tab-content .tab-pane .mbr-list.display-4 {
  font-size: 1em;
  color: #6d7a8c;
}
.cid-sO0nAPnGRz .top-part .mbr-section-title {
  text-align: center;
}
.cid-sO0nAPnGRz .top-part .mbr-section-subtitle {
  text-align: center;
}
.cid-sOFYzRm1BN {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sOFYzRm1BN img {
  width: 15%;
}
.cid-sOFYzRm1BN .wrap {
  display: none;
}
.cid-sOFYzRm1BN .card {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.cid-sOFYzRm1BN .card-box {
  width: 100%;
}
.cid-sOFYzRm1BN .card-img {
  padding: 1rem;
  height: 120px;
  width: 120px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: flex;
  background-color: #ffffff;
  border-radius: 50%;
}
.cid-sOFYzRm1BN .card-img span {
  color: #1d3494;
  font-size: 3.5rem;
}
.cid-sOFYzRm1BN .mbr-text {
  color: #767676;
}
.cid-sOFYzRm1BN p {
  margin: 0;
}
@media (max-width: 576px) {
  .cid-sOFYzRm1BN .card {
    margin-bottom: 2rem;
  }
}
.cid-sOFYzRm1BN .card-title,
.cid-sOFYzRm1BN .card-img {
  color: #1d3494;
  text-align: center;
}
.cid-sOFYzRm1BN .mbr-section-title {
  text-align: center;
}
.cid-sOFYzRm1BN .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sOFYzRm1BN .mbr-section-title,
.cid-sOFYzRm1BN .line-wrap {
  text-align: center;
  color: #1d3494;
}
.cid-sOFYzRm1BN .mbr-text,
.cid-sOFYzRm1BN .line-wrap2 {
  text-align: center;
  color: #6d7a8c;
}
.cid-sOFYzRm1BN img {
  vertical-align: middle;
  display: inline-block;
}
.cid-sOFYzRm1BN .wrap {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}
.cid-sOFYzRm1BN .image-1 {
  position: absolute;
  left: -455px;
  bottom: 107px;
  -webkit-transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  will-change: transform;
}
.cid-sOFYzRm1BN .image-2 {
  position: absolute;
  left: 517px;
  top: 35px;
  -webkit-transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  will-change: transform;
}
.cid-sOFYzRm1BN .image-3 {
  position: absolute;
  left: 1189px;
  bottom: -1px;
  -webkit-transition: all 1.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 1.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  will-change: transform;
}
.cid-sOFYzRm1BN .image-4 {
  position: absolute;
  left: auto;
  right: 1109px;
  bottom: -112px;
  -webkit-transition: all 1.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 1.6s cubic-bezier(0.19, 1, 0.22, 1);
  will-change: transform;
}
.cid-sOFYzRm1BN .image-5 {
  position: absolute;
  left: 707px;
  top: -65px;
  -webkit-transition: all 1.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 1.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  will-change: transform;
}
.cid-sOFYzRm1BN .image-6 {
  position: absolute;
  left: -155px;
  top: 40px;
  -webkit-transition: all 2s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 2s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
}
@media (max-width: 1199px) {
  .cid-sOFYzRm1BN .image-1 {
    left: -175px;
    bottom: 349px;
  }
  .cid-sOFYzRm1BN .image-2 {
    left: 677px;
    top: -475px;
  }
  .cid-sOFYzRm1BN .image-3 {
    left: 469px;
    bottom: -61px;
  }
  .cid-sOFYzRm1BN .image-4 {
    right: 99px;
    bottom: -192px;
  }
  .cid-sOFYzRm1BN .image-5 {
    left: 7px;
    top: -45px;
  }
  .cid-sOFYzRm1BN .image-6 {
    left: 215px;
    top: -460px;
  }
}
@media (max-width: 992px) {
  .cid-sOFYzRm1BN .image-1 {
    bottom: 287px;
    left: -285px;
  }
  .cid-sOFYzRm1BN .image-2 {
    top: -385px;
    left: 807px;
  }
  .cid-sOFYzRm1BN .image-3 {
    left: -98px;
    bottom: 139px;
  }
  .cid-sOFYzRm1BN .image-4 {
    right: 49px;
    bottom: -102px;
  }
  .cid-sOFYzRm1BN .image-5 {
    left: 207px;
    top: -45px;
  }
  .cid-sOFYzRm1BN .image-6 {
    left: -165px;
    top: 40px;
  }
}
@media (max-width: 767px) {
  .cid-sOFYzRm1BN .image-1 {
    left: -185px;
    bottom: 937px;
  }
  .cid-sOFYzRm1BN .image-2 {
    top: -685px;
    left: 477px;
  }
  .cid-sOFYzRm1BN .image-3 {
    left: -41px;
    bottom: 539px;
  }
  .cid-sOFYzRm1BN .image-4 {
    bottom: 288px;
    right: 99px;
  }
  .cid-sOFYzRm1BN .image-5 {
    left: -93px;
    top: -245px;
  }
  .cid-sOFYzRm1BN .image-6 {
    left: 205px;
    top: -80px;
  }
}
.cid-sOHy98APJf {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sOHy98APJf .contents {
  margin-bottom: 70px;
}
.cid-sOHy98APJf .contents .mbr-subtitle {
  color: #344cf1;
  margin-bottom: 10px;
  font-weight: 800;
}
.cid-sOHy98APJf .contents .mbr-subtitle.display-4 {
  letter-spacing: 2px;
  line-height: 24px;
  font-size: 13px;
}
.cid-sOHy98APJf .contents .mbr-section-title {
  margin-bottom: 20px;
  color: #1d3494;
  font-weight: 700;
}
.cid-sOHy98APJf .contents .mbr-section-title.display-2 {
  line-height: 48px;
  letter-spacing: -0.5px;
}
.cid-sOHy98APJf .contents .mbr-section-text {
  margin-top: 20px;
  color: #6d7a8c;
  font-weight: 400;
}
.cid-sOHy98APJf .contents .mbr-section-text.display-7 {
  line-height: 28px;
  letter-spacing: 0;
}
.cid-sOHy98APJf .card {
  margin-bottom: 2rem;
}
.cid-sOHy98APJf .card-block {
  font-weight: 400;
  letter-spacing: 0.03em;
  position: relative;
  background: #f5f7fa;
  color: #232323;
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.08);
  padding: 1.9rem;
  margin-bottom: 35px;
  border-radius: 4px;
}
.cid-sOHy98APJf .card-block.display-7 {
  font-size: 16px;
  line-height: 26px;
}
.cid-sOHy98APJf .card-block:before {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  margin-left: -14px;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-top: 15px solid #f5f7fa;
  border-right: 15px solid transparent;
}
.cid-sOHy98APJf .mbr-author-img {
  width: 50px;
  height: 50px;
  display: inline-block;
  border-radius: 100%;
  margin-left: 0rem;
}
.cid-sOHy98APJf .mbr-author-img img {
  width: 100%;
  border-radius: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-sOHy98APJf .name-wrap {
  display: inline-block;
}
.cid-sOHy98APJf .card-footer {
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  border-top: none;
  background: none;
  padding: 0 1.25rem 1.25rem 1.25rem;
}
.cid-sOHy98APJf .mbr-author-desc {
  color: #767676;
  text-align: center;
}
.cid-sOHy98APJf .card-block p {
  color: #ffffff;
  text-align: center;
}
.cid-sOHy98APJf .mbr-author-name {
  color: #1d3494;
  margin-bottom: 5px;
}
.cid-sOHy98APJf .mbr-section-title,
.cid-sOHy98APJf .title div {
  color: #232323;
  text-align: center;
}
.cid-sOHy98APJf .card-block P {
  color: #1d3494;
}
.cid-sNZ1cdtIIW {
  padding-top: 15px;
  padding-bottom: 0px;
  position: relative;
  background-color: #ffffff;
}
.cid-sNZ1cdtIIW .title-text {
  margin-bottom: 20px;
}
.cid-sNZ1cdtIIW .title-text .mbr-section-subtitle {
  color: #344cf1;
  font-weight: 800;
}
.cid-sNZ1cdtIIW .title-text .mbr-section-subtitle.display-4 {
  font-size: 13px;
  line-height: 24px;
  letter-spacing: 2px;
}
.cid-sNZ1cdtIIW .title-text .mbr-section-title {
  color: #1d3494;
}
.cid-sNZ1cdtIIW .title-text .mbr-section-title span {
  font-weight: 900;
}
.cid-sNZ1cdtIIW .title-text .mbr-section-title.display-2 {
  line-height: 48px;
  letter-spacing: -0.5px;
}
.cid-sNZ1cdtIIW .mbr-iconfont {
  font-family: "Moririse2" !important;
  display: inline-flex;
  -webkit-transform-origin: ;
  transform-origin: ;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 0 !important;
  font-size: 1.4rem !important;
  color: #4f87fb;
}
.cid-sNZ1cdtIIW .mbr-iconfont:before {
  -webkit-transform: scaleY(0) !important;
  transform: scaleY(0) !important;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.cid-sNZ1cdtIIW .p-4 {
  padding: 1rem 0 !important;
}
.cid-sNZ1cdtIIW .accordion .card .card-header {
  margin-bottom: 0px;
}
.cid-sNZ1cdtIIW .mbri-arrow-down:before {
  content: "\e960";
}
.cid-sNZ1cdtIIW .mbri-arrow-up:before {
  content: "\e960";
}
.cid-sNZ1cdtIIW .collapsed .mbr-iconfont {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
.cid-sNZ1cdtIIW .collapsed .mbr-iconfont:before {
  -webkit-transform: scaleY(1) !important;
  transform: scaleY(1) !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-sNZ1cdtIIW .card {
  border-radius: 0px;
  border-bottom: 2px solid #efefef !important;
}
.cid-sNZ1cdtIIW .card:last-child {
  border-bottom: none !important;
}
.cid-sNZ1cdtIIW .card .card-header {
  border-radius: 0px;
  border: 0px;
  background-color: transparent;
  padding: 0;
}
.cid-sNZ1cdtIIW .card .card-header h4 {
  -webkit-box-pack: start;
  justify-content: flex-start;
  width: 100%;
}
.cid-sNZ1cdtIIW .card .card-header a.panel-title {
  margin-bottom: 0;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
  justify-content: space-between;
}
.cid-sNZ1cdtIIW .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-sNZ1cdtIIW .card .card-header a.panel-title h4 {
  padding: 1.2rem 0rem;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.5px;
  color: #28303f;
}
.cid-sNZ1cdtIIW .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
  line-height: 1.6 !important;
}
.cid-sNZ1cdtIIW .card .card-header a.panel-title .toggle-icon {
  right: 7px;
  position: absolute;
  top: 36px;
  -webkit-transform: none;
  transform: none;
  display: inline-block;
  height: 2px;
  margin-left: 0;
  width: 12px;
}
.cid-sNZ1cdtIIW .card .card-header a.panel-title .toggle-icon:before,
.cid-sNZ1cdtIIW .card .card-header a.panel-title .toggle-icon:after {
  background: currentColor;
  border: 0;
  box-sizing: border-box;
  content: "";
  display: block;
  left: 50%;
  position: absolute;
  top: 50%;
}
.cid-sNZ1cdtIIW .card .card-header a.panel-title .toggle-icon:before {
  height: 12px;
  margin-left: -1px !important;
  width: 2px;
  margin-top: -6px;
  background-color: currentColor;
  border: 0;
  -webkit-transform: none;
  transform: none;
}
.cid-sNZ1cdtIIW .card .card-header a.panel-title .toggle-icon:after {
  height: 2px;
  width: 12px;
  margin-left: -6px;
  margin-top: -1px;
}
.cid-sNZ1cdtIIW .card .panel-body {
  padding: 14px 20px;
}
.cid-sNZ1cdtIIW .card .panel-body p {
  color: #6d7a8c;
  line-height: 1.5;
}
.cid-sNZ1cdtIIW .card .panel-body .display-4 {
  font-size: 16px;
}
.cid-sNZ1cdtIIW .title-text .mbr-text {
  color: #6d7a8c;
}
.cid-v13GExm8no {
  padding-top: 15px;
  padding-bottom: 0px;
  position: relative;
  background-color: #ffffff;
}
.cid-v13GExm8no .title-text {
  margin-bottom: 20px;
}
.cid-v13GExm8no .title-text .mbr-section-subtitle {
  color: #344cf1;
  font-weight: 800;
}
.cid-v13GExm8no .title-text .mbr-section-subtitle.display-4 {
  font-size: 13px;
  line-height: 24px;
  letter-spacing: 2px;
}
.cid-v13GExm8no .title-text .mbr-section-title {
  color: #1d3494;
}
.cid-v13GExm8no .title-text .mbr-section-title span {
  font-weight: 900;
}
.cid-v13GExm8no .title-text .mbr-section-title.display-2 {
  line-height: 48px;
  letter-spacing: -0.5px;
}
.cid-v13GExm8no .mbr-iconfont {
  font-family: "Moririse2" !important;
  display: inline-flex;
  -webkit-transform-origin: ;
  transform-origin: ;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 0 !important;
  font-size: 1.4rem !important;
  color: #4f87fb;
}
.cid-v13GExm8no .mbr-iconfont:before {
  -webkit-transform: scaleY(0) !important;
  transform: scaleY(0) !important;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.cid-v13GExm8no .p-4 {
  padding: 1rem 0 !important;
}
.cid-v13GExm8no .accordion .card .card-header {
  margin-bottom: 0px;
}
.cid-v13GExm8no .mbri-arrow-down:before {
  content: "\e960";
}
.cid-v13GExm8no .mbri-arrow-up:before {
  content: "\e960";
}
.cid-v13GExm8no .collapsed .mbr-iconfont {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
.cid-v13GExm8no .collapsed .mbr-iconfont:before {
  -webkit-transform: scaleY(1) !important;
  transform: scaleY(1) !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-v13GExm8no .card {
  border-radius: 0px;
  border-bottom: 2px solid #efefef !important;
}
.cid-v13GExm8no .card:last-child {
  border-bottom: none !important;
}
.cid-v13GExm8no .card .card-header {
  border-radius: 0px;
  border: 0px;
  background-color: transparent;
  padding: 0;
}
.cid-v13GExm8no .card .card-header h4 {
  -webkit-box-pack: start;
  justify-content: flex-start;
  width: 100%;
}
.cid-v13GExm8no .card .card-header a.panel-title {
  margin-bottom: 0;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
  justify-content: space-between;
}
.cid-v13GExm8no .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-v13GExm8no .card .card-header a.panel-title h4 {
  padding: 1.2rem 0rem;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.5px;
  color: #28303f;
}
.cid-v13GExm8no .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
  line-height: 1.6 !important;
}
.cid-v13GExm8no .card .card-header a.panel-title .toggle-icon {
  right: 7px;
  position: absolute;
  top: 36px;
  -webkit-transform: none;
  transform: none;
  display: inline-block;
  height: 2px;
  margin-left: 0;
  width: 12px;
}
.cid-v13GExm8no .card .card-header a.panel-title .toggle-icon:before,
.cid-v13GExm8no .card .card-header a.panel-title .toggle-icon:after {
  background: currentColor;
  border: 0;
  box-sizing: border-box;
  content: "";
  display: block;
  left: 50%;
  position: absolute;
  top: 50%;
}
.cid-v13GExm8no .card .card-header a.panel-title .toggle-icon:before {
  height: 12px;
  margin-left: -1px !important;
  width: 2px;
  margin-top: -6px;
  background-color: currentColor;
  border: 0;
  -webkit-transform: none;
  transform: none;
}
.cid-v13GExm8no .card .card-header a.panel-title .toggle-icon:after {
  height: 2px;
  width: 12px;
  margin-left: -6px;
  margin-top: -1px;
}
.cid-v13GExm8no .card .panel-body {
  padding: 14px 20px;
}
.cid-v13GExm8no .card .panel-body p {
  color: #6d7a8c;
  line-height: 1.5;
}
.cid-v13GExm8no .card .panel-body .display-4 {
  font-size: 16px;
}
.cid-v13GExm8no .title-text .mbr-text {
  color: #6d7a8c;
}
.cid-sO7X0MRbXA {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sO7X0MRbXA .mbr-section-title {
  margin: 0;
  padding: 15px 0;
  color: #1d3494;
}
.cid-sO5w0rtr5W {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sO5w0rtr5W .content {
    text-align: center;
  }
  .cid-sO5w0rtr5W .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sO5w0rtr5W .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-sO5w0rtr5W .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sO5w0rtr5W .media-wrap img {
  height: 6rem;
}
.cid-sO5w0rtr5W .mbr-text {
  color: #8d97ad;
}
.cid-sO5w0rtr5W .p-title {
  font-size: 17px;
}
.cid-sO5w0rtr5W .p-title span {
  color: #111111;
}
.cid-sO5w0rtr5W .title-card {
  font-size: 1.3rem;
}
.cid-sO5w0rtr5W .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-sO5w0rtr5W .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-sO5w0rtr5W .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-sO5w0rtr5W .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-sO5w0rtr5W .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-sO5w0rtr5W .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sO5w0rtr5W .copyright img {
  margin-right: 10px;
}
.cid-sO5w0rtr5W .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #1d3494;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-sO5w0rtr5W .icon-transition span:hover {
  background-color: #1d3494;
}
@media (max-width: 767px) {
  .cid-sO5w0rtr5W .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sO5w0rtr5W .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-sO5w0rtr5W .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sO5w0rtr5W H5 {
  color: #1d3494;
}
.cid-sO5w0rtr5W .p-title,
.cid-sO5w0rtr5W .social-media {
  color: #333333;
}
.cid-sO5w0rtr5W .copyright > p {
  color: #f5f7fa;
}
