.btn {
  border-radius: 80px;
}
body {
  font-family: 'Ubuntu', sans-serif;
}
.display-1 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 4.4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.5rem;
}
.display-2 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 2.375rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2.96875rem;
}
.display-4 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1rem;
}
.display-5 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.875rem;
}
.display-7 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.375rem;
}
/* ---- 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: 992px) {
  .display-1 {
    font-size: 3.52rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.08rem;
    font-size: calc( 2.19rem + (4.4 - 2.19) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.19rem + (4.4 - 2.19) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.9rem;
    font-size: calc( 1.48125rem + (2.375 - 1.48125) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.48125rem + (2.375 - 1.48125) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.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))));
  }
  .display-7 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1.5rem 2.5rem;
  border-radius: 0px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 0px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 0px;
}
.btn-lg {
  padding: 1rem 1.5625rem;
  border-radius: 0px;
}
.bg-primary {
  background-color: #fedb01 !important;
}
.bg-success {
  background-color: #eff0f6 !important;
}
.bg-info {
  background-color: #3f69ff !important;
}
.bg-warning {
  background-color: #8497c7 !important;
}
.bg-danger {
  background-color: #103178 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #fedb01 !important;
  border-color: #fedb01 !important;
  color: #000000 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #a89101 !important;
  border-color: #a89101 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #000000 !important;
  background-color: #a89101 !important;
  border-color: #a89101 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #103178 !important;
  border-color: #103178 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #06122b !important;
  border-color: #06122b !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #06122b !important;
  border-color: #06122b !important;
}
.btn-info,
.btn-info:active {
  background-color: #3f69ff !important;
  border-color: #3f69ff !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #0033e7 !important;
  border-color: #0033e7 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #0033e7 !important;
  border-color: #0033e7 !important;
}
.btn-success,
.btn-success:active {
  background-color: #eff0f6 !important;
  border-color: #eff0f6 !important;
  color: #535c93 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #b8bcd7 !important;
  border-color: #b8bcd7 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #535c93 !important;
  background-color: #b8bcd7 !important;
  border-color: #b8bcd7 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #8497c7 !important;
  border-color: #8497c7 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #4c66a8 !important;
  border-color: #4c66a8 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #4c66a8 !important;
  border-color: #4c66a8 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #103178 !important;
  border-color: #103178 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #06122b !important;
  border-color: #06122b !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #06122b !important;
  border-color: #06122b !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fedb01;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #a89101 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #000000 !important;
  background-color: #fedb01 !important;
  border-color: #fedb01 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #103178;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #06122b !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #103178 !important;
  border-color: #103178 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #3f69ff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #0033e7 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #3f69ff !important;
  border-color: #3f69ff !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #eff0f6;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #b8bcd7 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #535c93 !important;
  background-color: #eff0f6 !important;
  border-color: #eff0f6 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #8497c7;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #4c66a8 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #8497c7 !important;
  border-color: #8497c7 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #103178;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #06122b !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #103178 !important;
  border-color: #103178 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #fedb01 !important;
}
.text-secondary {
  color: #103178 !important;
}
.text-success {
  color: #eff0f6 !important;
}
.text-info {
  color: #3f69ff !important;
}
.text-warning {
  color: #8497c7 !important;
}
.text-danger {
  color: #103178 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #3f69ff !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #3f69ff !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #3f69ff !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #002fd8 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #3f69ff !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #3f69ff !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #3f69ff !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #3f69ff !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  transition: 0.3s;
  /*position: relative;
        background-image: linear-gradient(currentColor 50%, currentColor 50%);
        background-size: 10000px 2px;
        background-repeat: no-repeat;
        background-position: 0 1.2em;*/
  text-decoration: underline;
}
.nav-tabs .nav-link.active {
  color: #fedb01;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #3f69ff;
}
.alert-warning {
  background-color: #8497c7;
}
.alert-danger {
  background-color: #103178;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #fedb01;
  border-color: #fedb01;
  color: #191600;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fff8cc;
}
.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: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #dce1ef;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #2561e2;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Ubuntu', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #fedb01 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Ubuntu', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1rem;
}
blockquote {
  border-color: #fedb01;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #fedb01;
  color: #000000;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #fedb01;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #fedb01;
  border-bottom-color: #fedb01;
}
.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: #000000 !important;
  background-color: #fedb01 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #103178 !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%;
  width: 100%;
  height: auto;
}
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='%23fedb01' %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;
}
body {
  overflow-x: hidden;
}
p {
  margin-bottom: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
}
.container {
  max-width: 1220px;
}
a {
  transition: color 300ms ease !important;
  font-weight: 400 !important;
}
a.text-primary:hover {
  color: #3f69ff !important;
}
a.text-secondary:hover {
  color: #3f69ff !important;
}
a.text-success:hover {
  color: #3f69ff !important;
}
a.text-info:hover {
  color: #3f69ff !important;
}
a.text-warning:hover {
  color: #3f69ff !important;
}
a.text-danger:hover {
  color: #3f69ff !important;
}
a.text-white:hover {
  color: #3f69ff !important;
}
a.text-black:hover {
  color: #3f69ff !important;
}
.btn.btn-primary:hover {
  background-color: #14142b !important;
  border-color: #14142b !important;
  color: #ffffff !important;
}
.btn.btn-secondary {
  background: transparent !important;
  border: 1px solid #e2e3e9 !important;
  color: #14142b !important;
}
.btn.btn-secondary:hover {
  background: #e2e3e9 !important;
  color: #14142b !important;
}
.btn,
.btn-lg {
  box-shadow: none !important;
}
body {
  line-height: 1.667em;
  line-height: 30px;
}
.btn,
.btn-lg {
  margin-top: 0;
  margin-bottom: 0;
}
span.btn {
  line-height: 20px;
  transform-style: preserve-3d !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
span.btn:hover {
  transform: translate3d(0px, -4px, 0.01px) !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
a.btn {
  line-height: 20px;
  transform-style: preserve-3d !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
a.btn:hover {
  transform: translate3d(0px, -4px, 0.01px) !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
button {
  background-color: transparent;
  border-color: transparent;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.cid-sLnr1kEfeQ .navbar-dropdown {
  position: relative !important;
}
.cid-sLnr1kEfeQ .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sLnr1kEfeQ .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-sLnr1kEfeQ .dropdown-item:hover,
.cid-sLnr1kEfeQ .dropdown-item:focus {
  color: #fedb01 !important;
}
.cid-sLnr1kEfeQ .nav-dropdown .link {
  padding: 0 0em !important;
  font-weight: 400;
}
.cid-sLnr1kEfeQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sLnr1kEfeQ .nav-link {
  position: relative;
  padding: 0;
}
.cid-sLnr1kEfeQ .container {
  display: flex;
  margin: auto;
}
.cid-sLnr1kEfeQ .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sLnr1kEfeQ .dropdown-menu,
.cid-sLnr1kEfeQ .navbar.opened {
  background: #ffffff !important;
}
.cid-sLnr1kEfeQ .nav-item:focus,
.cid-sLnr1kEfeQ .nav-link:focus {
  outline: none;
}
.cid-sLnr1kEfeQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sLnr1kEfeQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sLnr1kEfeQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sLnr1kEfeQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sLnr1kEfeQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sLnr1kEfeQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sLnr1kEfeQ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sLnr1kEfeQ .navbar.opened {
  transition: all 0.3s;
}
.cid-sLnr1kEfeQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sLnr1kEfeQ .navbar .navbar-logo img {
  width: auto;
}
.cid-sLnr1kEfeQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sLnr1kEfeQ .navbar.collapsed {
  justify-content: center;
}
.cid-sLnr1kEfeQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sLnr1kEfeQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sLnr1kEfeQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sLnr1kEfeQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sLnr1kEfeQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sLnr1kEfeQ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sLnr1kEfeQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sLnr1kEfeQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sLnr1kEfeQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sLnr1kEfeQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sLnr1kEfeQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sLnr1kEfeQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sLnr1kEfeQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sLnr1kEfeQ .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sLnr1kEfeQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sLnr1kEfeQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sLnr1kEfeQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sLnr1kEfeQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sLnr1kEfeQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sLnr1kEfeQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sLnr1kEfeQ .navbar.navbar-short {
  min-height: 60px;
}
.cid-sLnr1kEfeQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sLnr1kEfeQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sLnr1kEfeQ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sLnr1kEfeQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sLnr1kEfeQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sLnr1kEfeQ .dropdown-item.active,
.cid-sLnr1kEfeQ .dropdown-item:active {
  background-color: transparent;
}
.cid-sLnr1kEfeQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sLnr1kEfeQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sLnr1kEfeQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sLnr1kEfeQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sLnr1kEfeQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sLnr1kEfeQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sLnr1kEfeQ ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.cid-sLnr1kEfeQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sLnr1kEfeQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sLnr1kEfeQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sLnr1kEfeQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sLnr1kEfeQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLnr1kEfeQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLnr1kEfeQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sLnr1kEfeQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLnr1kEfeQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sLnr1kEfeQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sLnr1kEfeQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLnr1kEfeQ .navbar-dropdown {
  padding: 19px 1rem;
}
.cid-sLnr1kEfeQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sLnr1kEfeQ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-end;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
  min-width: 340px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sLnr1kEfeQ .navbar {
    height: 70px;
  }
  .cid-sLnr1kEfeQ .navbar.opened {
    height: auto;
  }
  .cid-sLnr1kEfeQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sLnr1kEfeQ a {
  display: inline;
}
.cid-sLnr1kEfeQ img {
  display: inline;
  padding-right: 10px;
}
.cid-sLnr1kEfeQ .dropdown-toggle:after {
  display: none;
}
.cid-sLnr1kEfeQ .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-sLnr1kEfeQ .dropdown-item:hover {
  color: #3f69ff !important;
}
@media (max-width: 990px) {
  .cid-sLnr1kEfeQ .dropdown-menu {
    margin-top: 0px;
  }
  .cid-sLnr1kEfeQ .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-sLnr1kEfeQ .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-sLnr1kEfeQ .nav-item {
  margin-right: 32px;
}
.cid-sLnr1kEfeQ .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .cid-sLnr1kEfeQ ul li {
    height: 45px;
    display: list-item;
  }
}
.cid-sLnr1kEfeQ .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.cid-sLnr1kEfeQ .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.cid-sLnr1kEfeQ .navbar-nav {
  margin: auto;
}
.cid-sLnr1kEfeQ .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.cid-sLnr1kEfeQ .mbr-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.cid-sLnr1kEfeQ .btn {
  padding: 1rem 1.5625rem !important;
  display: inline-block;
  line-height: 20px;
  transform-style: preserve-3d !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
.cid-sLnr1kEfeQ .btn {
  border-radius: 1000px !important;
}
.cid-sLnr1kEfeQ .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.cid-sLnr1kEfeQ .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.cid-sLnr1kEfeQ .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sLnr1kEfeQ .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}
.cid-sLnr1kEfeQ .dropdown-item:focus {
  color: #3f69ff !important;
}
@media (max-width: 945px) {
  .cid-sLnr1kEfeQ .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-sLnr1kEfeQ .top {
    margin-top: 25px;
  }
}
.cid-sLnr1kEfeQ .btn:hover {
  transform: translate3d(0px, -4px, 0.01px) !important;
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
}
@media (min-width: 992px) {
  .cid-sLnr1kEfeQ .container,
  .cid-sLnr1kEfeQ .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-sLnr1kEfeQ li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .cid-sLnr1kEfeQ ul.navbar-nav {
    padding-left: 0;
  }
}
@media (max-width: 430px) {
  .cid-sLnr1kEfeQ .icons-menu {
    min-width: initial !important;
  }
  .cid-sLnr1kEfeQ a.btn {
    margin-top: 10px;
  }
}
.cid-sLnr1kEfeQ a.btn > span {
  margin-left: 0.5rem;
}
.cid-sLnr1ytTKU {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sLnr1ytTKU .row {
  align-items: center;
  justify-content: space-between;
}
.cid-sLnr1ytTKU .mbr-section-title {
  width: 100%;
  text-align: left;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #353535;
}
.cid-sLnr1ytTKU .mbr-section-subtitle {
  color: #4c4c4c;
  width: 100%;
  text-align: left;
}
.cid-sLnr1ytTKU .mbr-text {
  color: #8c8c95;
  margin-bottom: 36px;
}
.cid-sLnr1ytTKU .right-side {
  max-width: 554px;
}
.cid-sLnr1ytTKU .rs {
  margin-right: 60px;
}
.cid-sLnr1ytTKU .mbr-section-btn {
  width: auto;
  display: inline-block;
}
.cid-sLnr1ytTKU .margin {
  margin-right: 14px;
}
.cid-sLnr1ytTKU .gray {
  padding: 45px 0;
  background-color: #eff0f6;
}
.cid-sLnr1ytTKU img {
  position: relative;
  right: 40px;
}
@media (max-width: 767px) {
  .cid-sLnr1ytTKU .gray {
    padding: 0px 0 5px;
  }
  .cid-sLnr1ytTKU img {
    right: initial;
    width: 90%;
    margin: auto;
    top: -35px;
  }
  .cid-sLnr1ytTKU .col-md-5 {
    padding-top: 90px;
  }
}
@media (max-width: 430px) {
  .cid-sLnr1ytTKU .b {
    margin-bottom: 10px;
  }
}
.cid-sLnr1ytTKU .btn {
  margin-top: 20px;
}
.cid-sLnr1ytTKU a.btn > span {
  margin-left: 0.5rem;
}
.cid-sLnr1ytTKU .mbr-text,
.cid-sLnr1ytTKU .button-align {
  color: #353535;
  text-align: left;
}
.cid-tc4DfXyzsK {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/close-up-medical-form-1200x800.jpg");
}
.cid-tc4DfXyzsK .card-box {
  width: fit-content;
}
.cid-tc4DfXyzsK .cards {
  display: flex;
  flex-direction: row;
}
@media (max-width: 992px) {
  .cid-tc4DfXyzsK .cards {
    flex-direction: column;
    align-items: center;
  }
}
.cid-tc4DfXyzsK .card-title {
  padding: 0;
  margin: 0;
}
.cid-tc4DfXyzsK .card-wrapper {
  border: 1px solid #dadee8;
  padding: 0.6rem;
  background: #f0f2f5;
  margin-left: -1px;
  display: flex;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tc4DfXyzsK .card-wrapper {
    width: 100%;
  }
}
.cid-tc4DfXyzsK .card-icon {
  font-size: 1.5rem;
  color: currentColor;
  padding-right: 0.8rem;
}
.cid-tc4DfXyzsK .card-title,
.cid-tc4DfXyzsK .card-icon {
  color: #103178;
}
.cid-tcZoU2gfVl {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #eff0f6;
}
@media (min-width: 1500px) {
  .cid-tcZoU2gfVl .container {
    max-width: 1400px;
  }
}
.cid-tcZoU2gfVl .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #5b6c8f;
  margin-bottom: 2rem;
}
.cid-tcZoU2gfVl .card-wrapper {
  margin-top: 3rem;
}
.cid-tcZoU2gfVl .row {
  justify-content: center;
}
.cid-tcZoU2gfVl .card-title,
.cid-tcZoU2gfVl .iconfont-wrapper {
  color: #103178;
}
.cid-tcZoU2gfVl .card-text {
  color: #ffffff;
}
.cid-tcZoU2gfVl .mbr-section-title {
  color: #353535;
  text-align: center;
}
.cid-tcZoU2gfVl .mbr-section-subtitle {
  color: #353535;
}
.cid-tcZsvLJyB6 {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #dae3f1;
}
.cid-tcZsvLJyB6 .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #fedb01;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 26px;
}
.cid-tcZsvLJyB6 .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-tcZsvLJyB6 .mbr-section-subtitle {
  color: #103178;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-tcZsvLJyB6 .main-title {
  margin-bottom: 36px;
  color: #404040;
}
.cid-tcZsvLJyB6 .main-title.display-2 {
  line-height: 1.375;
}
.cid-tcZsvLJyB6 .main-text {
  color: #606060;
}
.cid-tcZsvLJyB6 .main-text.display-4 {
  line-height: 1.75;
}
.cid-tcZsvLJyB6 .media-container-row {
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.04);
}
.cid-tcZsvLJyB6 .plan {
  word-break: break-word;
  display: flex;
  flex-direction: column;
  height: fit-content;
  position: relative;
  max-width: 330px;
  padding-right: 0;
  padding-left: 0;
  transition: all 0.3s;
  border-radius: 4px;
}
.cid-tcZsvLJyB6 .plan .plan-header {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
  background-color: #fafafa;
  border-radius: 4px;
}
.cid-tcZsvLJyB6 .plan .plan-header .plan-title {
  color: #000000;
}
.cid-tcZsvLJyB6 .plan .plan-header .plan-price .price-figure {
  color: #404040;
}
.cid-tcZsvLJyB6 .plan .plan-header .plan-price .price-figure .price-currency {
  display: inline-block;
}
.cid-tcZsvLJyB6 .plan .plan-header .plan-price .price-figure .price-currency.display-7 {
  font-size: 18px;
  line-height: 1;
}
.cid-tcZsvLJyB6 .plan .plan-header .plan-price .price-figure .price-value {
  display: inline-block;
}
.cid-tcZsvLJyB6 .plan .plan-header .plan-price .price-figure .price-value.display-1 {
  font-size: 60px;
  line-height: 1;
}
.cid-tcZsvLJyB6 .plan .plan-header .plan-price .price-figure .price-duration {
  display: inline-block;
}
.cid-tcZsvLJyB6 .plan .plan-header .plan-price .price-figure .price-duration.display-4 {
  font-size: 16px;
  line-height: 1;
}
.cid-tcZsvLJyB6 .plan .plan-body {
  padding-bottom: 2rem;
  background-color: #fafafa;
  border-radius: 4px;
}
.cid-tcZsvLJyB6 .plan .plan-body .plan-list .list-group .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  color: #606060;
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #fafafa;
}
.cid-tcZsvLJyB6 .plan .plan-body .plan-list .list-group .list-group-item span {
  font-weight: 600;
}
.cid-tcZsvLJyB6 .plan .plan-body .plan-list .list-group.display-4 {
  line-height: 1;
}
.cid-tcZsvLJyB6 .plan .plan-body .mbr-section-btn {
  padding-top: 45px;
  text-align: center;
}
.cid-tcZsvLJyB6 .plan .plan-body .mbr-section-btn .btn-sm {
  padding: 0.6rem 4.4rem;
}
.cid-tcZsvLJyB6 .plan .plan-body .mbr-section-btn .btn {
  padding: 18px 26px 16px;
}
.cid-tcZsvLJyB6 .plan .plan-body .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-tcZsvLJyB6 .plan .plan-body .mbr-section-btn .btn-primary:hover {
  box-shadow: 0 0 0 5px rgba(132, 138, 189, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(132, 138, 189, 0.2) !important;
}
@media (max-width: 550px) {
  .cid-tcZsvLJyB6 .price-figure {
    font-size: 4.25rem;
  }
}
.cid-tcZsvLJyB6 .plan .plan-header .plan-title {
  color: #353535;
}
.cid-tcZsvLJyB6 .plan .plan-header .plan-price .price-figure SPAN {
  text-align: center;
}
.cid-tcZsvLJyB6 .plan .plan-body .plan-list .list-group .list-group-item,
.cid-tcZsvLJyB6 .plan .plan-body .mbr-section-btn {
  text-align: center;
}
.cid-tcYnpTqRrp {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background: #fafafa;
}
.cid-tcYnpTqRrp .container-fluid {
  max-width: 1500px;
}
.cid-tcYnpTqRrp .icon1 {
  font-size: 2.2rem;
}
.cid-tcYnpTqRrp .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-tcYnpTqRrp .team-card:hover {
  transform: translateY(-10px);
}
@media (min-width: 1400px) {
  .cid-tcYnpTqRrp .col-lg-3 {
    padding: 0 1.5rem;
  }
}
.cid-tcYnpTqRrp .card-wrap {
  height: 100%;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 4px;
}
.cid-tcYnpTqRrp .card-wrap:hover img {
  transform: scale(1.1);
}
@media (max-width: 991px) {
  .cid-tcYnpTqRrp .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-tcYnpTqRrp .card-wrap .image-wrap img {
  width: 100%;
  transition: all 0.3s;
  height: 300px;
  object-fit: cover;
}
.cid-tcYnpTqRrp .card-wrap .content-wrap {
  margin: auto;
}
@media (min-width: 768px) {
  .cid-tcYnpTqRrp .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tcYnpTqRrp .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-tcYnpTqRrp .content-wrap {
  height: 100%;
  justify-content: space-between;
  display: flex;
  flex-direction: column;
}
.cid-tcYnpTqRrp .text-wrapper {
  display: flex;
}
.cid-tcYnpTqRrp .text-wrapper span {
  color: #fedb01;
  padding-right: 1rem;
}
.cid-tcYnpTqRrp .mbr-main-subtitle {
  background: #fedb01;
  width: fit-content;
  padding: 0.4rem 0.8rem;
  position: relative;
  margin-bottom: 2rem;
  color: #353535;
}
.cid-tcYnpTqRrp .mbr-main-subtitle:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -18px;
  border-left: 24px solid #fedb01;
  border-bottom: 18px solid transparent;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-tcYnpTqRrp .mbr-main-subtitle {
    margin: auto;
    margin-bottom: 2rem;
  }
}
.cid-tcYnpTqRrp .social {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.5rem;
  padding-left: 3rem;
}
.cid-tcYnpTqRrp .social .mbr-iconfont {
  padding-right: 0.6rem;
  color: #fedb01;
}
@media (max-width: 767px) {
  .cid-tcYnpTqRrp .social {
    padding-left: 0rem;
  }
}
.cid-tcYnpTqRrp .icons-menu {
  display: flex;
}
@media (max-width: 767px) {
  .cid-tcYnpTqRrp .icons-menu {
    justify-content: center;
  }
}
.cid-tcYnpTqRrp .image-wrap {
  clip-path: polygon(100% 0, 100% 100%, 0% 94%, 0% 0%);
}
.cid-tcYnpTqRrp .iconfont-wrapper {
  font-size: 1.2rem;
  padding: 0.4rem 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-tcYnpTqRrp .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #fedb01;
  z-index: 0;
}
.cid-tcYnpTqRrp .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-tcYnpTqRrp .mbr-iconfont {
  position: relative;
  fomt-size: 1rem;
  color: #272727;
}
.cid-tcYnpTqRrp .card-text,
.cid-tcYnpTqRrp .mbr-section-btn,
.cid-tcYnpTqRrp .social-row {
  color: #353535;
}
.cid-tcYnpTqRrp .mbr-role,
.cid-tcYnpTqRrp .social-row {
  color: #353535;
}
.cid-tcYnpTqRrp .card-title,
.cid-tcYnpTqRrp .social-row {
  color: #272727;
}
.cid-tcYnpTqRrp .mbr-section-title {
  color: #353535;
}
.cid-tcYnpTqRrp .card1-text {
  color: #272727;
}
.cid-tcYnpTqRrp .soc-link,
.cid-tcYnpTqRrp .soc-wrapper {
  color: #272727;
}
.cid-td6tSUlXeg {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-td6tSUlXeg .main_header {
  margin-bottom: 2.5rem;
}
.cid-td6tSUlXeg .mbr-section-subtitle {
  margin-bottom: .75rem;
  line-height: 1;
  color: #103178;
}
.cid-td6tSUlXeg .mbr-section-title {
  margin-bottom: 1.5rem;
}
.cid-td6tSUlXeg .mbr-text {
  letter-spacing: -0.025rem;
}
.cid-td6tSUlXeg .card {
  border-radius: 0;
}
.cid-td6tSUlXeg .card .card-box {
  border-top: 1px dotted rgba(55, 60, 66, 0.5);
}
.cid-td6tSUlXeg .card .card-box:last-child .card-box {
  border-bottom: 1px dotted rgba(55, 60, 66, 0.5);
}
@media (min-width: 992px) {
  .cid-td6tSUlXeg .card:nth-child(1) .card-wrapper {
    padding-left: 0;
  }
  .cid-td6tSUlXeg .card:nth-child(2) .card-wrapper {
    padding-left: 8rem;
  }
  .cid-td6tSUlXeg .card:nth-child(3) .card-wrapper {
    padding-left: 4rem;
  }
  .cid-td6tSUlXeg .card:nth-child(4) .card-wrapper {
    padding-left: 0;
  }
}
.cid-td6tSUlXeg .card:nth-child(1) .circle_fill {
  background-color: #103178;
}
.cid-td6tSUlXeg .card:nth-child(2) .circle_fill {
  background-color: #eff0f6;
}
.cid-td6tSUlXeg .card:nth-child(3) .circle_fill {
  background-color: #3f69ff;
}
.cid-td6tSUlXeg .card:nth-child(4) .circle_fill {
  background-color: #103178;
}
.cid-td6tSUlXeg .card-box {
  padding-top: 3rem;
  padding-bottom: 3rem;
  margin-top: .75rem;
  margin-bottom: .75rem;
  height: 100%;
  display: flex;
}
.cid-td6tSUlXeg .content_box {
  display: flex;
}
.cid-td6tSUlXeg .content_title {
  min-width: 350px;
  max-width: 30%;
  padding-right: 6rem;
}
.cid-td6tSUlXeg .content_text {
  max-width: 45%;
}
.cid-td6tSUlXeg .card-text {
  margin-bottom: .5rem;
}
.cid-td6tSUlXeg .circle_animation {
  display: inline-flex;
  position: relative;
  padding-right: 3rem;
  margin-bottom: 1.25rem;
  width: 195px;
}
.cid-td6tSUlXeg .circle_animation .circle {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
}
.cid-td6tSUlXeg .circle_animation .circle_fill {
  -webkit-animation: circleFill 5s infinite;
  animation: circleFill 5s infinite;
}
.cid-td6tSUlXeg .circle_animation .circle_null {
  margin-left: -2rem;
  border: 1px solid #fedb01;
  -webkit-animation: circleNull 5s infinite;
  animation: circleNull 5s infinite;
}
@keyframes circleFill {
  0%,
  100% {
    transform: translateX(75%);
    animationTimingFunction: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translateX(0);
    animationTimingFunction: cubic-bezier(0, 0, 0.2, 1);
  }
}
@keyframes circleNull {
  0%,
  100% {
    transform: translateX(-50%);
    animationTimingFunction: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translateX(0);
    animationTimingFunction: cubic-bezier(0, 0, 0.2, 1);
  }
}
@media (max-width: 991px) {
  .cid-td6tSUlXeg .content_title {
    padding-right: 2rem;
    min-width: 160px;
  }
  .cid-td6tSUlXeg .content_text {
    max-width: none;
  }
}
@media (max-width: 767px) {
  .cid-td6tSUlXeg .main_header {
    margin-bottom: 1.5rem;
  }
  .cid-td6tSUlXeg .mbr-section-subtitle {
    margin-bottom: .25rem;
  }
  .cid-td6tSUlXeg .mbr-section-title {
    margin-bottom: .75rem;
  }
  .cid-td6tSUlXeg .card .card-box:last-child {
    border-bottom: none;
  }
  .cid-td6tSUlXeg .content_box {
    flex-direction: column;
  }
  .cid-td6tSUlXeg .content_title {
    min-width: none;
    max-width: none;
    padding-right: 0;
  }
  .cid-td6tSUlXeg .card-title {
    margin-bottom: 1.5rem;
  }
  .cid-td6tSUlXeg .card-text {
    margin-bottom: 1rem;
  }
  .cid-td6tSUlXeg .circle_animation {
    padding-right: 1rem;
    margin-bottom: 0;
  }
  .cid-td6tSUlXeg .circle_animation .circle {
    width: 40px;
    height: 40px;
  }
  .cid-td6tSUlXeg .circle_animation .circle_null {
    margin-left: -1rem;
  }
}
.cid-td6tSUlXeg .card-title {
  color: #103178;
}
.cid-td6tSUlXeg .card-text,
.cid-td6tSUlXeg .linkBtn {
  color: #353535;
}
.cid-td052vJxXi {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/doctor-standing-with-folder-stethoscope-1-2000x1333.jpeg");
}
.cid-td052vJxXi .mbr-overlay {
  background-color: #353535;
  opacity: 0;
}
@media (max-width: 992px) {
  .cid-td052vJxXi {
    background-position: right;
  }
}
.cid-td052vJxXi input,
.cid-td052vJxXi textarea {
  border-radius: 0;
}
.cid-td052vJxXi input:hover,
.cid-td052vJxXi textarea:hover {
  border: 1px solid transparent !important;
}
.cid-td052vJxXi .row {
  justify-content: flex-end;
}
.cid-td052vJxXi textarea {
  min-height: 200px;
}
.cid-td052vJxXi .col-auto {
  margin-right: auto;
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-td052vJxXi .col-auto {
    margin: auto;
  }
}
.cid-td052vJxXi .social {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.5rem;
}
.cid-td052vJxXi .social .mbr-iconfont {
  padding-right: 0.6rem;
  color: #fedb01;
  font-size: 1.2rem;
}
.cid-td052vJxXi .mbr-main-subtitle {
  background: #fedb01;
  width: fit-content;
  padding: 0.5rem 1rem;
  position: relative;
  margin-bottom: 2rem;
}
.cid-td052vJxXi .mbr-main-subtitle:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -18px;
  border-left: 24px solid #fedb01;
  border-bottom: 18px solid transparent;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-td052vJxXi .mbr-main-subtitle {
    margin: auto;
    margin-bottom: 2rem;
  }
}
.cid-td052vJxXi .btn {
  padding: 1rem 3rem;
}
.cid-td052vJxXi .form-control,
.cid-td052vJxXi .field-input {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-td052vJxXi .form-control::-webkit-input-placeholder,
.cid-td052vJxXi .field-input::-webkit-input-placeholder,
.cid-td052vJxXi .form-control::-webkit-input-placeholder,
.cid-td052vJxXi .field-input::-webkit-input-placeholder {
  color: #bbbbbb;
}
.cid-td052vJxXi .form-control:-moz-placeholder,
.cid-td052vJxXi .field-input:-moz-placeholder,
.cid-td052vJxXi .form-control:-moz-placeholder,
.cid-td052vJxXi .field-input:-moz-placeholder {
  color: #bbbbbb;
}
.cid-td052vJxXi .form-control:hover,
.cid-td052vJxXi .field-input:hover,
.cid-td052vJxXi .form-control:focus,
.cid-td052vJxXi .field-input:focus {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-td052vJxXi .form-control:hover::-webkit-input-placeholder,
.cid-td052vJxXi .field-input:hover::-webkit-input-placeholder,
.cid-td052vJxXi .form-control:focus::-webkit-input-placeholder,
.cid-td052vJxXi .field-input:focus::-webkit-input-placeholder,
.cid-td052vJxXi .form-control:hover::-webkit-input-placeholder,
.cid-td052vJxXi .field-input:hover::-webkit-input-placeholder,
.cid-td052vJxXi .form-control:focus::-webkit-input-placeholder,
.cid-td052vJxXi .field-input:focus::-webkit-input-placeholder {
  color: #bbbbbb;
}
.cid-td052vJxXi .form-control:hover:-moz-placeholder,
.cid-td052vJxXi .field-input:hover:-moz-placeholder,
.cid-td052vJxXi .form-control:focus:-moz-placeholder,
.cid-td052vJxXi .field-input:focus:-moz-placeholder,
.cid-td052vJxXi .form-control:hover:-moz-placeholder,
.cid-td052vJxXi .field-input:hover:-moz-placeholder,
.cid-td052vJxXi .form-control:focus:-moz-placeholder,
.cid-td052vJxXi .field-input:focus:-moz-placeholder {
  color: #bbbbbb;
}
.cid-td052vJxXi .jq-number__spin:hover,
.cid-td052vJxXi .jq-number__spin:focus {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-td052vJxXi .jq-number__spin {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-td052vJxXi .jq-selectbox li,
.cid-td052vJxXi .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-td052vJxXi .jq-selectbox li:hover,
.cid-td052vJxXi .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-td052vJxXi .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-td052vJxXi .jq-number__spin.minus:hover:after,
.cid-td052vJxXi .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-td052vJxXi .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-td052vJxXi .jq-number__spin.minus:after,
.cid-td052vJxXi .jq-number__spin.plus:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-td052vJxXi .mbr-section-text {
  color: #353535;
}
.cid-td052vJxXi .mbr-section-title {
  color: #000000;
}
.cid-td052vJxXi .soc-link,
.cid-td052vJxXi .soc-wrapper {
  color: #000000;
}
.cid-td6xa3BTKs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
@media (max-width: 767px) {
  .cid-td6xa3BTKs .row {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .cid-td6xa3BTKs .col-text {
    padding: 0 0 0 0;
  }
}
.cid-td6xa3BTKs .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  height: 100%;
  background-color: #dae3f1;
}
@media (max-width: 767px) {
  .cid-td6xa3BTKs .text-wrapper {
    text-align: center !important;
    padding-bottom: 54px;
  }
}
.cid-td6xa3BTKs .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #103178;
}
@media (max-width: 767px) {
  .cid-td6xa3BTKs .label-text {
    text-align: center !important;
  }
}
.cid-td6xa3BTKs .mbr-section-title {
  width: 100%;
  color: #000000;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .cid-td6xa3BTKs .mbr-section-title {
    text-align: center !important;
  }
}
.cid-td6xa3BTKs .mbr-text {
  letter-spacing: inherit;
  color: #353535;
  width: 100%;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .cid-td6xa3BTKs .mbr-text {
    text-align: center !important;
  }
}
.cid-td6xa3BTKs .item {
  display: flex;
  align-items: center;
  margin: 12px 0;
}
.cid-td6xa3BTKs .btn-container {
  width: 100%;
  margin-top: auto;
}
.cid-td6xa3BTKs .mbr-section-btn .btn {
  padding: 0;
}
.cid-td6xa3BTKs .mbr-section-btn .btn span {
  margin-right: 8px;
  transition: 0.2s all;
}
.cid-td6xa3BTKs .mbr-section-btn .btn:hover span {
  margin-left: 16px;
  margin-right: 0;
}
.cid-td6xa3BTKs .col-cards {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .cid-td6xa3BTKs .col-cards {
    padding: 0;
    padding-left: 1.8%;
  }
}
@media (min-width: 992px) {
  .cid-td6xa3BTKs .col-cards {
    padding-left: 5%;
  }
}
.cid-td6xa3BTKs .cards-wrap {
  display: flex;
  flex-wrap: wrap;
  padding: 30px;
  width: 100%;
}
.cid-td6xa3BTKs .cards-wrap:hover {
  background-color: #dae3f1;
}
.cid-td6xa3BTKs .card {
  padding: 30px;
  background-color: #fafafa;
  transition: 0.4s all;
  border-radius: 0;
}
.cid-td6xa3BTKs .card:hover {
  background-color: #dae3f1;
}
@media (min-width: 768px) {
  .cid-td6xa3BTKs .card:hover {
    transform: translate(0px, -10px);
  }
}
.cid-td6xa3BTKs .card-wrap {
  display: flex;
  flex-direction: column;
}
.cid-td6xa3BTKs .img-container {
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .cid-td6xa3BTKs .img-container {
    display: flex;
    justify-content: center;
  }
}
.cid-td6xa3BTKs .img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 93px;
  height: 93px;
  position: relative;
}
.cid-td6xa3BTKs .img-wrap img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-td6xa3BTKs .img-bg {
  background-color: #F0C48A;
  min-width: 75%;
  height: 75%;
  border-radius: 50%;
  position: absolute;
}
.cid-td6xa3BTKs .card-title {
  color: #103178;
  margin-bottom: 8px;
  text-align: left;
}
.cid-td6xa3BTKs .card-text {
  color: #353535;
  margin-bottom: 0;
}
.cid-td6xa3BTKs .mbr-section-title,
.cid-td6xa3BTKs .mbr-section-btn {
  color: #353535;
}
.cid-tdgY7BRicO {
  padding-top: 120px;
  padding-bottom: 75px;
  background-color: #fafafa;
}
.cid-tdgY7BRicO .wrap-block {
  padding-right: 30px;
}
.cid-tdgY7BRicO .cards {
  padding-left: 30px;
}
.cid-tdgY7BRicO .image-wrap img {
  max-width: 100%;
  max-height: 800px;
  z-index: 9;
  position: relative;
}
.cid-tdgY7BRicO .wrap-block .contents {
  margin-bottom: 40px;
}
.cid-tdgY7BRicO .wrap-block .contents .mbr-subtitle {
  color: #103178;
  margin-bottom: 14px;
}
.cid-tdgY7BRicO .wrap-block .contents .mbr-section-title {
  margin-bottom: 5px;
  color: #fedb01;
}
.cid-tdgY7BRicO .wrap-block .contents .mbr-text {
  margin-top: 17px;
}
.cid-tdgY7BRicO .wrap-block .contents h3 {
  color: #3f69ff;
}
.cid-tdgY7BRicO .wrap-block .contents h4 {
  color: #3f69ff;
}
.cid-tdgY7BRicO .wrap-block .contents .mbr-section-btn .btn {
  margin-left: 0 !important;
}
.cid-tdgY7BRicO .cards-wrap {
  flex-direction: column;
}
.cid-tdgY7BRicO .wrapper {
  border-radius: 0.25rem;
  margin-bottom: 26px;
}
.cid-tdgY7BRicO .wrapper .img {
  margin-bottom: 20px;
}
.cid-tdgY7BRicO .wrapper .img .mbr-iconfont {
  font-size: 50px;
  top: 0;
  color: #103178;
  border-radius: 50%;
}
.cid-tdgY7BRicO .wrapper .mbr-card-title {
  color: #fedb01;
  padding-bottom: 14px;
  margin-bottom: 10px;
}
.cid-tdgY7BRicO .wrapper .mbr-text {
  margin-bottom: 19px;
  color: #3f69ff;
}
@media (max-width: 767px) {
  .cid-tdgY7BRicO * {
    text-align: left;
  }
}
.cid-tdgY7BRicO .wrap-block .contents h4,
.cid-tdgY7BRicO .menu-content-right,
.cid-tdgY7BRicO .mbr-section-btn {
  color: #353535;
}
.cid-tdgY7BRicO .wrap-block .contents .mbr-subtitle,
.cid-tdgY7BRicO .menu-content-right {
  color: #767676;
}
.cid-tdgY7BRicO .wrapper .mbr-text,
.cid-tdgY7BRicO .img {
  color: #353535;
}
.cid-tdgY7BRicO .wrap-block .contents .mbr-section-title,
.cid-tdgY7BRicO .menu-content-right {
  color: #103178;
}
.cid-tdgY7BRicO .wrapper .mbr-card-title,
.cid-tdgY7BRicO .img {
  color: #103178;
}
.cid-tdhxsohTAU {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #dae3f1;
}
.cid-tdhxsohTAU .row {
  flex-direction: row-reverse;
}
.cid-tdhxsohTAU .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #fedb01;
}
.cid-tdhxsohTAU .svg-top .st0 {
  fill: #dae3f1;
}
@media (max-width: 992px) {
  .cid-tdhxsohTAU .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
@media (min-width: 1400px) {
  .cid-tdhxsohTAU .col-12 {
    padding: 0 2rem;
  }
  .cid-tdhxsohTAU .row {
    margin: 0 -2rem;
  }
}
.cid-tdhxsohTAU .mbr-text,
.cid-tdhxsohTAU .mbr-section-btn {
  color: #353535;
}
.cid-tdhxsohTAU .mbr-section-title {
  color: #103178;
}
.cid-td6EtSNlka {
  border-top: 3px solid #fafafa;
  border-bottom: 3px solid #fafafa;
  margin-top: -3px;
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-td6EtSNlka .section-head {
  margin-bottom: 80px;
}
.cid-td6EtSNlka .card .card-header {
  background-color: transparent;
  border: 3px solid;
  border-color: #fafafa;
  padding: 1rem;
  border-radius: 0 !important;
}
@media (min-width: 992px) {
  .cid-td6EtSNlka .card .card-header {
    padding: 19px;
  }
}
.cid-td6EtSNlka .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-td6EtSNlka .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #fafafa;
}
.cid-td6EtSNlka .panel-body,
.cid-td6EtSNlka .card-header {
  padding: 1rem 19px 0;
}
.cid-td6EtSNlka .card {
  padding: 1rem;
  background-color: #8497c7;
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .cid-td6EtSNlka .card {
    padding: 40px;
  }
}
.cid-td6EtSNlka .panel-title-edit {
  color: #fafafa;
}
.cid-td6EtSNlka .image-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-td6EtSNlka .image-wrapper {
    padding: .5rem;
  }
}
.cid-td6EtSNlka .image-wrapper img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  vertical-align: middle;
  display: inline-block;
}
.cid-td6EtSNlka .mbr-section-title {
  color: #103178;
}
.cid-td6EtSNlka .panel-text {
  color: #fafafa;
}
.cid-tdhZaQy9RP {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #dae3f1;
}
.cid-tdhZaQy9RP .mbri-left:before {
  content: "\f053" !important;
}
.cid-tdhZaQy9RP .mbri-right:before {
  content: "\f054" !important;
}
.cid-tdhZaQy9RP .carousel-control-next,
.cid-tdhZaQy9RP .carousel-control-prev {
  opacity: 1;
  width: 45px;
  height: 45px;
}
.cid-tdhZaQy9RP .profession {
  display: inline;
  font-weight: 700;
  color: #353535;
}
.cid-tdhZaQy9RP .author {
  display: inline;
  margin: auto 0;
  font-weight: 700;
  color: #353535;
}
.cid-tdhZaQy9RP .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}
.cid-tdhZaQy9RP .carousel-item {
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-tdhZaQy9RP .carousel-item.active,
.cid-tdhZaQy9RP .carousel-item-next,
.cid-tdhZaQy9RP .carousel-item-prev {
  display: flex;
}
.cid-tdhZaQy9RP .mbr-section-subtitle {
  margin-bottom: 0.8rem;
  color: #353535;
  font-weight: 700;
}
.cid-tdhZaQy9RP .testimonials-slider__icon {
  font-size: 150px;
  width: 100px;
  color: #14287f;
  font-weight: 700;
  display: inline-block;
}
.cid-tdhZaQy9RP .line::before {
  content: "";
  display: inline-block;
  height: 2px;
  width: 40px;
  background: #14287f;
  vertical-align: middle;
  margin-right: 20px;
}
.cid-tdhZaQy9RP .carousel-controls a {
  transition: 0.3s;
  border: 2px solid #14287f;
  border-radius: 50%;
}
.cid-tdhZaQy9RP .carousel-controls a span {
  font-size: 1rem !important;
  color: #14287f;
}
.cid-tdhZaQy9RP .carousel-controls a:hover {
  background-color: #14287f;
  border-color: #14287f;
}
.cid-tdhZaQy9RP .carousel-controls a:hover span {
  color: #ffffff;
}
.cid-tdhZaQy9RP .mbr-section-title {
  margin-bottom: 3.2rem;
}
.cid-tdhZaQy9RP .mbr-text {
  margin-bottom: 2.4rem;
}
.cid-tdhZaQy9RP .author-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-tdhZaQy9RP h3,
.cid-tdhZaQy9RP h4 {
  margin: 0;
  padding: 0;
}
.cid-tdhZaQy9RP .block-bottom {
  padding: 0rem;
}
@media (max-width: 767px) {
  .cid-tdhZaQy9RP .wrapper-block {
    display: flex;
    margin-top: 5.5rem;
  }
  .cid-tdhZaQy9RP .carousel-control-next {
    left: 4.3rem;
  }
  .cid-tdhZaQy9RP .carousel-control-prev {
    position: absolute;
    left: 0.8rem !important;
  }
  .cid-tdhZaQy9RP .testimonials-slider__icon {
    display: none;
  }
  .cid-tdhZaQy9RP .carousel-controls a {
    top: 7rem;
    bottom: auto;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-tdhZaQy9RP .wrapper-block {
    display: flex;
    margin-top: 5.5rem;
  }
  .cid-tdhZaQy9RP .carousel-control-next {
    left: 4.3rem;
  }
  .cid-tdhZaQy9RP .carousel-control-prev {
    position: absolute;
    left: 0.8rem !important;
  }
  .cid-tdhZaQy9RP .testimonials-slider__icon {
    line-height: 80px;
    font-size: 100px;
    margin-right: 1rem;
  }
  .cid-tdhZaQy9RP .carousel-controls a {
    top: 9rem;
    bottom: auto;
  }
}
@media (min-width: 992px) {
  .cid-tdhZaQy9RP .wrapper-block {
    display: flex;
  }
  .cid-tdhZaQy9RP .carousel-control-next {
    right: 2.2rem;
  }
  .cid-tdhZaQy9RP .carousel-control-prev {
    position: absolute;
    right: 5.7rem !important;
    left: auto;
  }
  .cid-tdhZaQy9RP .testimonials-slider__icon {
    line-height: 105px;
    margin-right: 2rem;
  }
  .cid-tdhZaQy9RP .carousel-controls a {
    top: 3.5rem;
    bottom: auto;
  }
}
.cid-tdhZaQy9RP .icon-left {
  margin-right: 0.1rem;
}
.cid-tdhZaQy9RP .icon-right {
  margin-left: 0.1rem;
}
.cid-tdhZaQy9RP H3 {
  color: #14287f;
}
.cid-tdhZaQy9RP .mbr-text,
.cid-tdhZaQy9RP .mbr-section-btn {
  color: #353535;
}
.cid-tdhYCLrH3J {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #eff0f6;
}
.cid-tdhYCLrH3J .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.7;
}
.cid-tdhYCLrH3J .text-content .mbr-subtitle {
  color: #103178;
}
.cid-tdhYCLrH3J .text-content .mbr-section-title {
  color: #fedb01;
}
.cid-tdhYCLrH3J .text-content .mbr-text {
  color: #3f69ff;
}
.cid-tdhYCLrH3J .text-content .list-block {
  margin-top: 16px;
  padding-bottom: 16px;
}
.cid-tdhYCLrH3J .text-content .list-block .card-img {
  width: auto;
}
.cid-tdhYCLrH3J .text-content .list-block .card-img span {
  color: #103178;
  font-size: 1.5rem;
}
.cid-tdhYCLrH3J .text-content .list-block .list-item-title {
  color: #fedb01;
  transition: all .3s linear 0s;
}
.cid-tdhYCLrH3J .text-content .list-block .list-item-title:hover {
  color: #103178;
}
.cid-tdhYCLrH3J .text-content .list-block .list-item-text {
  padding-top: 10px;
  color: #3f69ff;
  margin-bottom: 0;
}
.cid-tdhYCLrH3J .text-content .list-block.last {
  border-bottom: none;
  margin-bottom: 20px;
  padding-bottom: 0;
}
.cid-tdhYCLrH3J .text-content .social {
  font-size: 1.2rem;
}
.cid-tdhYCLrH3J .text-content .social span {
  margin-right: 11.2px;
  margin-bottom: 8px;
  transition: 0.3s all;
  color: #13287d;
}
.cid-tdhYCLrH3J .text-content .social span:hover {
  color: #279e64;
  transition: 0.3s all;
}
.cid-tdhYCLrH3J .card-img {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  text-align: left;
}
.cid-tdhYCLrH3J .list-block {
  position: relative;
}
.cid-tdhYCLrH3J .list-block h4,
.cid-tdhYCLrH3J .list-block p {
  padding-left: 2.625rem;
}
.cid-tdhYCLrH3J .card-img {
  display: block;
}
.cid-tdhYCLrH3J input,
.cid-tdhYCLrH3J textarea {
  border-radius: 3px;
  min-height: 3rem;
  padding: 13px 20px !important;
  font-size: 13px;
  color: #eff0f6;
  height: 60px;
}
.cid-tdhYCLrH3J .form-control,
.cid-tdhYCLrH3J .field-input {
  padding: 13px 20px !important;
  background-color: #ffffff;
  border-color: #000000;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tdhYCLrH3J .form-control:hover,
.cid-tdhYCLrH3J .field-input:hover,
.cid-tdhYCLrH3J .form-control:focus,
.cid-tdhYCLrH3J .field-input:focus {
  background-color: #f7f7f7;
  border-color: #279e64;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tdhYCLrH3J .form-control:focus,
.cid-tdhYCLrH3J .field-input:focus {
  box-shadow: 0 2px 9px 2px rgba(0, 0, 0, 0.15);
}
.cid-tdhYCLrH3J input::-webkit-input-placeholder,
.cid-tdhYCLrH3J textarea::-webkit-input-placeholder {
  color: #6d7a8c;
}
.cid-tdhYCLrH3J input:-moz-placeholder,
.cid-tdhYCLrH3J textarea:-moz-placeholder {
  color: #6d7a8c;
}
.cid-tdhYCLrH3J .jq-selectbox li,
.cid-tdhYCLrH3J .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-tdhYCLrH3J .jq-selectbox li:hover,
.cid-tdhYCLrH3J .jq-selectbox li.selected {
  background-color: #f7f7f7;
  color: #000000;
}
.cid-tdhYCLrH3J .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-tdhYCLrH3J .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #f7f7f7;
}
.cid-tdhYCLrH3J .mbr-form {
  max-width: 550px;
}
.cid-tdhYCLrH3J .mbr-form .content-title {
  color: #fedb01;
  margin-bottom: 20px;
}
.cid-tdhYCLrH3J .mbr-form .content-subtitle {
  color: #3f69ff;
}
.cid-tdhYCLrH3J .mbr-form textarea {
  min-height: 100px;
  height: 194px;
}
.cid-tdhYCLrH3J .mbr-form .btn {
  justify-content: space-between;
  border-radius: 30px;
  border-color: #fedb01;
  color: #fedb01;
  padding: 18px 42px;
  margin: 0 !important;
  margin-top: 7px !important;
}
.cid-tdhYCLrH3J .mbr-form .btn-success:hover {
  background-color: #103178 !important;
  border-color: #103178 !important;
  color: #fff !important;
}
@media (max-width: 991px) {
  .cid-tdhYCLrH3J .mbr-form {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 768px) {
  .cid-tdhYCLrH3J .mbr-section-title,
  .cid-tdhYCLrH3J .content-title,
  .cid-tdhYCLrH3J .mbr-section-btn {
    text-align: left;
  }
}
.cid-tdhYCLrH3J .text-content .mbr-section-title {
  text-align: left;
  color: #103178;
}
.cid-tdhYCLrH3J .text-content .mbr-subtitle {
  text-align: center;
}
.cid-tdhYCLrH3J .text-content .list-block .list-item-title {
  color: #103178;
}
.cid-tdhYCLrH3J H3 {
  color: #103178;
}
.cid-tdhYCLrH3J .mbr-form .content-title,
.cid-tdhYCLrH3J .social {
  color: #103178;
}
.cid-tdhYCLrH3J .form-check-input {
  min-height: 12px !important;
  padding: initial !important;
  height: 12px !important;
  width: 12px !important;
}
.cid-tdt9u2A58h {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #eff0f6;
}
.cid-tdt9u2A58h .mbr-iconfont {
  font-size: 50px;
  transition: color .3s;
  padding: 1.5rem;
}
.cid-tdt9u2A58h .mbr-section-title {
  margin: 0;
  color: #13287d;
}
.cid-tdt9u2A58h .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-tdt9u2A58h .card-img span {
  color: #279e64;
}
.cid-tdt9u2A58h .row-item {
  margin-bottom: 2rem;
}
.cid-tdt9u2A58h .row-item:hover .wrapper {
  background: linear-gradient(90deg, #279e64, #279e64);
  cursor: pointer;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  transition: all 0.3s;
}
.cid-tdt9u2A58h .row-item:hover .card-img span {
  color: #ffffff !important;
}
.cid-tdt9u2A58h .row-item:hover .mbr-card-title {
  color: #ffffff !important;
}
.cid-tdt9u2A58h .wrapper {
  padding: 2.5rem 1rem;
  background: #ffffff;
  border-radius: 5px;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-tdhY1OSe2r {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #353535;
}
.cid-tdhY1OSe2r .listico {
  padding-right: 1rem;
  color: #dcdfe2;
  font-size: 0.3rem;
}
.cid-tdhY1OSe2r .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-tdhY1OSe2r .navbar-brand {
  width: 100%;
  margin: 0;
}
.cid-tdhY1OSe2r .mbr-text {
  color: #444;
}
.cid-tdhY1OSe2r h5 {
  margin-bottom: 0;
}
.cid-tdhY1OSe2r .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tdhY1OSe2r .socicon {
  color: #9e9e9e;
  font-size: 0.6rem;
}
.cid-tdhY1OSe2r .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-tdhY1OSe2r .social-list .soc-item {
  margin: 0 .5rem;
  display: inline-block;
}
.cid-tdhY1OSe2r .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tdhY1OSe2r .social-list a:hover {
  opacity: .4;
}
.cid-tdhY1OSe2r .media-container-row > div {
  padding: 0px;
}
.cid-tdhY1OSe2r .text2 {
  color: #eeeff2;
  text-align: left;
}
.cid-tdhY1OSe2r .group-title {
  text-align: left;
  color: #ffffff;
}
.cid-tdhY1OSe2r .group-title SPAN {
  color: #656565;
}
.cid-tdhY1OSe2r .links {
  color: #9e9e9e;
}
@media (max-width: 991px) {
  .cid-tdhY1OSe2r .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-tdhY1OSe2r h3 {
    margin-bottom: 10px;
  }
}
.cid-tdhY1OSe2r .links SPAN {
  color: #9e9e9e;
}
.cid-tdhY1OSe2r .links,
.cid-tdhY1OSe2r .navbar-brand {
  color: #eeeff2;
}
.cid-tdhY1OSe2r .links,
.cid-tdhY1OSe2r .social-list {
  text-align: left;
}
.cid-tdQXqsi6Em.popup-builder {
  background-color: #ffffff;
}
.cid-tdQXqsi6Em.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tdQXqsi6Em.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tdQXqsi6Em .modal-content,
.cid-tdQXqsi6Em .modal-dialog {
  height: auto;
}
.cid-tdQXqsi6Em .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tdQXqsi6Em .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tdQXqsi6Em .form-wrapper .mbr-form .form-group,
  .cid-tdQXqsi6Em .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tdQXqsi6Em .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tdQXqsi6Em .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tdQXqsi6Em .mbr-text {
  text-align: center;
}
.cid-tdQXqsi6Em .pt-0 {
  padding-top: 0 !important;
}
.cid-tdQXqsi6Em .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tdQXqsi6Em .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tdQXqsi6Em .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tdQXqsi6Em .modal-open {
  overflow: hidden;
}
.cid-tdQXqsi6Em .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tdQXqsi6Em .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tdQXqsi6Em .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tdQXqsi6Em .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tdQXqsi6Em .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tdQXqsi6Em .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tdQXqsi6Em .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tdQXqsi6Em .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tdQXqsi6Em .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tdQXqsi6Em .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tdQXqsi6Em .modal-backdrop.fade {
  opacity: 0;
}
.cid-tdQXqsi6Em .modal-backdrop.show {
  opacity: .5;
}
.cid-tdQXqsi6Em .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tdQXqsi6Em .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tdQXqsi6Em .modal-header {
    padding: 1rem;
  }
}
.cid-tdQXqsi6Em .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tdQXqsi6Em .modal-header .close svg {
  fill: #353535;
}
.cid-tdQXqsi6Em .modal-header .close:hover {
  opacity: 1;
}
.cid-tdQXqsi6Em .modal-header .close:focus {
  outline: none;
}
.cid-tdQXqsi6Em .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tdQXqsi6Em .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tdQXqsi6Em .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tdQXqsi6Em .modal-body {
    padding: 1rem;
  }
}
.cid-tdQXqsi6Em .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tdQXqsi6Em .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tdQXqsi6Em .modal-footer {
    padding: 1rem;
  }
}
.cid-tdQXqsi6Em .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tdQXqsi6Em .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tdQXqsi6Em .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tdQXqsi6Em .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tdQXqsi6Em .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tdQXqsi6Em .modal-lg,
  .cid-tdQXqsi6Em .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tdQXqsi6Em .modal-xl {
    max-width: 1140px;
  }
}
.cid-tdQXqsi6Em .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tdQXqsi6Em .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tdQXqsi6Em .form-group {
  margin-bottom: 1rem;
}
.cid-tdQXqsi6Em .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tdQXqsi6Em .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tdQXqsi6Em .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tdQXqsi6Em .mbr-section-btn {
  margin: 0;
}
.cid-tdQXqsi6Em .mbr-section-btn .btn {
  margin: 0;
}
