body {
  font-family: 'Epilogue', sans-serif;
}
.display-1 {
  font-family: 'cooper-black';
  font-size: 6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 7.5rem;
}
.display-2 {
  font-family: 'cooper-black';
  font-size: 4rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 5rem;
}
.display-4 {
  font-family: 'Epilogue', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1rem;
}
.display-5 {
  font-family: 'cooper-black';
  font-size: 1.5rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.875rem;
}
.display-7 {
  font-family: 'Epilogue', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- 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: 4.8rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 4.2rem;
    font-size: calc( 2.75rem + (6 - 2.75) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.75rem + (6 - 2.75) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 3.2rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (2.05rem + (4 - 2.05) * ((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.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #110686 !important;
}
.bg-success {
  background-color: #314825 !important;
}
.bg-info {
  background-color: #6ec1e4 !important;
}
.bg-warning {
  background-color: #ee3102 !important;
}
.bg-danger {
  background-color: #ee2852 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #110686 !important;
  border-color: #110686 !important;
  color: #ffffff !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: #060233 !important;
  border-color: #060233 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #060233 !important;
  border-color: #060233 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #54595f !important;
  border-color: #54595f !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: #2b2e31 !important;
  border-color: #2b2e31 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #2b2e31 !important;
  border-color: #2b2e31 !important;
}
.btn-info,
.btn-info:active {
  background-color: #6ec1e4 !important;
  border-color: #6ec1e4 !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: #27a1d4 !important;
  border-color: #27a1d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #27a1d4 !important;
  border-color: #27a1d4 !important;
}
.btn-success,
.btn-success:active {
  background-color: #314825 !important;
  border-color: #314825 !important;
  color: #ffffff !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: #0a0f08 !important;
  border-color: #0a0f08 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #0a0f08 !important;
  border-color: #0a0f08 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ee3102 !important;
  border-color: #ee3102 !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: #981f01 !important;
  border-color: #981f01 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #981f01 !important;
  border-color: #981f01 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ee2852 !important;
  border-color: #ee2852 !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: #b10e31 !important;
  border-color: #b10e31 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #b10e31 !important;
  border-color: #b10e31 !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: #110686;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #060233 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #110686 !important;
  border-color: #110686 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #54595f;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #2b2e31 !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: #54595f !important;
  border-color: #54595f !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6ec1e4;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #27a1d4 !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: #6ec1e4 !important;
  border-color: #6ec1e4 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #314825;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #0a0f08 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #314825 !important;
  border-color: #314825 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ee3102;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #981f01 !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: #ee3102 !important;
  border-color: #ee3102 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ee2852;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #b10e31 !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: #ee2852 !important;
  border-color: #ee2852 !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: #110686 !important;
}
.text-secondary {
  color: #54595f !important;
}
.text-success {
  color: #314825 !important;
}
.text-info {
  color: #6ec1e4 !important;
}
.text-warning {
  color: #ee3102 !important;
}
.text-danger {
  color: #ee2852 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #050224 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #242629 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #030502 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #2597c7 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #891c01 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #a30d2d !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #110686;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #6ec1e4;
}
.alert-warning {
  background-color: #ee3102;
}
.alert-danger {
  background-color: #ee2852;
}
.mbr-gallery-filter li.active .btn {
  background-color: #110686;
  border-color: #110686;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #110686;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #2a17f5;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a1c58e;
}
.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: #fecabe;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #fde5ea;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Epilogue', 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: #110686 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Epilogue', 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: #110686;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #110686;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #110686;
}
.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: #110686;
  border-bottom-color: #110686;
}
.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: #110686 !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: #54595f !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='%23110686' %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;
}
a {
  transition: color 0.6s;
}
.cid-tbibFMAf2m {
  background-image: url("../../../assets/images/medical-banner-with-icons-2000x833.jpeg");
}
.cid-tbibFMAf2m .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tbibFMAf2m .mbr-section-title {
  color: #110686;
  text-align: center;
}
.cid-tbibFMAf2m .mbr-section-subtitle {
  color: #040404;
  text-align: center;
  margin: 0;
}
.cid-tbibFMAf2m .row {
  display: flex;
  justify-content: center;
  padding: 0;
  padding-bottom: 52px;
}
.cid-tbLLC68onq {
  padding-top: 5rem;
  padding-bottom: 4rem;
  overflow: hidden;
  position: relative;
  background-color: #ffffff;
}
.cid-tbLLC68onq .row {
  align-items: center;
}
.cid-tbLLC68onq .shape_left {
  width: 25%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 0;
  background-color: #110686;
}
.cid-tbLLC68onq .shape_right {
  width: 15%;
  position: absolute;
  top: 20%;
  right: 0;
  bottom: 0;
  z-index: 0;
  background-color: #ffffff;
}
.cid-tbLLC68onq .content_box {
  position: relative;
  z-index: 3;
}
.cid-tbLLC68onq .mbr-section-title {
  margin-bottom: 21px;
  color: #110686;
  text-align: left;
}
.cid-tbLLC68onq .mbr-text {
  margin-bottom: 21px;
}
.cid-tbLLC68onq .image-wrapper,
.cid-tbLLC68onq img {
  width: 100%;
}
.cid-tbLLC68onq .image-wrapper {
  position: relative;
  z-index: 1;
}
.cid-tbLLC68onq .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #110686;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-tbLLC68onq .iconfont-wrapper:nth-child(2) {
  margin-right: 0;
}
@media (max-width: 1399px) {
  .cid-tbLLC68onq .iconfont-wrapper {
    margin-right: 5px;
  }
}
.cid-tbLLC68onq .iconfont-wrapper:hover {
  background-color: #ab0001;
}
.cid-tbLLC68onq .icons_card {
  margin-top: 35px;
  padding: 0;
  text-align: center;
}
@media (min-width: 991px) {
  .cid-tbLLC68onq .content_box {
    padding: 0 5rem 0 1rem;
  }
  .cid-tbLLC68onq .image_left {
    padding-top: 5rem;
  }
}
@media (max-width: 991px) {
  .cid-tbLLC68onq .row {
    flex-direction: column;
  }
  .cid-tbLLC68onq .content_box {
    padding: 3rem 0;
  }
}
@media (max-width: 767px) {
  .cid-tbLLC68onq .shape {
    display: none;
  }
}
.cid-tbLLC68onq .mbr-text,
.cid-tbLLC68onq .icons_card {
  text-align: left;
}
.cid-tbiFmaVm1R {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tbiFmaVm1R .box {
  max-width: 700px;
  margin: auto;
  padding: 0 3rem;
}
.cid-tbiFmaVm1R .btn {
  padding: 0.4rem 0.6rem;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-tbiFmaVm1R .btn:hover,
.cid-tbiFmaVm1R .btn:active {
  box-shadow: none!important;
}
.cid-tbiFmaVm1R .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-tbiFmaVm1R .mbr-section-subtitle {
  color: #000000;
}
.cid-tbiFmaVm1R .img-col {
  padding: 0;
}
.cid-tbiFmaVm1R img {
  max-height: 100vh;
  object-fit: cover;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-tbiFmaVm1R .box {
    padding: 2rem;
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .cid-tbiFmaVm1R .box {
    padding: 1rem;
  }
}
.cid-tbiFmaVm1R .mbr-section-title {
  color: #110686;
}
.cid-sN24DjvABH {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sN24DjvABH nav.navbar {
  position: fixed;
}
.cid-sN24DjvABH .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-sN24DjvABH .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sN24DjvABH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sN24DjvABH .dropdown-item:hover,
.cid-sN24DjvABH .dropdown-item:focus {
  background: #110686 !important;
  color: white !important;
}
.cid-sN24DjvABH .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sN24DjvABH .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sN24DjvABH .nav-dropdown .link {
  padding: 0 !important;
  margin: 0 !important;
}
@media (max-width: 991px) {
  .cid-sN24DjvABH .nav-dropdown .link {
    margin: 10px 0 !important;
  }
}
.cid-sN24DjvABH .nav-item {
  margin: 0 31px;
}
.cid-sN24DjvABH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sN24DjvABH .nav-link {
  position: relative;
}
.cid-sN24DjvABH .nav-link:hover,
.cid-sN24DjvABH .nav-link:focus,
.cid-sN24DjvABH .nav-link:active {
  color: #314825 !important;
}
.cid-sN24DjvABH .container {
  display: flex;
  margin: auto;
  flex-wrap: initial;
}
@media (max-width: 991px) {
  .cid-sN24DjvABH .container {
    flex-wrap: inherit;
  }
}
.cid-sN24DjvABH .navbar-caption:hover,
.cid-sN24DjvABH .navbar-caption:focus,
.cid-sN24DjvABH .navbar-caption:active {
  color: #314825 !important;
}
.cid-sN24DjvABH .dropdown-menu,
.cid-sN24DjvABH .navbar.opened {
  background: #ffffff !important;
}
.cid-sN24DjvABH .nav-item:focus,
.cid-sN24DjvABH .nav-link:focus {
  outline: none;
}
.cid-sN24DjvABH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sN24DjvABH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sN24DjvABH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sN24DjvABH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sN24DjvABH .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-sN24DjvABH .navbar.opened {
  transition: all 0.3s;
}
.cid-sN24DjvABH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sN24DjvABH .navbar .navbar-logo img {
  width: auto;
}
.cid-sN24DjvABH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sN24DjvABH .navbar.collapsed {
  justify-content: center;
}
.cid-sN24DjvABH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sN24DjvABH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sN24DjvABH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sN24DjvABH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sN24DjvABH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sN24DjvABH .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-sN24DjvABH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sN24DjvABH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sN24DjvABH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sN24DjvABH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sN24DjvABH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sN24DjvABH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sN24DjvABH .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-sN24DjvABH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sN24DjvABH .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-sN24DjvABH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sN24DjvABH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sN24DjvABH .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-sN24DjvABH .navbar.navbar-short {
  min-height: 60px;
}
.cid-sN24DjvABH .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sN24DjvABH .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sN24DjvABH .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;
  display: flex;
}
.cid-sN24DjvABH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sN24DjvABH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sN24DjvABH .dropdown-item.active,
.cid-sN24DjvABH .dropdown-item:active {
  background-color: transparent;
}
.cid-sN24DjvABH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sN24DjvABH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sN24DjvABH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sN24DjvABH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sN24DjvABH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sN24DjvABH .navbar > .container-fluid {
  flex-wrap: unset;
}
@media (max-width: 991px) {
  .cid-sN24DjvABH .navbar > .container-fluid {
    flex-wrap: inherit;
  }
}
.cid-sN24DjvABH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sN24DjvABH ul.navbar-nav {
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sN24DjvABH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sN24DjvABH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sN24DjvABH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sN24DjvABH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sN24DjvABH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sN24DjvABH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sN24DjvABH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sN24DjvABH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sN24DjvABH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sN24DjvABH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sN24DjvABH .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sN24DjvABH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-sN24DjvABH a.nav-link {
    justify-content: flex-start;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sN24DjvABH .navbar {
    height: 70px;
  }
  .cid-sN24DjvABH .navbar.opened {
    height: auto;
  }
  .cid-sN24DjvABH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tbpg2EzfGD {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tbpg2EzfGD h2,
.cid-tbpg2EzfGD h3,
.cid-tbpg2EzfGD h4,
.cid-tbpg2EzfGD p {
  margin: 0;
}
.cid-tbpg2EzfGD .image-wrap {
  width: 100%;
  margin-bottom: 28px;
}
.cid-tbpg2EzfGD .image-wrap img {
  width: 100%;
  height: auto;
}
.cid-tbpg2EzfGD .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-tbpg2EzfGD .mbr-section-title {
  color: #110686;
  margin-bottom: 22px;
  text-align: center;
}
.cid-tbpg2EzfGD .mbr-section-subtitle {
  margin-bottom: 5px;
}
.cid-tbpg2EzfGD .mbr-text {
  color: #6b6b6b;
  margin-bottom: 10px;
}
.cid-tbjnIKv3AN {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tbjnIKv3AN .link-wrap {
  width: 100%;
}
.cid-tbjnIKv3AN .link {
  display: inline-block;
  position: relative;
  width: fit-content;
  padding: 0 1.4rem;
}
.cid-tbjnIKv3AN .link:before {
  position: absolute;
  left: 0px;
  top: 55%;
  transform: translateY(-50%);
  content: "\e908";
  font-family: 'Moririse2' !important;
  color: #110686;
  font-size: 0.8rem;
}
.cid-tbjnIKv3AN .link,
.cid-tbjnIKv3AN .link-wrap {
  color: #555555;
}
.cid-tbjnIKv3AN img {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-tbjnIKv3AN .card {
    margin-bottom: 2rem!important;
  }
}
.cid-tbjn1h35fv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tbjn1h35fv img {
  transition: all 0.3s;
  width: 100%;
}
.cid-tbjn1h35fv .img-wrapper {
  overflow: hidden;
}
.cid-tbjn1h35fv .container {
  max-width: 1400px;
}
@media (min-width: 767px) {
  .cid-tbjn1h35fv .container {
    padding: 0 2rem;
  }
}
.cid-tbjn1h35fv .title {
  display: flex;
  padding: 0 1rem;
}
.cid-tbjn1h35fv .title-box {
  width: 100%;
}
.cid-tbjn1h35fv .icon {
  font-size: 5rem;
  color: #ffd96a;
  padding-right: 0rem;
  margin-right: -1rem;
  display: block;
}
.cid-tbjn1h35fv .mbr-iconfont {
  font-size: 1.5rem;
  color: currentColor;
  cursor: pointer;
  display: inline-block;
  transition: all 0.3s;
}
.cid-tbjn1h35fv .card-wrapper {
  background: #fafafa;
  margin-bottom: 2rem;
}
.cid-tbjn1h35fv .card-wrapper:hover img {
  transform: scale(1.1);
}
.cid-tbjn1h35fv .card-wrapper:hover .mbr-iconfont {
  transform: translateX(8px);
}
.cid-tbjn1h35fv .card-box {
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-tbjn1h35fv .card-box {
    padding: 1rem;
  }
  .cid-tbjn1h35fv .align-left {
    text-align: center;
  }
  .cid-tbjn1h35fv .align-right,
  .cid-tbjn1h35fv .align-left {
    text-align: center;
  }
  .cid-tbjn1h35fv .title {
    flex-direction: column;
  }
  .cid-tbjn1h35fv .icon,
  .cid-tbjn1h35fv .title-box {
    margin: 0rem;
  }
  .cid-tbjn1h35fv .icon {
    margin: auto;
    margin-bottom: 1rem;
  }
}
.cid-tbjn1h35fv .mbr-text,
.cid-tbjn1h35fv .card-box {
  color: #000000;
}
.cid-tbjn1h35fv .card-subtitle {
  color: #59bb93;
}
.cid-tbjn1h35fv .main-title {
  color: #59bb93;
}
.cid-tbLXYdOe2Y {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tbLXYdOe2Y .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tbLXYdOe2Y .card-wrapper {
  background-color: #fafafa;
  border-radius: 16px;
}
.cid-tbLXYdOe2Y .image-wrapper {
  height: 100%;
}
.cid-tbLXYdOe2Y .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tbLXYdOe2Y .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 10px;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #0b2b5c;
  transition: all 0.3s;
}
.cid-tbLXYdOe2Y .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #0b2b5c;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tbLXYdOe2Y .social-row .soc-item:hover {
  background-color: #0b2b5c;
}
.cid-tbLXYdOe2Y .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (min-width: 767px) {
  .cid-tbLXYdOe2Y .img-order {
    order: 2;
  }
}
@media (min-width: 768px) {
  .cid-tbLXYdOe2Y .card-box_left {
    padding: 2rem 2rem 2rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tbLXYdOe2Y .card-box_left {
    padding: 2rem 2rem 2rem 3rem;
  }
}
.cid-tbLXYdOe2Y .mbr-section-title {
  color: #110686;
}
.cid-tbLYS6ySX8 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tbLYS6ySX8 .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tbLYS6ySX8 .card-wrapper {
  background-color: #fafafa;
  border-radius: 16px;
}
.cid-tbLYS6ySX8 .image-wrapper {
  height: 100%;
}
.cid-tbLYS6ySX8 .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tbLYS6ySX8 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 10px;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #0b2b5c;
  transition: all 0.3s;
}
.cid-tbLYS6ySX8 .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #0b2b5c;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tbLYS6ySX8 .social-row .soc-item:hover {
  background-color: #0b2b5c;
}
.cid-tbLYS6ySX8 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (min-width: 767px) {
  .cid-tbLYS6ySX8 .img-order {
    order: 2;
  }
}
@media (min-width: 768px) {
  .cid-tbLYS6ySX8 .card-box_left {
    padding: 2rem 2rem 2rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tbLYS6ySX8 .card-box_left {
    padding: 2rem 2rem 2rem 3rem;
  }
}
.cid-tbLYSQG37k {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tbLYSQG37k .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tbLYSQG37k .card-wrapper {
  background-color: #fafafa;
  border-radius: 16px;
}
.cid-tbLYSQG37k .image-wrapper {
  height: 100%;
}
.cid-tbLYSQG37k .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tbLYSQG37k .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 10px;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #0b2b5c;
  transition: all 0.3s;
}
.cid-tbLYSQG37k .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #0b2b5c;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tbLYSQG37k .social-row .soc-item:hover {
  background-color: #0b2b5c;
}
.cid-tbLYSQG37k .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (min-width: 767px) {
  .cid-tbLYSQG37k .img-order {
    order: 2;
  }
}
@media (min-width: 768px) {
  .cid-tbLYSQG37k .card-box_left {
    padding: 2rem 2rem 2rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tbLYSQG37k .card-box_left {
    padding: 2rem 2rem 2rem 3rem;
  }
}
.cid-tbMpVE382y {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tbMpVE382y .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tbMpVE382y .card-wrapper {
  background-color: #fafafa;
  border-radius: 16px;
}
.cid-tbMpVE382y .image-wrapper {
  height: 100%;
}
.cid-tbMpVE382y .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tbMpVE382y .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 10px;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #0b2b5c;
  transition: all 0.3s;
}
.cid-tbMpVE382y .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #0b2b5c;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tbMpVE382y .social-row .soc-item:hover {
  background-color: #0b2b5c;
}
.cid-tbMpVE382y .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (min-width: 767px) {
  .cid-tbMpVE382y .img-order {
    order: 2;
  }
}
@media (min-width: 768px) {
  .cid-tbMpVE382y .card-box_left {
    padding: 2rem 2rem 2rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tbMpVE382y .card-box_left {
    padding: 2rem 2rem 2rem 3rem;
  }
}
.cid-tbLLd9kB39 {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background: #ffffff;
}
.cid-tbLLd9kB39 h2,
.cid-tbLLd9kB39 h3,
.cid-tbLLd9kB39 h4,
.cid-tbLLd9kB39 h5,
.cid-tbLLd9kB39 p {
  margin: 0;
}
.cid-tbLLd9kB39 .inner-container {
  margin-right: -32px;
}
.cid-tbLLd9kB39 .content {
  width: 100%;
  padding-left: calc((100% - 1300px) / 2);
}
@media (max-width: 1440px) {
  .cid-tbLLd9kB39 .content {
    padding-left: calc((100% - 1100px) / 2);
  }
}
@media (max-width: 1200px) {
  .cid-tbLLd9kB39 .content {
    padding-left: calc((100% - 920px) / 2);
  }
}
@media (max-width: 1024px) {
  .cid-tbLLd9kB39 .content {
    padding-left: calc((100% - 768px) / 2);
  }
}
@media (max-width: 800px) {
  .cid-tbLLd9kB39 .content {
    width: 100%;
    padding-left: 7%;
  }
}
@media (max-width: 480px) {
  .cid-tbLLd9kB39 .content {
    padding-left: 0;
  }
}
.cid-tbLLd9kB39 .text-wrap {
  position: relative;
  width: 18.6%;
  padding-right: 30px;
}
@media (max-width: 1599px) {
  .cid-tbLLd9kB39 .text-wrap {
    width: 25%;
  }
}
@media (max-width: 1024px) {
  .cid-tbLLd9kB39 .text-wrap {
    padding-right: 24px;
  }
}
@media (max-width: 768px) {
  .cid-tbLLd9kB39 .text-wrap {
    width: 38%;
  }
}
@media (max-width: 680px) {
  .cid-tbLLd9kB39 .text-wrap {
    width: 100%;
  }
}
.cid-tbLLd9kB39 .mbr-section-title {
  color: #000000;
}
.cid-tbLLd9kB39 .mbr-section-subtitle {
  color: #6b6b6b;
}
.cid-tbLLd9kB39 .controls {
  margin-top: 45px;
}
.cid-tbLLd9kB39 .embla {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}
.cid-tbLLd9kB39 .embla__viewport {
  overflow: hidden;
  width: 81.4%;
}
@media (max-width: 1599px) {
  .cid-tbLLd9kB39 .embla__viewport {
    width: 75%;
  }
}
@media (max-width: 680px) {
  .cid-tbLLd9kB39 .embla__viewport {
    width: 100%;
  }
}
.cid-tbLLd9kB39 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tbLLd9kB39 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tbLLd9kB39 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  width: 81.4%;
}
@media (max-width: 1599px) {
  .cid-tbLLd9kB39 .embla__container {
    width: 75%;
  }
}
@media (max-width: 680px) {
  .cid-tbLLd9kB39 .embla__container {
    width: 100%;
    margin-top: 30px;
  }
}
.cid-tbLLd9kB39 .embla__slide {
  position: relative;
  margin-right: 30px;
}
.cid-tbLLd9kB39 .card-wrap {
  width: 345.75px;
}
@media (max-width: 680px) {
  .cid-tbLLd9kB39 .card-wrap {
    width: 296px;
  }
}
.cid-tbLLd9kB39 .image-wrap {
  width: 100%;
  overflow: hidden;
}
.cid-tbLLd9kB39 .image-wrap img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
.cid-tbLLd9kB39 .content-wrap {
  margin-top: 20px;
}
.cid-tbLLd9kB39 .mbr-card-title {
  margin-bottom: 6px;
  color: #000000;
}
.cid-tbLLd9kB39 .mbr-card-subtitle {
  margin-bottom: 2px;
  color: #6b6b6b;
}
.cid-tbLLd9kB39 .mbr-card-text {
  color: #6b6b6b;
}
.cid-tbLLd9kB39 .embla__button--next svg polygon,
.cid-tbLLd9kB39 .embla__button--prev svg polygon {
  transition: 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.cid-tbLLd9kB39 .embla__button--next svg,
.cid-tbLLd9kB39 .embla__button--prev svg {
  overflow: hidden;
}
.cid-tbLLd9kB39 .embla__button--prev {
  vertical-align: super;
  color: #000;
  transition: color 0.25s ease-out;
}
.cid-tbLLd9kB39 .embla__button--prev:hover {
  color: #000;
}
.cid-tbLLd9kB39 .embla__button--prev svg polygon:nth-of-type(1) {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}
.cid-tbLLd9kB39 .embla__button--prev svg polygon:nth-of-type(2) {
  -webkit-clip-path: inset(0 0 0 100%);
  clip-path: inset(0 0 0 100%);
}
.cid-tbLLd9kB39 .embla__button--prev:hover svg polygon:nth-of-type(1) {
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
}
.cid-tbLLd9kB39 .embla__button--prev:hover svg polygon:nth-of-type(2) {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
  transition-delay: 0.3s;
}
.cid-tbLLd9kB39 .embla__button--next {
  vertical-align: sub;
  color: #000;
  transition: color 0.25s ease-out;
}
.cid-tbLLd9kB39 .embla__button--next:hover {
  color: #000;
}
.cid-tbLLd9kB39 .embla__button--next svg polygon:nth-of-type(1) {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}
.cid-tbLLd9kB39 .embla__button--next svg polygon:nth-of-type(2) {
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
}
.cid-tbLLd9kB39 .embla__button--next:hover svg polygon:nth-of-type(1) {
  -webkit-clip-path: inset(0 0 0 100%);
  clip-path: inset(0 0 0 100%);
}
.cid-tbLLd9kB39 .embla__button--next:hover svg polygon:nth-of-type(2) {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
  transition-delay: 0.3s;
}
.cid-tbLLd9kB39 .card-text,
.cid-tbLLd9kB39 .mbr-section-btn,
.cid-tbLLd9kB39 .social-row {
  color: #000000;
}
.cid-taUGTNRM6D {
  padding-top: 4rem;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-taUGTNRM6D .row {
  align-items: center;
  justify-content: center;
}
.cid-taUGTNRM6D .shape_left {
  width: 25%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 0;
  background-color: #ebf2e9;
}
.cid-taUGTNRM6D .shape_right {
  width: 25%;
  position: absolute;
  top: 20%;
  right: 0;
  bottom: 0;
  z-index: 0;
  background-color: #fef2f2;
}
.cid-taUGTNRM6D .content_box {
  position: relative;
  z-index: 1;
}
.cid-taUGTNRM6D .mbr-section-title {
  margin-bottom: 21px;
  color: #202020;
}
.cid-taUGTNRM6D .mbr-text {
  margin-bottom: 21px;
}
.cid-taUGTNRM6D .image-wrapper,
.cid-taUGTNRM6D img {
  width: 100%;
}
.cid-taUGTNRM6D .image-wrapper {
  position: relative;
  z-index: 1;
}
@media (min-width: 991px) {
  .cid-taUGTNRM6D .content_box {
    padding: 0 5rem 0 1rem;
  }
  .cid-taUGTNRM6D .image_left {
    padding-top: 5rem;
  }
  .cid-taUGTNRM6D .image_right {
    right: -2rem;
  }
}
@media (max-width: 767px) {
  .cid-taUGTNRM6D .row {
    flex-direction: column;
  }
  .cid-taUGTNRM6D .shape {
    display: none;
  }
  .cid-taUGTNRM6D .content_box {
    padding: 2rem 0;
  }
}
.cid-tbMzGjnhC6 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tbMzGjnhC6 h2,
.cid-tbMzGjnhC6 h3,
.cid-tbMzGjnhC6 h4,
.cid-tbMzGjnhC6 p {
  margin: 0;
}
.cid-tbMzGjnhC6 .image-wrap {
  width: 100%;
  margin-bottom: 28px;
}
.cid-tbMzGjnhC6 .image-wrap img {
  width: 100%;
  height: auto;
}
.cid-tbMzGjnhC6 .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-tbMzGjnhC6 .mbr-section-title {
  color: #110686;
  margin-bottom: 22px;
  text-align: center;
}
.cid-tbMzGjnhC6 .mbr-section-subtitle {
  margin-bottom: 5px;
}
.cid-tbMzGjnhC6 .mbr-text {
  color: #6b6b6b;
  margin-bottom: 10px;
}
.cid-sN85J5Nnxy {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sN85J5Nnxy .container-fluid {
  padding: 0;
  margin: 0;
}
.cid-sN85J5Nnxy h2,
.cid-sN85J5Nnxy h3,
.cid-sN85J5Nnxy h4,
.cid-sN85J5Nnxy h5 {
  margin: 0;
}
.cid-sN85J5Nnxy .mbr-section-head {
  margin-bottom: 40px;
}
.cid-sN85J5Nnxy .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-sN85J5Nnxy .mbr-section-subtitle {
  text-align: center;
}
.cid-sN85J5Nnxy .mbr-card-title {
  color: #000000;
  margin-bottom: 24px;
}
.cid-sN85J5Nnxy .mbr-card-subtitle {
  color: #040404;
  margin-top: 28px;
  margin-bottom: -7px;
}
.cid-sN85J5Nnxy .image-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.cid-sN85J5Nnxy .image-wrap {
  width: 50%;
  position: relative;
}
@media (max-width: 680px) {
  .cid-sN85J5Nnxy .image-wrap {
    width: 100%;
  }
}
.cid-sN85J5Nnxy img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sN85J5Nnxy .text-wrap {
  position: absolute;
  bottom: 128px;
  left: 0;
  width: 270px;
  min-height: 92px;
  padding-left: 28px;
  background: #ffffff;
  opacity: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  transition: 0.7s cubic-bezier(0.16, 0.09, 0, 1.02) 0s;
}
@media (max-width: 400px) {
  .cid-sN85J5Nnxy .text-wrap {
    bottom: 20px;
  }
}
.cid-sN85J5Nnxy .image-wrap:hover .text-wrap {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
  opacity: 1;
}
.cid-tbMzOk4mnf {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/dots.svg");
}
.cid-tbMzOk4mnf h2,
.cid-tbMzOk4mnf h3,
.cid-tbMzOk4mnf h4,
.cid-tbMzOk4mnf p {
  margin: 0;
}
.cid-tbMzOk4mnf .image-wrap {
  width: 100%;
  margin-bottom: 28px;
}
.cid-tbMzOk4mnf .image-wrap img {
  width: 100%;
  height: auto;
}
.cid-tbMzOk4mnf .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-tbMzOk4mnf .mbr-section-title {
  color: #110686;
  margin-bottom: 22px;
  text-align: center;
}
.cid-tbMzOk4mnf .mbr-section-subtitle {
  margin-bottom: 5px;
}
.cid-tbMzOk4mnf .mbr-text {
  color: #6b6b6b;
  margin-bottom: 10px;
}
.cid-tbLXLgI1Sw {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 1000px) {
  .cid-tbLXLgI1Sw {
    padding-top: 2rem;
    padding-bottom: 1.5rem;
  }
}
@media (max-width: 768px) {
  .cid-tbLXLgI1Sw {
    padding-top: 1.2rem;
    padding-bottom: 0.9rem;
  }
  .cid-tbLXLgI1Sw .box {
    bottom: 0;
  }
}
.cid-tbLXLgI1Sw .f-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -3em;
}
@media (max-width: 1199px) {
  .cid-tbLXLgI1Sw .f-row {
    margin: 0 -1em;
  }
}
.cid-tbLXLgI1Sw .f-item {
  flex: 0 0 33.333%;
  padding: 0 3em;
  height: 480px;
}
@media (max-width: 1199px) {
  .cid-tbLXLgI1Sw .f-item {
    padding: 0 1em;
  }
}
@media (max-width: 1000px) {
  .cid-tbLXLgI1Sw .f-item {
    flex: 0 0 50%;
    padding: 0 1em 2em;
  }
}
@media (max-width: 600px) {
  .cid-tbLXLgI1Sw .f-item {
    flex: 0 0 100%;
    padding: 0 2em 2em 1em;
  }
}
.cid-tbLXLgI1Sw .f-wrap {
  height: 100%;
  width: 100%;
}
.cid-tbLXLgI1Sw .bg1 {
  background-color: rgba(191, 192, 213, 0.5);
}
.cid-tbLXLgI1Sw .bg2 {
  background-color: rgba(191, 192, 213, 0.5);
}
.cid-tbLXLgI1Sw .bg3 {
  background-color: rgba(191, 192, 213, 0.5);
}
.cid-tbLXLgI1Sw .f-card {
  position: relative;
  height: 100%;
  min-height: 100%;
  transition: all 0.2s linear;
  transform: translate3d(0.75em, 0.75em, 0);
}
@media (min-width: 769px) {
  .cid-tbLXLgI1Sw .f-card {
    overflow: hidden;
  }
  .cid-tbLXLgI1Sw .f-card:hover:before {
    bottom: 33%;
    background-color: rgba(0, 0, 0, 0.1);
    transition: bottom 0.375s linear;
  }
  .cid-tbLXLgI1Sw .f-card:hover .box {
    transition: bottom 0.375s linear;
    bottom: 0;
    z-index: 3;
  }
  .cid-tbLXLgI1Sw .box {
    bottom: -15%;
  }
}
.cid-tbLXLgI1Sw .f-card img {
  position: relative;
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: top center;
}
.cid-tbLXLgI1Sw .box {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  padding: 1.25rem;
  transition: all 0.375s linear;
}
.cid-tbLXLgI1Sw .b1 {
  background-color: #bfc0d5;
}
.cid-tbLXLgI1Sw .b2 {
  background-color: #bfc0d5;
}
.cid-tbLXLgI1Sw .b3 {
  background-color: #bfc0d5;
}
.cid-tbLXLgI1Sw .box-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.cid-tbLXLgI1Sw .box-row p {
  margin-bottom: 0;
}
.cid-tbLXLgI1Sw .box-mt {
  margin-top: 1rem;
}
.cid-tbLXLgI1Sw .box-contacts,
.cid-tbLXLgI1Sw .box-name {
  margin-right: 1rem;
}
.cid-tbLXLgI1Sw .box-social {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 40px;
  background-color: #000;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}
.cid-tbLXLgI1Sw .btn {
  margin: 0;
}
.cid-tbLXLgI1Sw .mbr-iconfont,
.cid-tbLXLgI1Sw .mbr-serction-btn,
.cid-tbLXLgI1Sw .box-btn {
  margin: 0;
}
.cid-tbLXLgI1Sw .box-name,
.cid-tbLXLgI1Sw .box-btn {
  margin-bottom: 1rem;
}
.cid-tbMunP64cE {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tbMunP64cE .google-map {
  height: 25rem;
  position: relative;
}
.cid-tbMunP64cE .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tbMunP64cE .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tbMunP64cE .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tbMunP64cE .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tbMunP64cE .wrapper {
  margin-top: -10rem;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-radius: 40px;
  border-collapse: separate;
  -webkit-perspective: 1px;
  perspective: 1px;
  overflow: hidden;
}
.cid-tbMunP64cE .wrapper .row {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  border-radius: 40px;
  border-collapse: separate;
  -webkit-perspective: 1px;
  perspective: 1px;
}
.cid-tbMunP64cE .wrapper .row .btn {
  border-radius: 30px;
  padding: 0.8rem 3rem !important;
}
.cid-tbMunP64cE .wrapper .row .title {
  color: #110686;
}
.cid-tbMunP64cE .wrapper .form-container {
  padding: 3rem;
  border-radius: 40px;
  border-collapse: separate;
  -webkit-perspective: 1px;
  perspective: 1px;
  overflow: hidden;
}
.cid-tbMunP64cE .content-panel {
  padding: 3rem;
  background: linear-gradient(45deg, #110686, #110686);
  height: 100%;
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
  overflow: hidden;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.cid-tbMunP64cE .mbr-text {
  color: #efefef;
}
.cid-tbMunP64cE .form-control {
  border-radius: 10px !important;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  min-height: 40px;
}
.cid-tbMunP64cE textarea.form-control {
  min-height: 170px;
}
.cid-tbMunP64cE .social-list {
  margin-top: auto;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.cid-tbMunP64cE .social-list .mbr-iconfont-social {
  font-size: 1.2rem;
  color: #fff;
}
.cid-tbMunP64cE .social-list .mbr-iconfont:before {
  padding: 0.5rem;
  border: 2px solid;
  border-radius: 100px;
  border-style: dotted;
}
.cid-tbMunP64cE .social-list .soc-item {
  margin: 15px 3px 0px 3px;
}
.cid-tbMunP64cE .social-list a {
  margin: 0;
  opacity: 0.7;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tbMunP64cE .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tbMunP64cE .container {
    max-width: 80% !important;
  }
  .cid-tbMunP64cE .wrapper {
    margin-top: 0;
    border-radius: 40px;
  }
  .cid-tbMunP64cE .wrapper .main-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-tbMunP64cE .wrapper .main-row .text-block .content-panel {
    border-radius: 0 0 30px 30px !important;
  }
  .cid-tbMunP64cE .wrapper .main-row .text-block .content-panel .social-list {
    margin-left: auto;
    margin-right: auto;
  }
  .cid-tbMunP64cE .form-container {
    border-radius: 30px 30px 0 0 !important;
  }
}
.cid-sN2bql4V9G {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-sN2bql4V9G .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.7;
}
.cid-sN2bql4V9G h3 {
  margin: 0;
}
.cid-sN2bql4V9G .content {
  padding: 0 45px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 767px) {
  .cid-sN2bql4V9G .content {
    padding: 0 1rem;
    flex-direction: column-reverse;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .cid-sN2bql4V9G .text-wrap {
    margin-bottom: 1rem;
  }
}
.cid-sN2bql4V9G .mbr-brand {
  color: #000000;
  font-weight: 600;
  text-align: right;
}
@media (max-width: 767px) {
  .cid-sN2bql4V9G .mbr-brand {
    text-align: center;
  }
}
.cid-sN2bql4V9G .mbr-text {
  color: #6b6b6b;
  margin: 10px 0 0;
  font-weight: 300;
  text-align: right;
}
@media (max-width: 767px) {
  .cid-sN2bql4V9G .mbr-text {
    text-align: center;
  }
}
.cid-sN2bql4V9G .socials {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-sN2bql4V9G .socials p {
  margin: 0 20px 0 0;
}
@media (max-width: 767px) {
  .cid-sN2bql4V9G .socials {
    margin-right: -20px;
  }
}
.cid-sN2bql4V9G .socials-item .link {
  color: #000000;
}
.cid-sN2bql4V9G .footer-lower .copyright {
  margin-bottom: 1rem;
}
.cid-sN2bql4V9G .footer-lower hr {
  margin: 1rem 0;
  height: 1px;
  background-color: #000000;
  border: none;
}
.cid-sN2bql4V9G .copyright > p {
  text-align: center;
  color: #000000;
}

.cid-tr9tcsKFvw {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/dots.svg");
}
.cid-tr9tcsKFvw h2,
.cid-tr9tcsKFvw h3,
.cid-tr9tcsKFvw h4,
.cid-tr9tcsKFvw p {
  margin: 0;
}
.cid-tr9tcsKFvw .image-wrap {
  width: 100%;
  margin-bottom: 28px;
}
.cid-tr9tcsKFvw .image-wrap img {
  width: 100%;
  height: auto;
}
.cid-tr9tcsKFvw .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-tr9tcsKFvw .mbr-section-title {
  color: #110686;
  margin-bottom: 22px;
  text-align: center;
}
.cid-tr9tcsKFvw .mbr-section-subtitle {
  margin-bottom: 5px;
}
.cid-tr9tcsKFvw .mbr-text {
  color: #6b6b6b;
  margin-bottom: 10px;
}
.cid-tr9quA8FKq {
  padding-top: 1rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tr9quA8FKq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tr9quA8FKq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tr9quA8FKq .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tr9quA8FKq .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tr9quA8FKq .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tr9quA8FKq .mbr-section-title {
  text-align: left;
}
.cid-tr9quA8FKq .mbr-text,
.cid-tr9quA8FKq .mbr-section-btn {
  text-align: left;
}
.cid-tr9sezvOCa {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tr9sezvOCa .mbr-fallback-image.disabled {
  display: none;
}
.cid-tr9sezvOCa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tr9sezvOCa .row {
  flex-direction: row-reverse;
}
.cid-tr9sezvOCa .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tr9sezvOCa .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tr9sezvOCa .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tr9sezvOCa .mbr-section-title {
  text-align: left;
}
.cid-tr9sezvOCa .mbr-text,
.cid-tr9sezvOCa .mbr-section-btn {
  text-align: left;
}

.cid-tr9oHH507y {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tr9oHH507y .mbr-fallback-image.disabled {
  display: none;
}
.cid-tr9oHH507y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tr9oHH507y a {
  font-weight: 900;
}
.cid-tr9oHH507y .text-wrapper {
  padding: 4rem;
}
@media (max-width: 767px) {
  .cid-tr9oHH507y .text-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-tr9oHH507y .wrapper {
  background: #fafafa;
  border-radius: 2rem;
  overflow: hidden;
}
.cid-tr9oHH507y .image-wrapper {
  padding: 0;
}
.cid-tr9oHH507y .image-wrapper img {
  height: 100%;
  border-radius: 2rem;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tr9oHH507y .image-wrapper img {
    border-radius: 0;
  }
}
.cid-tr9oHH507y .mbr-section-title {
  color: #110686;
}
.cid-tr9oHH507y .mbr-text,
.cid-tr9oHH507y .mbr-section-btn {
  color: #353535;
}
