body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
}
.display-7 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.4rem;
}
/* ---- 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.7rem;
    font-size: calc( 0.95625rem + (0.875 - 0.95625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.95625rem + (0.875 - 0.95625) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((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: #4284df !important;
}
.bg-success {
  background-color: #9473d2 !important;
}
.bg-info {
  background-color: #7237a2 !important;
}
.bg-warning {
  background-color: #f8f9c4 !important;
}
.bg-danger {
  background-color: #a2a2a2 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #4284df !important;
  border-color: #4284df !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #4284df !important;
  border-color: #4284df !important;
}
.btn-primary:before {
  background-color: #1f5eb6 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #1f5eb6 !important;
  border-color: #1f5eb6 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #f27d7a !important;
  border-color: #f27d7a !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #f27d7a !important;
  border-color: #f27d7a !important;
}
.btn-secondary:before {
  background-color: #eb3934 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #eb3934 !important;
  border-color: #eb3934 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #7237a2 !important;
  border-color: #7237a2 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #7237a2 !important;
  border-color: #7237a2 !important;
}
.btn-info:before {
  background-color: #4a2469 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #4a2469 !important;
  border-color: #4a2469 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #9473d2 !important;
  border-color: #9473d2 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #9473d2 !important;
  border-color: #9473d2 !important;
}
.btn-success:before {
  background-color: #693cbc !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #693cbc !important;
  border-color: #693cbc !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #f8f9c4 !important;
  border-color: #f8f9c4 !important;
  color: #aaac12 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #aaac12 !important;
  background-color: #f8f9c4 !important;
  border-color: #f8f9c4 !important;
}
.btn-warning:before {
  background-color: #f0f27f !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #aaac12 !important;
  background-color: #f0f27f !important;
  border-color: #f0f27f !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #a2a2a2 !important;
  border-color: #a2a2a2 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #a2a2a2 !important;
  border-color: #a2a2a2 !important;
}
.btn-danger:before {
  background-color: #7c7c7c !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #7c7c7c !important;
  border-color: #7c7c7c !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: #1b53a0;
  color: #1b53a0;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff;
  border-color: #4284df;
}
.btn-primary-outline:before {
  background-color: #4284df;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #4284df !important;
  border-color: #4284df !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #e9221d;
  color: #e9221d;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff;
  border-color: #f27d7a;
}
.btn-secondary-outline:before {
  background-color: #f27d7a;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #f27d7a !important;
  border-color: #f27d7a !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #3c1d56;
  color: #3c1d56;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff;
  border-color: #7237a2;
}
.btn-info-outline:before {
  background-color: #7237a2;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #7237a2 !important;
  border-color: #7237a2 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #5e36a9;
  color: #5e36a9;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff;
  border-color: #9473d2;
}
.btn-success-outline:before {
  background-color: #9473d2;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #9473d2 !important;
  border-color: #9473d2 !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #edf067;
  color: #edf067;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #aaac12;
  border-color: #f8f9c4;
}
.btn-warning-outline:before {
  background-color: #f8f9c4;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #f8f9c4 !important;
  border-color: #f8f9c4 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #6f6f6f;
  color: #6f6f6f;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff;
  border-color: #a2a2a2;
}
.btn-danger-outline:before {
  background-color: #a2a2a2;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #a2a2a2 !important;
  border-color: #a2a2a2 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff;
  border-color: #333333;
}
.btn-black-outline:before {
  background-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  border-color: #ffffff;
}
.btn-white-outline:before {
  background-color: #ffffff;
}
.btn-bgr {
  position: relative;
  transition: border 0.3s ease-in-out, color 0.5s;
  -webkit-mask-image: -webkit-radial-gradient(circle, white, black);
}
.btn-bgr span {
  position: relative;
  z-index: 12;
}
.btn-bgr:before {
  content: ' ';
  position: absolute;
  top: -2px;
  left: -2px;
  right: 105%;
  bottom: -2px;
  transition: right 0.3s ease-in-out;
  z-index: -1;
}
.btn-bgr:hover:before {
  right: -2px;
}
.btn-underline {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: color 0.2s ease-out;
}
.btn-underline:before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #4284df;
  -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: #4284df !important;
}
.text-secondary {
  color: #f27d7a !important;
}
.text-success {
  color: #9473d2 !important;
}
.text-info {
  color: #7237a2 !important;
}
.text-warning {
  color: #f8f9c4 !important;
}
.text-danger {
  color: #a2a2a2 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #1b53a0 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #e9221d !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #5e36a9 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #3c1d56 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #edf067 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #6f6f6f !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: #7237a2;
}
.alert-warning {
  background-color: #f8f9c4;
}
.alert-danger {
  background-color: #a2a2a2;
}
.mbr-gallery-filter li.active .btn {
  background-color: #4284df;
  border-color: #4284df;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #4284df;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #f0f6fd;
}
.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: #b083d5;
}
.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: #e2e2e2;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
blockquote {
  border-color: #4284df;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #4284df;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #4284df;
}
/*Menu*/
.display-1 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-2 > .mbr-iconfont {
  font-size: 3.2rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.4rem;
}
.display-5 > .mbr-iconfont {
  font-size: 2.4rem;
}
.display-7 > .mbr-iconfont {
  font-size: 2.24rem;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #4284df;
  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: #4284df;
  border-bottom-color: #4284df;
}
.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: #4284df !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #f27d7a !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='%234284df' %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-tniNo2jd7g .nav-item:focus,
.cid-tniNo2jd7g .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tniNo2jd7g .nav-item {
    position: relative;
  }
}
.cid-tniNo2jd7g .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: #4284df;
}
.cid-tniNo2jd7g .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #4284df;
}
.cid-tniNo2jd7g .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #4284df !important;
}
.cid-tniNo2jd7g .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-tniNo2jd7g .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-tniNo2jd7g .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-tniNo2jd7g .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tniNo2jd7g .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tniNo2jd7g .navbar.collapsed .navbar-collapse.show,
.cid-tniNo2jd7g .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tniNo2jd7g .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-tniNo2jd7g .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-tniNo2jd7g .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tniNo2jd7g .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tniNo2jd7g .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-tniNo2jd7g .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tniNo2jd7g .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-tniNo2jd7g .navbar.collapsed .right-menu,
.cid-tniNo2jd7g .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-tniNo2jd7g .navbar .navbar-collapse.show,
  .cid-tniNo2jd7g .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-tniNo2jd7g .navbar .navbar-collapse.show .brand-container,
  .cid-tniNo2jd7g .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-tniNo2jd7g .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tniNo2jd7g .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tniNo2jd7g .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tniNo2jd7g .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tniNo2jd7g .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-tniNo2jd7g .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tniNo2jd7g .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-tniNo2jd7g .navbar .right-menu,
  .cid-tniNo2jd7g .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-tniNo2jd7g .navbar.navbar-short {
  min-height: 60px;
}
.cid-tniNo2jd7g .navbar.navbar-short .mbr-overlay {
  background: #4284df !important;
}
.cid-tniNo2jd7g .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tniNo2jd7g .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-tniNo2jd7g .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-tniNo2jd7g .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-tniNo2jd7g .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tniNo2jd7g .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tniNo2jd7g .dropdown-item.active,
.cid-tniNo2jd7g .dropdown-item:active {
  background-color: transparent;
}
.cid-tniNo2jd7g .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tniNo2jd7g .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-tniNo2jd7g .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #4284df;
}
.cid-tniNo2jd7g .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tniNo2jd7g .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tniNo2jd7g ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-tniNo2jd7g ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-tniNo2jd7g .navbar-buttons {
  margin-left: auto;
}
.cid-tniNo2jd7g button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: flex-start;
  align-self: flex-start;
  outline: none;
}
.cid-tniNo2jd7g button.navbar-toggler:hover {
  outline: none;
}
.cid-tniNo2jd7g button.navbar-toggler:active {
  outline: none;
}
.cid-tniNo2jd7g button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tniNo2jd7g button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tniNo2jd7g button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tniNo2jd7g button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tniNo2jd7g button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tniNo2jd7g nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tniNo2jd7g nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-tniNo2jd7g nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-tniNo2jd7g nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tniNo2jd7g a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-tniNo2jd7g .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tniNo2jd7g .right-menu,
.cid-tniNo2jd7g .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-tniNo2jd7g .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tniNo2jd7g .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tniNo2jd7g .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tniNo2jd7g .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tniNo2jd7g .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-tniNo2jd7g .card-wrapper {
  z-index: 3;
}
.cid-tniNo2jd7g .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-tniNo2jd7g .navbar-collapse {
    padding-top: 0;
  }
}
.cid-tniNo2jd7g .nav-item:not(:last-child) {
  margin-right: 32px !important;
}
.cid-tniNo2jd7g .navbar-brand img {
  width: auto !important;
  display: inline;
}
.cid-tniNo2jd7g .navbar-dropdown .navbar-brand span {
  vertical-align: 0px;
  line-height: 1;
}
.cid-tniNo2jd7g .nav-link {
  position: relative;
  padding: 0;
  display: inline-block;
}
.cid-tniNo2jd7g .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transform: translate3d(0, 0, 0);
  transition: all 0.2s ease-in-out;
}
.cid-tniNo2jd7g .nav-link:hover .line-animation {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.cid-tniNo2jd7g .link {
  padding: 0;
  margin: 0;
}
.cid-tniNo2jd7g .dropdown-menu {
  margin-top: 0px;
}
.cid-tniNo2jd7g .navbar-caption {
  color: #ffffff;
}
.cid-tniNo2jd7g .navbar-caption:hover {
  color: #ffffff;
}
.cid-tniNo2jd7g .dropdown-item:hover {
  color: #4284df !important;
}
.cid-tniNo2jd7g .dropdown-toggle:after {
  display: none;
}
.cid-tniNo2jd7g a:hover .line-animation {
  opacity: 1;
}
.cid-tniNo2jd7g .nav-dropdown .link {
  padding: 0 !important;
}
@media (max-width: 990px) {
  .cid-tniNo2jd7g .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tniNo2jd7g .nav-dropdown .link {
    padding-top: 15px !important;
  }
}
.cid-tniHTV7hkA {
  padding-top: 90px;
  padding-bottom: 105px;
  background-color: #ffffff;
}
.cid-tniHTV7hkA .mbr-section-subtitle {
  color: #767676;
}
.cid-tniHTV7hkA .container-table {
  margin: 0 auto;
  max-width: 100%;
  overflow-x: hidden;
}
.cid-tniHTV7hkA table.dataTable thead .sorting:before,
.cid-tniHTV7hkA table.dataTable thead .sorting:after,
.cid-tniHTV7hkA table.dataTable thead .sorting_asc:before,
.cid-tniHTV7hkA table.dataTable thead .sorting_asc:after,
.cid-tniHTV7hkA table.dataTable thead .sorting_desc:before,
.cid-tniHTV7hkA table.dataTable thead .sorting_desc:after,
.cid-tniHTV7hkA table.dataTable thead .sorting_asc_disabled:before,
.cid-tniHTV7hkA table.dataTable thead .sorting_asc_disabled:after,
.cid-tniHTV7hkA table.dataTable thead .sorting_desc_disabled:before,
.cid-tniHTV7hkA table.dataTable thead .sorting_desc_disabled:after {
  bottom: 20px !important;
}
.cid-tniHTV7hkA .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-tniHTV7hkA .form-control {
  min-height: 2.5em;
  padding: 0.5em 0.5em;
}
.cid-tniHTV7hkA .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #149dcc;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-tniHTV7hkA .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-tniHTV7hkA .head-item {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  background: #6c9cdf;
  border-bottom: 1px solid #cccccc;
  text-align: center;
  color: #ffffff;
}
.cid-tniHTV7hkA .head-item:hover {
  background: #6c9cdf;
  color: inherit;
}
.cid-tniHTV7hkA .table-heads {
  color: #ffffff;
}
.cid-tniHTV7hkA .dataTables_wrapper {
  display: block;
}
.cid-tniHTV7hkA .dataTables_wrapper .search {
  margin-bottom: 0.5rem;
}
.cid-tniHTV7hkA .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-tniHTV7hkA table {
  width: 100%;
  margin-top: 6px;
  border-bottom: 1px solid #55b4d4;
  margin-bottom: 0;
}
.cid-tniHTV7hkA table td,
.cid-tniHTV7hkA table th {
  white-space: nowrap;
}
.cid-tniHTV7hkA table th {
  border-top: none;
  transition: all 0.2s;
  border-bottom: none;
}
.cid-tniHTV7hkA table th:hover {
  background: #55b4d4;
  color: #ffffff;
}
.cid-tniHTV7hkA table td {
  border-top: 1px solid #55b4d4;
}
.cid-tniHTV7hkA .dataTables_filter {
  text-align: right;
  margin-bottom: 0.5rem;
}
.cid-tniHTV7hkA .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-tniHTV7hkA .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: 0.5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-tniHTV7hkA .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  color: #f60c0c;
}
@media (max-width: 992px) {
  .cid-tniHTV7hkA .dataTables_filter {
    text-align: center;
  }
  .cid-tniHTV7hkA table {
    width: 100%;
  }
}
@media (max-width: 350px) {
  .cid-tniHTV7hkA .dataTables_filter {
    text-align: center;
  }
  .cid-tniHTV7hkA .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-tniHTV7hkA .mbr-section-title,
.cid-tniHTV7hkA .line-wrap {
  text-align: center;
  color: #4284df;
}
.cid-tniHTV7hkA .mbr-section-sub-title {
  text-align: center;
  color: #656565;
}
.cid-tniHTV7hkA .body-item {
  color: #4284df;
  text-align: center;
}
.cid-tniNo2jd7g .nav-item:focus,
.cid-tniNo2jd7g .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tniNo2jd7g .nav-item {
    position: relative;
  }
}
.cid-tniNo2jd7g .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: #4284df;
}
.cid-tniNo2jd7g .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #4284df;
}
.cid-tniNo2jd7g .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #4284df !important;
}
.cid-tniNo2jd7g .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-tniNo2jd7g .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-tniNo2jd7g .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-tniNo2jd7g .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tniNo2jd7g .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tniNo2jd7g .navbar.collapsed .navbar-collapse.show,
.cid-tniNo2jd7g .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tniNo2jd7g .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-tniNo2jd7g .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-tniNo2jd7g .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tniNo2jd7g .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tniNo2jd7g .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-tniNo2jd7g .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tniNo2jd7g .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-tniNo2jd7g .navbar.collapsed .right-menu,
.cid-tniNo2jd7g .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-tniNo2jd7g .navbar .navbar-collapse.show,
  .cid-tniNo2jd7g .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-tniNo2jd7g .navbar .navbar-collapse.show .brand-container,
  .cid-tniNo2jd7g .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-tniNo2jd7g .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tniNo2jd7g .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tniNo2jd7g .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tniNo2jd7g .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tniNo2jd7g .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-tniNo2jd7g .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tniNo2jd7g .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-tniNo2jd7g .navbar .right-menu,
  .cid-tniNo2jd7g .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-tniNo2jd7g .navbar.navbar-short {
  min-height: 60px;
}
.cid-tniNo2jd7g .navbar.navbar-short .mbr-overlay {
  background: #4284df !important;
}
.cid-tniNo2jd7g .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tniNo2jd7g .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-tniNo2jd7g .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-tniNo2jd7g .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-tniNo2jd7g .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tniNo2jd7g .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tniNo2jd7g .dropdown-item.active,
.cid-tniNo2jd7g .dropdown-item:active {
  background-color: transparent;
}
.cid-tniNo2jd7g .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tniNo2jd7g .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-tniNo2jd7g .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #4284df;
}
.cid-tniNo2jd7g .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tniNo2jd7g .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tniNo2jd7g ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-tniNo2jd7g ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-tniNo2jd7g .navbar-buttons {
  margin-left: auto;
}
.cid-tniNo2jd7g button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: flex-start;
  align-self: flex-start;
  outline: none;
}
.cid-tniNo2jd7g button.navbar-toggler:hover {
  outline: none;
}
.cid-tniNo2jd7g button.navbar-toggler:active {
  outline: none;
}
.cid-tniNo2jd7g button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tniNo2jd7g button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tniNo2jd7g button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tniNo2jd7g button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tniNo2jd7g button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tniNo2jd7g nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tniNo2jd7g nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-tniNo2jd7g nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-tniNo2jd7g nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tniNo2jd7g a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-tniNo2jd7g .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tniNo2jd7g .right-menu,
.cid-tniNo2jd7g .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-tniNo2jd7g .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tniNo2jd7g .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tniNo2jd7g .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tniNo2jd7g .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tniNo2jd7g .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-tniNo2jd7g .card-wrapper {
  z-index: 3;
}
.cid-tniNo2jd7g .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-tniNo2jd7g .navbar-collapse {
    padding-top: 0;
  }
}
.cid-tniNo2jd7g .nav-item:not(:last-child) {
  margin-right: 32px !important;
}
.cid-tniNo2jd7g .navbar-brand img {
  width: auto !important;
  display: inline;
}
.cid-tniNo2jd7g .navbar-dropdown .navbar-brand span {
  vertical-align: 0px;
  line-height: 1;
}
.cid-tniNo2jd7g .nav-link {
  position: relative;
  padding: 0;
  display: inline-block;
}
.cid-tniNo2jd7g .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transform: translate3d(0, 0, 0);
  transition: all 0.2s ease-in-out;
}
.cid-tniNo2jd7g .nav-link:hover .line-animation {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.cid-tniNo2jd7g .link {
  padding: 0;
  margin: 0;
}
.cid-tniNo2jd7g .dropdown-menu {
  margin-top: 0px;
}
.cid-tniNo2jd7g .navbar-caption {
  color: #ffffff;
}
.cid-tniNo2jd7g .navbar-caption:hover {
  color: #ffffff;
}
.cid-tniNo2jd7g .dropdown-item:hover {
  color: #4284df !important;
}
.cid-tniNo2jd7g .dropdown-toggle:after {
  display: none;
}
.cid-tniNo2jd7g a:hover .line-animation {
  opacity: 1;
}
.cid-tniNo2jd7g .nav-dropdown .link {
  padding: 0 !important;
}
@media (max-width: 990px) {
  .cid-tniNo2jd7g .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tniNo2jd7g .nav-dropdown .link {
    padding-top: 15px !important;
  }
}
.cid-uP0R4HMfEn {
  padding-top: 9rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/chatgpt-image-jun-24-2025-04-15-39-pm-1536x1024.png");
}
.cid-uP0R4HMfEn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP0R4HMfEn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP0R4HMfEn .item {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
  flex-direction: column;
}
.cid-uP0R4HMfEn .icon-box {
  margin-bottom: 1rem;
  text-align: center;
  display: inline-block;
}
.cid-uP0R4HMfEn .text-box {
  text-align: center;
}
.cid-uP0R4HMfEn span {
  font-size: 10rem;
  color: #6592e6;
  font-weight: bold;
  display: block;
}
@media (max-width: 991px) {
  .cid-uP0R4HMfEn .card {
    margin-bottom: 2rem;
  }
  .cid-uP0R4HMfEn .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uP0R4HMfEn span {
    font-size: 21vw;
  }
}
.cid-uP0R4HMfEn .item .icon-box .step-number {
  color: #6c9cdf;
}
.cid-tniLf20rnw {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #fafafa;
}
.cid-tniLf20rnw h3 {
  text-align: center;
  font-weight: 300;
  color: #0c57bf;
}
.cid-tniLf20rnw .wrap {
  width: 150px;
  height: 150px;
  margin: 0 auto;
}
.cid-tniLf20rnw .mbr-section-subtitle {
  color: #0c57bf;
}
.cid-tniLf20rnw .pie_progress__number {
  text-align: center !important;
  font-size: 1.5rem;
  font-weight: bold;
}
.cid-tniLf20rnw .card-title {
  margin-bottom: 0;
  color: #f60c0c;
}
.cid-tniLf20rnw .card {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
  word-wrap: break-word;
  transition: box-shadow 0.3s;
}
.cid-tniLf20rnw .svg-gradient {
  position: absolute;
}
.cid-tniLf20rnw ellipse {
  stroke: rgba(206, 206, 206, 0.4);
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tniLf20rnw .card {
    -webkit-flex-basis: 50%;
    flex-basis: 50%;
  }
}
.cid-tniLf20rnw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tniLf20rnw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tniLf20rnw .card-text {
  color: #4284df;
}
.cid-tniLf20rnw .mbr-section-title {
  color: #0c57bf;
}
.cid-tniLf20rnw H4 {
  color: #f60c0c;
}
.cid-tniLf20rnw .progress-bars4 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
  border-radius: 10px;
}
.cid-tniLf20rnw .pie_progress {
  transition: transform 0.4s ease;
}
.cid-tniLf20rnw .pie_progress:hover {
  transform: scale(1.05);
}
.cid-tniLf20rnw h4 {
  color: #f60c0c;
}
.cid-tniO0thHDV {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #fafafa;
}
.cid-tniO0thHDV h3 {
  text-align: center;
  font-weight: 300;
  color: #0c57bf;
}
.cid-tniO0thHDV .wrap {
  width: 150px;
  height: 150px;
  margin: 0 auto;
}
.cid-tniO0thHDV .mbr-section-subtitle {
  color: #0c57bf;
}
.cid-tniO0thHDV .pie_progress__number {
  text-align: center !important;
  font-size: 1.5rem;
  font-weight: bold;
}
.cid-tniO0thHDV .card-title {
  margin-bottom: 0;
  color: #f60c0c;
}
.cid-tniO0thHDV .card {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
  word-wrap: break-word;
  transition: box-shadow 0.3s;
}
.cid-tniO0thHDV .svg-gradient {
  position: absolute;
}
.cid-tniO0thHDV ellipse {
  stroke: rgba(206, 206, 206, 0.4);
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tniO0thHDV .card {
    -webkit-flex-basis: 50%;
    flex-basis: 50%;
  }
}
.cid-tniO0thHDV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tniO0thHDV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tniO0thHDV .card-text {
  color: #4284df;
}
.cid-tniO0thHDV .mbr-section-title {
  color: #0c57bf;
}
.cid-tniO0thHDV H4 {
  color: #f60c0c;
}
.cid-tniO0thHDV .progress-bars4 {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #f9f9f9;
  border-radius: 10px;
}
.cid-tniO0thHDV .pie_progress {
  transition: transform 0.4s ease;
}
.cid-tniO0thHDV .pie_progress:hover {
  transform: scale(1.05);
}
.cid-tniO0thHDV h4 {
  color: #f60c0c;
}
.cid-uP7c747x34 {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/chatgpt-image-jun-24-2025-04-15-39-pm-1536x1024.png");
}
.cid-uP7c747x34 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP7c747x34 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP7c747x34 .item {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
  flex-direction: column;
}
.cid-uP7c747x34 .icon-box {
  margin-bottom: 1rem;
  text-align: center;
  display: inline-block;
}
.cid-uP7c747x34 .text-box {
  text-align: center;
}
.cid-uP7c747x34 span {
  font-size: 10rem;
  color: #6592e6;
  font-weight: bold;
  display: block;
}
@media (max-width: 991px) {
  .cid-uP7c747x34 .card {
    margin-bottom: 2rem;
  }
  .cid-uP7c747x34 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uP7c747x34 span {
    font-size: 21vw;
  }
}
.cid-uP7c747x34 .item .icon-box .step-number {
  color: #6c9cdf;
}
.cid-u8LhoHiWap {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #fafafa;
}
.cid-u8LhoHiWap h3 {
  text-align: center;
  font-weight: 300;
  color: #0c57bf;
}
.cid-u8LhoHiWap .wrap {
  width: 150px;
  height: 150px;
  margin: 0 auto;
}
.cid-u8LhoHiWap .mbr-section-subtitle {
  color: #0c57bf;
}
.cid-u8LhoHiWap .pie_progress__number {
  text-align: center !important;
  font-size: 1.5rem;
  font-weight: bold;
}
.cid-u8LhoHiWap .card-title {
  margin-bottom: 0;
  color: #f60c0c;
}
.cid-u8LhoHiWap .card {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
  word-wrap: break-word;
  transition: box-shadow 0.3s;
}
.cid-u8LhoHiWap .svg-gradient {
  position: absolute;
}
.cid-u8LhoHiWap ellipse {
  stroke: rgba(206, 206, 206, 0.4);
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-u8LhoHiWap .card {
    -webkit-flex-basis: 50%;
    flex-basis: 50%;
  }
}
.cid-u8LhoHiWap .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8LhoHiWap .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u8LhoHiWap .card-text {
  color: #4284df;
}
.cid-u8LhoHiWap .mbr-section-title {
  color: #0c57bf;
}
.cid-u8LhoHiWap H4 {
  color: #f60c0c;
}
.cid-u8LhoHiWap .progress-bars4 {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #f9f9f9;
  border-radius: 10px;
}
.cid-u8LhoHiWap .pie_progress {
  transition: transform 0.4s ease;
}
.cid-u8LhoHiWap .pie_progress:hover {
  transform: scale(1.05);
}
.cid-u8LhoHiWap h4 {
  color: #f60c0c;
}
.cid-tnj5uzLWDL .nav-item:focus,
.cid-tnj5uzLWDL .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tnj5uzLWDL .nav-item {
    position: relative;
  }
}
.cid-tnj5uzLWDL .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: #4284df;
}
.cid-tnj5uzLWDL .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #4284df;
}
.cid-tnj5uzLWDL .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #4284df !important;
}
.cid-tnj5uzLWDL .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-tnj5uzLWDL .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-tnj5uzLWDL .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-tnj5uzLWDL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tnj5uzLWDL .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tnj5uzLWDL .navbar.collapsed .navbar-collapse.show,
.cid-tnj5uzLWDL .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tnj5uzLWDL .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-tnj5uzLWDL .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-tnj5uzLWDL .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tnj5uzLWDL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tnj5uzLWDL .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-tnj5uzLWDL .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tnj5uzLWDL .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-tnj5uzLWDL .navbar.collapsed .right-menu,
.cid-tnj5uzLWDL .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-tnj5uzLWDL .navbar .navbar-collapse.show,
  .cid-tnj5uzLWDL .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-tnj5uzLWDL .navbar .navbar-collapse.show .brand-container,
  .cid-tnj5uzLWDL .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-tnj5uzLWDL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tnj5uzLWDL .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tnj5uzLWDL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tnj5uzLWDL .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tnj5uzLWDL .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-tnj5uzLWDL .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tnj5uzLWDL .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-tnj5uzLWDL .navbar .right-menu,
  .cid-tnj5uzLWDL .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-tnj5uzLWDL .navbar.navbar-short {
  min-height: 60px;
}
.cid-tnj5uzLWDL .navbar.navbar-short .mbr-overlay {
  background: #4284df !important;
}
.cid-tnj5uzLWDL .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tnj5uzLWDL .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-tnj5uzLWDL .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-tnj5uzLWDL .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-tnj5uzLWDL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tnj5uzLWDL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tnj5uzLWDL .dropdown-item.active,
.cid-tnj5uzLWDL .dropdown-item:active {
  background-color: transparent;
}
.cid-tnj5uzLWDL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tnj5uzLWDL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-tnj5uzLWDL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #4284df;
}
.cid-tnj5uzLWDL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tnj5uzLWDL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tnj5uzLWDL ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-tnj5uzLWDL ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-tnj5uzLWDL .navbar-buttons {
  margin-left: auto;
}
.cid-tnj5uzLWDL button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: flex-start;
  align-self: flex-start;
  outline: none;
}
.cid-tnj5uzLWDL button.navbar-toggler:hover {
  outline: none;
}
.cid-tnj5uzLWDL button.navbar-toggler:active {
  outline: none;
}
.cid-tnj5uzLWDL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tnj5uzLWDL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tnj5uzLWDL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tnj5uzLWDL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tnj5uzLWDL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tnj5uzLWDL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tnj5uzLWDL nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-tnj5uzLWDL nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-tnj5uzLWDL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tnj5uzLWDL a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-tnj5uzLWDL .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tnj5uzLWDL .right-menu,
.cid-tnj5uzLWDL .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-tnj5uzLWDL .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tnj5uzLWDL .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tnj5uzLWDL .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tnj5uzLWDL .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tnj5uzLWDL .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-tnj5uzLWDL .card-wrapper {
  z-index: 3;
}
.cid-tnj5uzLWDL .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-tnj5uzLWDL .navbar-collapse {
    padding-top: 0;
  }
}
.cid-tnj5uzLWDL .nav-item:not(:last-child) {
  margin-right: 32px !important;
}
.cid-tnj5uzLWDL .navbar-brand img {
  width: auto !important;
  display: inline;
}
.cid-tnj5uzLWDL .navbar-dropdown .navbar-brand span {
  vertical-align: 0px;
  line-height: 1;
}
.cid-tnj5uzLWDL .nav-link {
  position: relative;
  padding: 0;
  display: inline-block;
}
.cid-tnj5uzLWDL .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transform: translate3d(0, 0, 0);
  transition: all 0.2s ease-in-out;
}
.cid-tnj5uzLWDL .nav-link:hover .line-animation {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.cid-tnj5uzLWDL .link {
  padding: 0;
  margin: 0;
}
.cid-tnj5uzLWDL .dropdown-menu {
  margin-top: 0px;
}
.cid-tnj5uzLWDL .navbar-caption {
  color: #ffffff;
}
.cid-tnj5uzLWDL .navbar-caption:hover {
  color: #ffffff;
}
.cid-tnj5uzLWDL .dropdown-item:hover {
  color: #4284df !important;
}
.cid-tnj5uzLWDL .dropdown-toggle:after {
  display: none;
}
.cid-tnj5uzLWDL a:hover .line-animation {
  opacity: 1;
}
.cid-tnj5uzLWDL .nav-dropdown .link {
  padding: 0 !important;
}
@media (max-width: 990px) {
  .cid-tnj5uzLWDL .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tnj5uzLWDL .nav-dropdown .link {
    padding-top: 15px !important;
  }
}
.cid-uP0LrHZEag {
  padding-top: 9rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/chatgpt-image-jun-24-2025-04-15-39-pm-1536x1024.png");
}
.cid-uP0LrHZEag .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP0LrHZEag .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP0LrHZEag .item {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
  flex-direction: column;
}
.cid-uP0LrHZEag .icon-box {
  margin-bottom: 1rem;
  text-align: center;
  display: inline-block;
}
.cid-uP0LrHZEag .text-box {
  text-align: center;
}
.cid-uP0LrHZEag span {
  font-size: 10rem;
  color: #6592e6;
  font-weight: bold;
  display: block;
}
@media (max-width: 991px) {
  .cid-uP0LrHZEag .card {
    margin-bottom: 2rem;
  }
  .cid-uP0LrHZEag .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uP0LrHZEag span {
    font-size: 21vw;
  }
}
.cid-uP0LrHZEag .item .icon-box .step-number {
  color: #6c9cdf;
}
.cid-tnj5uzpjEW {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #fafafa;
}
.cid-tnj5uzpjEW h3 {
  text-align: center;
  font-weight: 300;
  color: #0c57bf;
}
.cid-tnj5uzpjEW .wrap {
  width: 150px;
  height: 150px;
  margin: 0 auto;
}
.cid-tnj5uzpjEW .mbr-section-subtitle {
  color: #0c57bf;
}
.cid-tnj5uzpjEW .pie_progress__number {
  text-align: center !important;
  font-size: 1.5rem;
  font-weight: bold;
}
.cid-tnj5uzpjEW .card-title {
  margin-bottom: 0;
  color: #f60c0c;
}
.cid-tnj5uzpjEW .card {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
  word-wrap: break-word;
  transition: box-shadow 0.3s;
}
.cid-tnj5uzpjEW .svg-gradient {
  position: absolute;
}
.cid-tnj5uzpjEW ellipse {
  stroke: rgba(206, 206, 206, 0.4);
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tnj5uzpjEW .card {
    -webkit-flex-basis: 50%;
    flex-basis: 50%;
  }
}
.cid-tnj5uzpjEW .mbr-fallback-image.disabled {
  display: none;
}
.cid-tnj5uzpjEW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tnj5uzpjEW .card-text {
  color: #4284df;
}
.cid-tnj5uzpjEW .mbr-section-title {
  color: #0c57bf;
}
.cid-tnj5uzpjEW H4 {
  color: #f60c0c;
}
.cid-tnj5uzpjEW .progress-bars4 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
  border-radius: 10px;
}
.cid-tnj5uzpjEW .pie_progress {
  transition: transform 0.4s ease;
}
.cid-tnj5uzpjEW .pie_progress:hover {
  transform: scale(1.05);
}
.cid-tnj5uzpjEW h4 {
  color: #f60c0c;
}
.cid-tnj5uzYxfc {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #fafafa;
}
.cid-tnj5uzYxfc h3 {
  text-align: center;
  font-weight: 300;
  color: #0c57bf;
}
.cid-tnj5uzYxfc .wrap {
  width: 150px;
  height: 150px;
  margin: 0 auto;
}
.cid-tnj5uzYxfc .mbr-section-subtitle {
  color: #0c57bf;
}
.cid-tnj5uzYxfc .pie_progress__number {
  text-align: center !important;
  font-size: 1.5rem;
  font-weight: bold;
}
.cid-tnj5uzYxfc .card-title {
  margin-bottom: 0;
  color: #f60c0c;
}
.cid-tnj5uzYxfc .card {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
  word-wrap: break-word;
  transition: box-shadow 0.3s;
}
.cid-tnj5uzYxfc .svg-gradient {
  position: absolute;
}
.cid-tnj5uzYxfc ellipse {
  stroke: rgba(206, 206, 206, 0.4);
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tnj5uzYxfc .card {
    -webkit-flex-basis: 50%;
    flex-basis: 50%;
  }
}
.cid-tnj5uzYxfc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tnj5uzYxfc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tnj5uzYxfc .card-text {
  color: #4284df;
}
.cid-tnj5uzYxfc .mbr-section-title {
  color: #0c57bf;
}
.cid-tnj5uzYxfc H4 {
  color: #f60c0c;
}
.cid-tnj5uzYxfc .progress-bars4 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
  border-radius: 10px;
}
.cid-tnj5uzYxfc .pie_progress {
  transition: transform 0.4s ease;
}
.cid-tnj5uzYxfc .pie_progress:hover {
  transform: scale(1.05);
}
.cid-tnj5uzYxfc h4 {
  color: #f60c0c;
}
.cid-tnj5PFD541 {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #fafafa;
}
.cid-tnj5PFD541 h3 {
  text-align: center;
  font-weight: 300;
  color: #0c57bf;
}
.cid-tnj5PFD541 .wrap {
  width: 150px;
  height: 150px;
  margin: 0 auto;
}
.cid-tnj5PFD541 .mbr-section-subtitle {
  color: #0c57bf;
}
.cid-tnj5PFD541 .pie_progress__number {
  text-align: center !important;
  font-size: 1.5rem;
  font-weight: bold;
}
.cid-tnj5PFD541 .card-title {
  margin-bottom: 0;
  color: #f60c0c;
}
.cid-tnj5PFD541 .card {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
  word-wrap: break-word;
  transition: box-shadow 0.3s;
}
.cid-tnj5PFD541 .svg-gradient {
  position: absolute;
}
.cid-tnj5PFD541 ellipse {
  stroke: rgba(206, 206, 206, 0.4);
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tnj5PFD541 .card {
    -webkit-flex-basis: 50%;
    flex-basis: 50%;
  }
}
.cid-tnj5PFD541 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tnj5PFD541 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tnj5PFD541 .card-text {
  color: #4284df;
}
.cid-tnj5PFD541 .mbr-section-title {
  color: #0c57bf;
}
.cid-tnj5PFD541 H4 {
  color: #f60c0c;
}
.cid-tnj5PFD541 .progress-bars4 {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #f9f9f9;
  border-radius: 10px;
}
.cid-tnj5PFD541 .pie_progress {
  transition: transform 0.4s ease;
}
.cid-tnj5PFD541 .pie_progress:hover {
  transform: scale(1.05);
}
.cid-tnj5PFD541 h4 {
  color: #f60c0c;
}
.cid-tnje77B0Rl .nav-item:focus,
.cid-tnje77B0Rl .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tnje77B0Rl .nav-item {
    position: relative;
  }
}
.cid-tnje77B0Rl .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: #4284df;
}
.cid-tnje77B0Rl .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #4284df;
}
.cid-tnje77B0Rl .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #4284df !important;
}
.cid-tnje77B0Rl .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-tnje77B0Rl .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-tnje77B0Rl .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-tnje77B0Rl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tnje77B0Rl .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tnje77B0Rl .navbar.collapsed .navbar-collapse.show,
.cid-tnje77B0Rl .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tnje77B0Rl .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-tnje77B0Rl .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-tnje77B0Rl .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tnje77B0Rl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tnje77B0Rl .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-tnje77B0Rl .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tnje77B0Rl .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-tnje77B0Rl .navbar.collapsed .right-menu,
.cid-tnje77B0Rl .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-tnje77B0Rl .navbar .navbar-collapse.show,
  .cid-tnje77B0Rl .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-tnje77B0Rl .navbar .navbar-collapse.show .brand-container,
  .cid-tnje77B0Rl .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-tnje77B0Rl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tnje77B0Rl .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tnje77B0Rl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tnje77B0Rl .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tnje77B0Rl .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-tnje77B0Rl .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tnje77B0Rl .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-tnje77B0Rl .navbar .right-menu,
  .cid-tnje77B0Rl .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-tnje77B0Rl .navbar.navbar-short {
  min-height: 60px;
}
.cid-tnje77B0Rl .navbar.navbar-short .mbr-overlay {
  background: #4284df !important;
}
.cid-tnje77B0Rl .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tnje77B0Rl .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-tnje77B0Rl .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-tnje77B0Rl .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-tnje77B0Rl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tnje77B0Rl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tnje77B0Rl .dropdown-item.active,
.cid-tnje77B0Rl .dropdown-item:active {
  background-color: transparent;
}
.cid-tnje77B0Rl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tnje77B0Rl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-tnje77B0Rl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #4284df;
}
.cid-tnje77B0Rl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tnje77B0Rl .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tnje77B0Rl ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-tnje77B0Rl ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-tnje77B0Rl .navbar-buttons {
  margin-left: auto;
}
.cid-tnje77B0Rl button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: flex-start;
  align-self: flex-start;
  outline: none;
}
.cid-tnje77B0Rl button.navbar-toggler:hover {
  outline: none;
}
.cid-tnje77B0Rl button.navbar-toggler:active {
  outline: none;
}
.cid-tnje77B0Rl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tnje77B0Rl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tnje77B0Rl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tnje77B0Rl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tnje77B0Rl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tnje77B0Rl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tnje77B0Rl nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-tnje77B0Rl nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-tnje77B0Rl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tnje77B0Rl a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-tnje77B0Rl .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tnje77B0Rl .right-menu,
.cid-tnje77B0Rl .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-tnje77B0Rl .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tnje77B0Rl .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tnje77B0Rl .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tnje77B0Rl .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tnje77B0Rl .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-tnje77B0Rl .card-wrapper {
  z-index: 3;
}
.cid-tnje77B0Rl .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-tnje77B0Rl .navbar-collapse {
    padding-top: 0;
  }
}
.cid-tnje77B0Rl .nav-item:not(:last-child) {
  margin-right: 32px !important;
}
.cid-tnje77B0Rl .navbar-brand img {
  width: auto !important;
  display: inline;
}
.cid-tnje77B0Rl .navbar-dropdown .navbar-brand span {
  vertical-align: 0px;
  line-height: 1;
}
.cid-tnje77B0Rl .nav-link {
  position: relative;
  padding: 0;
  display: inline-block;
}
.cid-tnje77B0Rl .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transform: translate3d(0, 0, 0);
  transition: all 0.2s ease-in-out;
}
.cid-tnje77B0Rl .nav-link:hover .line-animation {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.cid-tnje77B0Rl .link {
  padding: 0;
  margin: 0;
}
.cid-tnje77B0Rl .dropdown-menu {
  margin-top: 0px;
}
.cid-tnje77B0Rl .navbar-caption {
  color: #ffffff;
}
.cid-tnje77B0Rl .navbar-caption:hover {
  color: #ffffff;
}
.cid-tnje77B0Rl .dropdown-item:hover {
  color: #4284df !important;
}
.cid-tnje77B0Rl .dropdown-toggle:after {
  display: none;
}
.cid-tnje77B0Rl a:hover .line-animation {
  opacity: 1;
}
.cid-tnje77B0Rl .nav-dropdown .link {
  padding: 0 !important;
}
@media (max-width: 990px) {
  .cid-tnje77B0Rl .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tnje77B0Rl .nav-dropdown .link {
    padding-top: 15px !important;
  }
}
.cid-uP0TLWGmp1 {
  padding-top: 9rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/chatgpt-image-jun-24-2025-04-15-39-pm-1536x1024.png");
}
.cid-uP0TLWGmp1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP0TLWGmp1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP0TLWGmp1 .item {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
  flex-direction: column;
}
.cid-uP0TLWGmp1 .icon-box {
  margin-bottom: 1rem;
  text-align: center;
  display: inline-block;
}
.cid-uP0TLWGmp1 .text-box {
  text-align: center;
}
.cid-uP0TLWGmp1 span {
  font-size: 10rem;
  color: #6592e6;
  font-weight: bold;
  display: block;
}
@media (max-width: 991px) {
  .cid-uP0TLWGmp1 .card {
    margin-bottom: 2rem;
  }
  .cid-uP0TLWGmp1 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uP0TLWGmp1 span {
    font-size: 21vw;
  }
}
.cid-uP0TLWGmp1 .item .icon-box .step-number {
  color: #6c9cdf;
}
.cid-tnje77gl6d {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #fafafa;
}
.cid-tnje77gl6d h3 {
  text-align: center;
  font-weight: 300;
  color: #0c57bf;
}
.cid-tnje77gl6d .wrap {
  width: 150px;
  height: 150px;
  margin: 0 auto;
}
.cid-tnje77gl6d .mbr-section-subtitle {
  color: #0c57bf;
}
.cid-tnje77gl6d .pie_progress__number {
  text-align: center !important;
  font-size: 1.5rem;
  font-weight: bold;
}
.cid-tnje77gl6d .card-title {
  margin-bottom: 0;
  color: #f60c0c;
}
.cid-tnje77gl6d .card {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
  word-wrap: break-word;
  transition: box-shadow 0.3s;
}
.cid-tnje77gl6d .svg-gradient {
  position: absolute;
}
.cid-tnje77gl6d ellipse {
  stroke: rgba(206, 206, 206, 0.4);
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tnje77gl6d .card {
    -webkit-flex-basis: 50%;
    flex-basis: 50%;
  }
}
.cid-tnje77gl6d .mbr-fallback-image.disabled {
  display: none;
}
.cid-tnje77gl6d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tnje77gl6d .card-text {
  color: #4284df;
}
.cid-tnje77gl6d .mbr-section-title {
  color: #0c57bf;
}
.cid-tnje77gl6d H4 {
  color: #f60c0c;
}
.cid-tnje77gl6d .progress-bars4 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
  border-radius: 10px;
}
.cid-tnje77gl6d .pie_progress {
  transition: transform 0.4s ease;
}
.cid-tnje77gl6d .pie_progress:hover {
  transform: scale(1.05);
}
.cid-tnje77gl6d h4 {
  color: #f60c0c;
}
.cid-tnje77Qtx3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #fafafa;
}
.cid-tnje77Qtx3 h3 {
  text-align: center;
  font-weight: 300;
  color: #0c57bf;
}
.cid-tnje77Qtx3 .wrap {
  width: 150px;
  height: 150px;
  margin: 0 auto;
}
.cid-tnje77Qtx3 .mbr-section-subtitle {
  color: #0c57bf;
}
.cid-tnje77Qtx3 .pie_progress__number {
  text-align: center !important;
  font-size: 1.5rem;
  font-weight: bold;
}
.cid-tnje77Qtx3 .card-title {
  margin-bottom: 0;
  color: #f60c0c;
}
.cid-tnje77Qtx3 .card {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
  word-wrap: break-word;
  transition: box-shadow 0.3s;
}
.cid-tnje77Qtx3 .svg-gradient {
  position: absolute;
}
.cid-tnje77Qtx3 ellipse {
  stroke: rgba(206, 206, 206, 0.4);
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tnje77Qtx3 .card {
    -webkit-flex-basis: 50%;
    flex-basis: 50%;
  }
}
.cid-tnje77Qtx3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tnje77Qtx3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tnje77Qtx3 .card-text {
  color: #4284df;
}
.cid-tnje77Qtx3 .mbr-section-title {
  color: #0c57bf;
}
.cid-tnje77Qtx3 H4 {
  color: #f60c0c;
}
.cid-tnje77Qtx3 .progress-bars4 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
  border-radius: 10px;
}
.cid-tnje77Qtx3 .pie_progress {
  transition: transform 0.4s ease;
}
.cid-tnje77Qtx3 .pie_progress:hover {
  transform: scale(1.05);
}
.cid-tnje77Qtx3 h4 {
  color: #f60c0c;
}
.cid-tnje78bF0r {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #fafafa;
}
.cid-tnje78bF0r h3 {
  text-align: center;
  font-weight: 300;
  color: #0c57bf;
}
.cid-tnje78bF0r .wrap {
  width: 150px;
  height: 150px;
  margin: 0 auto;
}
.cid-tnje78bF0r .mbr-section-subtitle {
  color: #0c57bf;
}
.cid-tnje78bF0r .pie_progress__number {
  text-align: center !important;
  font-size: 1.5rem;
  font-weight: bold;
}
.cid-tnje78bF0r .card-title {
  margin-bottom: 0;
  color: #f60c0c;
}
.cid-tnje78bF0r .card {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
  word-wrap: break-word;
  transition: box-shadow 0.3s;
}
.cid-tnje78bF0r .svg-gradient {
  position: absolute;
}
.cid-tnje78bF0r ellipse {
  stroke: rgba(206, 206, 206, 0.4);
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tnje78bF0r .card {
    -webkit-flex-basis: 50%;
    flex-basis: 50%;
  }
}
.cid-tnje78bF0r .mbr-fallback-image.disabled {
  display: none;
}
.cid-tnje78bF0r .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tnje78bF0r .card-text {
  color: #4284df;
}
.cid-tnje78bF0r .mbr-section-title {
  color: #0c57bf;
}
.cid-tnje78bF0r H4 {
  color: #f60c0c;
}
.cid-tnje78bF0r .progress-bars4 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #f9f9f9;
  border-radius: 10px;
}
.cid-tnje78bF0r .pie_progress {
  transition: transform 0.4s ease;
}
.cid-tnje78bF0r .pie_progress:hover {
  transform: scale(1.05);
}
.cid-tnje78bF0r h4 {
  color: #f60c0c;
}
.cid-tnjt5RGXj8 .nav-item:focus,
.cid-tnjt5RGXj8 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tnjt5RGXj8 .nav-item {
    position: relative;
  }
}
.cid-tnjt5RGXj8 .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: #4284df;
}
.cid-tnjt5RGXj8 .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #4284df;
}
.cid-tnjt5RGXj8 .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #4284df !important;
}
.cid-tnjt5RGXj8 .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-tnjt5RGXj8 .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-tnjt5RGXj8 .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-tnjt5RGXj8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tnjt5RGXj8 .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tnjt5RGXj8 .navbar.collapsed .navbar-collapse.show,
.cid-tnjt5RGXj8 .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tnjt5RGXj8 .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-tnjt5RGXj8 .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-tnjt5RGXj8 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tnjt5RGXj8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tnjt5RGXj8 .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-tnjt5RGXj8 .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tnjt5RGXj8 .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-tnjt5RGXj8 .navbar.collapsed .right-menu,
.cid-tnjt5RGXj8 .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-tnjt5RGXj8 .navbar .navbar-collapse.show,
  .cid-tnjt5RGXj8 .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-tnjt5RGXj8 .navbar .navbar-collapse.show .brand-container,
  .cid-tnjt5RGXj8 .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-tnjt5RGXj8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tnjt5RGXj8 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tnjt5RGXj8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tnjt5RGXj8 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tnjt5RGXj8 .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-tnjt5RGXj8 .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tnjt5RGXj8 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-tnjt5RGXj8 .navbar .right-menu,
  .cid-tnjt5RGXj8 .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-tnjt5RGXj8 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tnjt5RGXj8 .navbar.navbar-short .mbr-overlay {
  background: #4284df !important;
}
.cid-tnjt5RGXj8 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tnjt5RGXj8 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-tnjt5RGXj8 .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-tnjt5RGXj8 .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-tnjt5RGXj8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tnjt5RGXj8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tnjt5RGXj8 .dropdown-item.active,
.cid-tnjt5RGXj8 .dropdown-item:active {
  background-color: transparent;
}
.cid-tnjt5RGXj8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tnjt5RGXj8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-tnjt5RGXj8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #4284df;
}
.cid-tnjt5RGXj8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tnjt5RGXj8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tnjt5RGXj8 ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-tnjt5RGXj8 ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-tnjt5RGXj8 .navbar-buttons {
  margin-left: auto;
}
.cid-tnjt5RGXj8 button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: flex-start;
  align-self: flex-start;
  outline: none;
}
.cid-tnjt5RGXj8 button.navbar-toggler:hover {
  outline: none;
}
.cid-tnjt5RGXj8 button.navbar-toggler:active {
  outline: none;
}
.cid-tnjt5RGXj8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tnjt5RGXj8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tnjt5RGXj8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tnjt5RGXj8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tnjt5RGXj8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tnjt5RGXj8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tnjt5RGXj8 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-tnjt5RGXj8 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-tnjt5RGXj8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tnjt5RGXj8 a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-tnjt5RGXj8 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tnjt5RGXj8 .right-menu,
.cid-tnjt5RGXj8 .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-tnjt5RGXj8 .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tnjt5RGXj8 .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tnjt5RGXj8 .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tnjt5RGXj8 .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tnjt5RGXj8 .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-tnjt5RGXj8 .card-wrapper {
  z-index: 3;
}
.cid-tnjt5RGXj8 .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-tnjt5RGXj8 .navbar-collapse {
    padding-top: 0;
  }
}
.cid-tnjt5RGXj8 .nav-item:not(:last-child) {
  margin-right: 32px !important;
}
.cid-tnjt5RGXj8 .navbar-brand img {
  width: auto !important;
  display: inline;
}
.cid-tnjt5RGXj8 .navbar-dropdown .navbar-brand span {
  vertical-align: 0px;
  line-height: 1;
}
.cid-tnjt5RGXj8 .nav-link {
  position: relative;
  padding: 0;
  display: inline-block;
}
.cid-tnjt5RGXj8 .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transform: translate3d(0, 0, 0);
  transition: all 0.2s ease-in-out;
}
.cid-tnjt5RGXj8 .nav-link:hover .line-animation {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.cid-tnjt5RGXj8 .link {
  padding: 0;
  margin: 0;
}
.cid-tnjt5RGXj8 .dropdown-menu {
  margin-top: 0px;
}
.cid-tnjt5RGXj8 .navbar-caption {
  color: #ffffff;
}
.cid-tnjt5RGXj8 .navbar-caption:hover {
  color: #ffffff;
}
.cid-tnjt5RGXj8 .dropdown-item:hover {
  color: #4284df !important;
}
.cid-tnjt5RGXj8 .dropdown-toggle:after {
  display: none;
}
.cid-tnjt5RGXj8 a:hover .line-animation {
  opacity: 1;
}
.cid-tnjt5RGXj8 .nav-dropdown .link {
  padding: 0 !important;
}
@media (max-width: 990px) {
  .cid-tnjt5RGXj8 .dropdown-menu {
    margin-top: 0px;
  }
  .cid-tnjt5RGXj8 .nav-dropdown .link {
    padding-top: 15px !important;
  }
}
.cid-tHdGeJiWmW {
  padding-top: 8rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tHdGeJiWmW .mbr-fallback-image.disabled {
  display: none;
}
.cid-tHdGeJiWmW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tHdGeJiWmW .mbr-section-head {
  width: 100%;
  margin-bottom: 36px;
}
.cid-tHdGeJiWmW .mbr-section-title {
  color: #4284df;
  text-align: center;
}
.cid-tHdGeJiWmW .mbr-section-subtitle {
  color: #0c57bf;
  margin-top: 24px;
  text-align: center;
}
.cid-tHdGeJiWmW .tabl-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}
.cid-tHdGeJiWmW .tabl-item-row {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.cid-tHdGeJiWmW .tabl-item-row:nth-child(2n) {
  background: rgba(0, 0, 0, 0.02);
}
.cid-tHdGeJiWmW .tabl-item-column {
  width: 33.33333333%;
  flex-grow: 1;
  padding: 14px;
}
@media (max-width: 767px) {
  .cid-tHdGeJiWmW .tabl-item-column {
    padding: 10px;
  }
}
.cid-tHdGeJiWmW .card-title {
  color: #0c57bf;
}
.cid-tHdGeJiWmW .card-text {
  color: #45494E;
  text-align: left;
}
.cid-tHdNXvo1uv {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tHdNXvo1uv .progress {
  width: 100%;
}
.cid-tHdNXvo1uv p {
  margin-bottom: 0.4rem;
}
.cid-tHdNXvo1uv .progressbar-title {
  padding-bottom: 1rem;
}
.cid-tHdNXvo1uv .title-wrap {
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.cid-tHdNXvo1uv progress {
  height: 10px;
}
.cid-tHdNXvo1uv .progressbar-number {
  display: inline-block;
  width: 50px;
}
.cid-tHdNXvo1uv .progress-primary {
  background: rgba(206, 206, 206, 0.4);
  border: none;
  outline: none;
}
.cid-tHdNXvo1uv .progress-primary::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
}
.cid-tHdNXvo1uv .progress_value {
  position: relative;
}
.cid-tHdNXvo1uv .progress1 .progressbar-number:before,
.cid-tHdNXvo1uv .progress2 .progressbar-number:before,
.cid-tHdNXvo1uv .progress3 .progressbar-number:before,
.cid-tHdNXvo1uv .progress4 .progressbar-number:before,
.cid-tHdNXvo1uv .progress5 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-tHdNXvo1uv progress[value]::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
}
.cid-tHdNXvo1uv progress::-webkit-progress-value {
  background: #4284df;
}
.cid-tHdNXvo1uv progress[value]::-moz-progress-bar {
  background: #4284df;
}
.cid-tHdNXvo1uv progress::-ms-fill {
  background: #4284df;
}
.cid-tHdNXvo1uv .progress1 .progressbar-number:before {
  content: "100";
}
.cid-tHdNXvo1uv .progress2 .progressbar-number:before {
  content: "100";
}
.cid-tHdNXvo1uv .progress3 .progressbar-number:before {
  content: "100";
}
.cid-tHdNXvo1uv .progress4 .progressbar-number:before {
  content: "100";
}
.cid-tHdNXvo1uv .progress5 .progressbar-number:before {
  content: "100";
}
.cid-tHdNXvo1uv .section-content-text {
  color: #454545;
}
.cid-tHdNXvo1uv .progressbar-title p,
.cid-tHdNXvo1uv .progress_value {
  color: #2c1616;
}
.cid-tHdNXvo1uv .mbr-section-subtitle {
  color: #454545;
}
.cid-tHdNXvo1uv .section-content-title {
  text-align: center;
}
.cid-tHdNXvo1uv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tHdNXvo1uv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usQ8EEr1zL {
  padding-top: 8rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-usQ8EEr1zL .mbr-fallback-image.disabled {
  display: none;
}
.cid-usQ8EEr1zL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usQ8EEr1zL .mbr-section-head {
  width: 100%;
  margin-bottom: 36px;
}
.cid-usQ8EEr1zL .mbr-section-title {
  color: #4284df;
  text-align: center;
}
.cid-usQ8EEr1zL .mbr-section-subtitle {
  color: #0c57bf;
  margin-top: 24px;
  text-align: center;
}
.cid-usQ8EEr1zL .tabl-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}
.cid-usQ8EEr1zL .tabl-item-row {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.cid-usQ8EEr1zL .tabl-item-row:nth-child(2n) {
  background: rgba(0, 0, 0, 0);
}
.cid-usQ8EEr1zL .tabl-item-column {
  width: 33.33333333%;
  flex-grow: 1;
  padding: 14px;
}
@media (max-width: 767px) {
  .cid-usQ8EEr1zL .tabl-item-column {
    padding: 10px;
  }
}
.cid-usQ8EEr1zL .card-title {
  color: #0c57bf;
}
.cid-usQ8EEr1zL .card-text {
  color: #45494E;
  text-align: left;
}
.cid-usQ8FcVbuh {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-usQ8FcVbuh .progress {
  width: 100%;
}
.cid-usQ8FcVbuh p {
  margin-bottom: 0.4rem;
}
.cid-usQ8FcVbuh .progressbar-title {
  padding-bottom: 1rem;
}
.cid-usQ8FcVbuh .title-wrap {
  display: flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.cid-usQ8FcVbuh progress {
  height: 10px;
}
.cid-usQ8FcVbuh .progressbar-number {
  display: inline-block;
  width: 50px;
}
.cid-usQ8FcVbuh .progress-primary {
  background: rgba(206, 206, 206, 0.4);
  border: none;
  outline: none;
}
.cid-usQ8FcVbuh .progress-primary::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
}
.cid-usQ8FcVbuh .progress_value {
  position: relative;
}
.cid-usQ8FcVbuh .progress1 .progressbar-number:before,
.cid-usQ8FcVbuh .progress2 .progressbar-number:before,
.cid-usQ8FcVbuh .progress3 .progressbar-number:before,
.cid-usQ8FcVbuh .progress4 .progressbar-number:before,
.cid-usQ8FcVbuh .progress5 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-usQ8FcVbuh progress[value]::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
}
.cid-usQ8FcVbuh progress::-webkit-progress-value {
  background: #4284df;
}
.cid-usQ8FcVbuh progress[value]::-moz-progress-bar {
  background: #4284df;
}
.cid-usQ8FcVbuh progress::-ms-fill {
  background: #4284df;
}
.cid-usQ8FcVbuh .progress1 .progressbar-number:before {
  content: "0";
}
.cid-usQ8FcVbuh .progress2 .progressbar-number:before {
  content: "0";
}
.cid-usQ8FcVbuh .progress3 .progressbar-number:before {
  content: "0";
}
.cid-usQ8FcVbuh .progress4 .progressbar-number:before {
  content: "100";
}
.cid-usQ8FcVbuh .progress5 .progressbar-number:before {
  content: "0";
}
.cid-usQ8FcVbuh .section-content-text {
  color: #454545;
}
.cid-usQ8FcVbuh .progressbar-title p,
.cid-usQ8FcVbuh .progress_value {
  color: #2c1616;
  text-align: left;
}
.cid-usQ8FcVbuh .mbr-section-subtitle {
  color: #454545;
}
.cid-usQ8FcVbuh .section-content-title {
  text-align: center;
}
.cid-usQ8FcVbuh .mbr-fallback-image.disabled {
  display: none;
}
.cid-usQ8FcVbuh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usQloRr7kF {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-usQloRr7kF .content-slider {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-usQloRr7kF .modal-body .close {
  background: #1b1b1b;
}
.cid-usQloRr7kF .modal-body .close span {
  font-style: normal;
}
.cid-usQloRr7kF .carousel-inner > .active,
.cid-usQloRr7kF .carousel-inner > .next,
.cid-usQloRr7kF .carousel-inner > .prev {
  display: -webkit-flex;
}
.cid-usQloRr7kF .carousel-control .icon-next,
.cid-usQloRr7kF .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-usQloRr7kF .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-usQloRr7kF .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-usQloRr7kF .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-usQloRr7kF .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-usQloRr7kF .boxed-slider > div {
  position: relative;
}
.cid-usQloRr7kF .container img {
  width: 100%;
}
.cid-usQloRr7kF .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-usQloRr7kF .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-usQloRr7kF .mbr-table-cell {
  padding: 0;
}
.cid-usQloRr7kF .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-usQloRr7kF .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-usQloRr7kF .mbr-overlay {
  z-index: 1;
  pointer-events: none;
}
.cid-usQloRr7kF .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-usQloRr7kF .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-usQloRr7kF .carousel-item.active.right,
.cid-usQloRr7kF .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-usQloRr7kF .carousel-item.active.left,
.cid-usQloRr7kF .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-usQloRr7kF .carousel-item.active,
.cid-usQloRr7kF .carousel-item.next.left,
.cid-usQloRr7kF .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-usQloRr7kF .mbr-slider .carousel-control {
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-usQloRr7kF .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-usQloRr7kF .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-usQloRr7kF .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .cid-usQloRr7kF .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-usQloRr7kF .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-usQloRr7kF .mbr-slider .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-usQloRr7kF .mbr-slider .carousel-indicators li.active,
.cid-usQloRr7kF .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-usQloRr7kF .mbr-slider .carousel-indicators li::after,
.cid-usQloRr7kF .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-usQloRr7kF .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-usQloRr7kF .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-usQloRr7kF .mbr-slider > .container img {
  width: 100%;
}
.cid-usQloRr7kF .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-usQloRr7kF .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-usQloRr7kF .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-usQloRr7kF .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-usQloRr7kF .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-usQloRr7kF .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-usQloRr7kF .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-usQloRr7kF .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-usQloRr7kF .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-usQloRr7kF .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-usQloRr7kF .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-usQloRr7kF .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-usQloRr7kF .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-usQloRr7kF .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}
.cid-usQloRr7kF .carousel-inner {
  height: 100%;
}
.cid-usQloRr7kF .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}
.cid-usQloRr7kF .image_wrapper {
  height: 400px;
  width: 100%;
  position: relative;
  display: inline-block;
}
.cid-usQloRr7kF .image_wrapper img {
  width: 100% !important;
  height: 100%;
  object-fit: cover;
}
.cid-usQloRr7kF .carousel-item .container-slide {
  text-align: center;
}
.cid-usQloRr7kF .content-slider-wrap {
  width: 60%;
}
.cid-uQa4ub9QmR .nav-item:focus,
.cid-uQa4ub9QmR .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uQa4ub9QmR .nav-item {
    position: relative;
  }
}
.cid-uQa4ub9QmR .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: #4284df;
}
.cid-uQa4ub9QmR .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #4284df;
}
.cid-uQa4ub9QmR .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #4284df !important;
}
.cid-uQa4ub9QmR .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-uQa4ub9QmR .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-uQa4ub9QmR .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-uQa4ub9QmR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uQa4ub9QmR .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uQa4ub9QmR .navbar.collapsed .navbar-collapse.show,
.cid-uQa4ub9QmR .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uQa4ub9QmR .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-uQa4ub9QmR .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-uQa4ub9QmR .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uQa4ub9QmR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uQa4ub9QmR .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-uQa4ub9QmR .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uQa4ub9QmR .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-uQa4ub9QmR .navbar.collapsed .right-menu,
.cid-uQa4ub9QmR .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-uQa4ub9QmR .navbar .navbar-collapse.show,
  .cid-uQa4ub9QmR .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-uQa4ub9QmR .navbar .navbar-collapse.show .brand-container,
  .cid-uQa4ub9QmR .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-uQa4ub9QmR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uQa4ub9QmR .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uQa4ub9QmR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uQa4ub9QmR .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uQa4ub9QmR .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-uQa4ub9QmR .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uQa4ub9QmR .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uQa4ub9QmR .navbar .right-menu,
  .cid-uQa4ub9QmR .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-uQa4ub9QmR .navbar.navbar-short {
  min-height: 60px;
}
.cid-uQa4ub9QmR .navbar.navbar-short .mbr-overlay {
  background: #4284df !important;
}
.cid-uQa4ub9QmR .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uQa4ub9QmR .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-uQa4ub9QmR .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-uQa4ub9QmR .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-uQa4ub9QmR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uQa4ub9QmR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uQa4ub9QmR .dropdown-item.active,
.cid-uQa4ub9QmR .dropdown-item:active {
  background-color: transparent;
}
.cid-uQa4ub9QmR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uQa4ub9QmR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-uQa4ub9QmR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #4284df;
}
.cid-uQa4ub9QmR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uQa4ub9QmR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uQa4ub9QmR ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-uQa4ub9QmR ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-uQa4ub9QmR .navbar-buttons {
  margin-left: auto;
}
.cid-uQa4ub9QmR button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: flex-start;
  align-self: flex-start;
  outline: none;
}
.cid-uQa4ub9QmR button.navbar-toggler:hover {
  outline: none;
}
.cid-uQa4ub9QmR button.navbar-toggler:active {
  outline: none;
}
.cid-uQa4ub9QmR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uQa4ub9QmR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uQa4ub9QmR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uQa4ub9QmR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uQa4ub9QmR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uQa4ub9QmR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uQa4ub9QmR nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-uQa4ub9QmR nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-uQa4ub9QmR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uQa4ub9QmR a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-uQa4ub9QmR .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uQa4ub9QmR .right-menu,
.cid-uQa4ub9QmR .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-uQa4ub9QmR .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uQa4ub9QmR .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uQa4ub9QmR .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uQa4ub9QmR .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uQa4ub9QmR .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uQa4ub9QmR .card-wrapper {
  z-index: 3;
}
.cid-uQa4ub9QmR .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-uQa4ub9QmR .navbar-collapse {
    padding-top: 0;
  }
}
.cid-uQa4ub9QmR .nav-item:not(:last-child) {
  margin-right: 32px !important;
}
.cid-uQa4ub9QmR .navbar-brand img {
  width: auto !important;
  display: inline;
}
.cid-uQa4ub9QmR .navbar-dropdown .navbar-brand span {
  vertical-align: 0px;
  line-height: 1;
}
.cid-uQa4ub9QmR .nav-link {
  position: relative;
  padding: 0;
  display: inline-block;
}
.cid-uQa4ub9QmR .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transform: translate3d(0, 0, 0);
  transition: all 0.2s ease-in-out;
}
.cid-uQa4ub9QmR .nav-link:hover .line-animation {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.cid-uQa4ub9QmR .link {
  padding: 0;
  margin: 0;
}
.cid-uQa4ub9QmR .dropdown-menu {
  margin-top: 0px;
}
.cid-uQa4ub9QmR .navbar-caption {
  color: #ffffff;
}
.cid-uQa4ub9QmR .navbar-caption:hover {
  color: #ffffff;
}
.cid-uQa4ub9QmR .dropdown-item:hover {
  color: #4284df !important;
}
.cid-uQa4ub9QmR .dropdown-toggle:after {
  display: none;
}
.cid-uQa4ub9QmR a:hover .line-animation {
  opacity: 1;
}
.cid-uQa4ub9QmR .nav-dropdown .link {
  padding: 0 !important;
}
@media (max-width: 990px) {
  .cid-uQa4ub9QmR .dropdown-menu {
    margin-top: 0px;
  }
  .cid-uQa4ub9QmR .nav-dropdown .link {
    padding-top: 15px !important;
  }
}
.cid-uQfr2EfdPP {
  display: flex;
  padding-top: 150px;
  padding-bottom: 45px;
  background: linear-gradient(to bottom, #f4e3be, #ffffff);
}
@media (min-width: 768px) {
  .cid-uQfr2EfdPP {
    align-items: flex-start;
  }
  .cid-uQfr2EfdPP .row {
    justify-content: center;
  }
}
.cid-uQfr2EfdPP .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-uQfr2EfdPP .mbr-text,
.cid-uQfr2EfdPP .mbr-section-btn {
  text-align: left;
  color: #232323;
}
.cid-uQfr2EfdPP .mbr-section-title,
.cid-uQfr2EfdPP .line {
  color: #232323;
  text-align: center;
}
.cid-uQfr2EfdPP h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-uQfr2EfdPP h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-uQfr2EfdPP .mbr-section-subtitle,
.cid-uQfr2EfdPP .align {
  text-align: left;
  color: #232323;
}
.cid-uQfqFImwDU {
  background: #ffffff;
  padding-top: 60px;
  padding-bottom: 60px;
  background: linear-gradient(0deg, #ffffff, #ffffff);
}
.cid-uQfqFImwDU .image-block {
  margin: auto;
}
.cid-uQfqFImwDU figcaption {
  position: relative;
}
.cid-uQfqFImwDU figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uQfqFImwDU .image-block {
    width: 100% !important;
  }
}
.cid-uQfAGMkhe4 {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 30px;
}
.cid-uQfAGMkhe4 .image-block {
  margin: auto;
}
.cid-uQfAGMkhe4 figcaption {
  position: relative;
}
.cid-uQfAGMkhe4 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uQfAGMkhe4 .image-block {
    width: 100% !important;
  }
}
.cid-uQfs0zTcuo {
  display: flex;
  padding-top: 45px;
  padding-bottom: 45px;
  background: linear-gradient(to bottom, #ffffff, #ffffff);
}
@media (min-width: 768px) {
  .cid-uQfs0zTcuo {
    align-items: flex-start;
  }
  .cid-uQfs0zTcuo .row {
    justify-content: center;
  }
}
.cid-uQfs0zTcuo .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-uQfs0zTcuo .mbr-text,
.cid-uQfs0zTcuo .mbr-section-btn {
  text-align: left;
  color: #232323;
}
.cid-uQfs0zTcuo .mbr-section-title,
.cid-uQfs0zTcuo .line {
  color: #232323;
  text-align: center;
}
.cid-uQfs0zTcuo h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-uQfs0zTcuo h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-uQfs0zTcuo .mbr-section-subtitle,
.cid-uQfs0zTcuo .align {
  text-align: left;
  color: #232323;
}
