.btn {
  border-width: 2px;
}
body {
  font-family: 'Work Sans', sans-serif;
}
.display-1 {
  font-family: 'Work Sans', sans-serif;
  font-size: 3.8rem;
  line-height: 1.22;
}
.display-1 > .mbr-iconfont {
  font-size: 4.75rem;
}
.display-2 {
  font-family: 'Work Sans', sans-serif;
  font-size: 3rem;
  line-height: 1.5;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Work Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.8rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.25rem;
}
.display-7 {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.38rem;
  line-height: 1.7;
}
.display-7 > .mbr-iconfont {
  font-size: 1.725rem;
}
/* ---- 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.04rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.66rem;
    font-size: calc( 1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.104rem;
    font-size: calc( 1.133rem + (1.38 - 1.133) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.133rem + (1.38 - 1.133) * ((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: #0b2b5c !important;
}
.bg-success {
  background-color: #ff0000 !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-primary,
.btn-primary:active {
  background-color: #0b2b5c !important;
  border-color: #0b2b5c !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-primary::before,
.btn-primary:active::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #ffffff !important;
  transition: all .3s;
  z-index: -1;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #0b2b5c !important;
  background-color: transparent !important;
  border-color: #0b2b5c;
  box-shadow: none;
}
.btn-primary:hover::before,
.btn-primary:focus::before,
.btn-primary.focus::before,
.btn-primary.active::before {
  width: 100%;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #f2bb2c !important;
  border-color: #f2bb2c !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-secondary::before,
.btn-secondary:active::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #ffffff !important;
  transition: all .3s;
  z-index: -1;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #f2bb2c !important;
  background-color: transparent !important;
  border-color: #f2bb2c;
  box-shadow: none;
}
.btn-secondary:hover::before,
.btn-secondary:focus::before,
.btn-secondary.focus::before,
.btn-secondary.active::before {
  width: 100%;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #5c4406 !important;
  border-color: #5c4406 !important;
}
.btn-info {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-info::before,
.btn-info:active::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #ffffff !important;
  transition: all .3s;
  z-index: -1;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #47b5ed !important;
  background-color: transparent !important;
  border-color: #47b5ed;
  box-shadow: none;
}
.btn-info:hover::before,
.btn-info:focus::before,
.btn-info.focus::before,
.btn-info.active::before {
  width: 100%;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #0b4c6d !important;
  border-color: #0b4c6d !important;
}
.btn-success {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-success,
.btn-success:active {
  background-color: #ff0000 !important;
  border-color: #ff0000 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-success::before,
.btn-success:active::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #ffffff !important;
  transition: all .3s;
  z-index: -1;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ff0000 !important;
  background-color: transparent !important;
  border-color: #ff0000;
  box-shadow: none;
}
.btn-success:hover::before,
.btn-success:focus::before,
.btn-success.focus::before,
.btn-success.active::before {
  width: 100%;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #420000 !important;
  border-color: #420000 !important;
}
.btn-warning {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: none;
}
.btn-warning::before,
.btn-warning:active::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #614f00 !important;
  transition: all .3s;
  z-index: -1;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffe161 !important;
  background-color: transparent !important;
  border-color: #ffe161;
  box-shadow: none;
}
.btn-warning:hover::before,
.btn-warning:focus::before,
.btn-warning.focus::before,
.btn-warning.active::before {
  width: 100%;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #a38400 !important;
  border-color: #a38400 !important;
}
.btn-danger {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-danger::before,
.btn-danger:active::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #ffffff !important;
  transition: all .3s;
  z-index: -1;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ff9966 !important;
  background-color: transparent !important;
  border-color: #ff9966;
  box-shadow: none;
}
.btn-danger:hover::before,
.btn-danger:focus::before,
.btn-danger.focus::before,
.btn-danger.active::before {
  width: 100%;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #a83800 !important;
  border-color: #a83800 !important;
}
.btn-white {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: none;
}
.btn-white::before,
.btn-white:active::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #7a7a7a !important;
  transition: all .3s;
  z-index: -1;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #fafafa !important;
  background-color: transparent !important;
  border-color: #fafafa;
  box-shadow: none;
}
.btn-white:hover::before,
.btn-white:focus::before,
.btn-white.focus::before,
.btn-white.active::before {
  width: 100%;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #9c9c9c !important;
  border-color: #9c9c9c !important;
}
.btn-black {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-black::before,
.btn-black:active::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #ffffff !important;
  transition: all .3s;
  z-index: -1;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #232323 !important;
  background-color: transparent !important;
  border-color: #232323;
  box-shadow: none;
}
.btn-black:hover::before,
.btn-black:focus::before,
.btn-black.focus::before,
.btn-black.active::before {
  width: 100%;
}
.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: #0b2b5c;
  color: #0b2b5c;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #02070f !important;
  background-color: transparent !important;
  border-color: #02070f !important;
  box-shadow: none !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #0b2b5c !important;
  border-color: #0b2b5c !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #f2bb2c;
  color: #f2bb2c;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #bc8b0c !important;
  background-color: transparent !important;
  border-color: #bc8b0c !important;
  box-shadow: none !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #f2bb2c !important;
  border-color: #f2bb2c !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #47b5ed;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent !important;
  border-color: #148cca !important;
  box-shadow: none !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #ff0000;
  color: #ff0000;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #a80000 !important;
  background-color: transparent !important;
  border-color: #a80000 !important;
  box-shadow: none !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #ff0000 !important;
  border-color: #ff0000 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffe161;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent !important;
  border-color: #ffd10a !important;
  box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ff9966;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent !important;
  border-color: #ff5f0f !important;
  box-shadow: none !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  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: #000000 !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: #fafafa;
  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: #cfcfcf !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: #0b2b5c !important;
}
.text-secondary {
  color: #f2bb2c !important;
}
.text-success {
  color: #ff0000 !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #f2bb2c !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #f8da8c !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #f2bb2c !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #f2bb2c !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #f2bb2c !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ffddcc !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #f2bb2c !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #f2bb2c !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  transition: 0.2s;
  position: relative;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0 1.2em;
}
.nav-tabs .nav-link.active {
  color: #0b2b5c;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn button.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #0b2b5c;
  border-color: #0b2b5c;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #0b2b5c;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #1960ce;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffcccc;
}
.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: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Work Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.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: #0b2b5c !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Work Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #0b2b5c;
}
/* 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: #0b2b5c;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #0b2b5c;
}
.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: #0b2b5c;
  border-bottom-color: #0b2b5c;
}
.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: #0b2b5c !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #f2bb2c !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='%230b2b5c' %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-sIjMv8j33t {
  background-color: #9fdbf8;
}
.cid-sIjMv8j33t .main-container .main-img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 991px) {
  .cid-sIjMv8j33t .main-container {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 767px) {
  .cid-sIjMv8j33t .main-container .main-title {
    margin-top: 1rem;
  }
}
.cid-sIjMyRTGVe {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #2e5189;
}
.cid-sIjMyRTGVe .geometry {
  position: absolute;
}
.cid-sIjMyRTGVe .geometry__triangle {
  width: 128px;
  height: 88px;
}
.cid-sIjMyRTGVe .geometry_left {
  left: -70px;
  bottom: 230px;
}
.cid-sIjMyRTGVe .geometry__circle {
  width: 88px;
  height: 88px;
  border-radius: 100px;
  border: 2px solid #0b2b5c;
  padding: -1rem;
  z-index: 1;
  position: absolute;
}
.cid-sIjMyRTGVe .geometry__circle-bg {
  position: absolute;
  width: 88px;
  height: 88px;
  background: #f2bb2c;
  border-radius: 100px;
  margin: 0.5rem;
}
@media screen and (max-width: 1200px) {
  .cid-sIjMyRTGVe .card-block {
    width: 100%;
  }
}
.cid-sIjMyRTGVe blockquote {
  border-color: #ffffff;
  border-radius: 34px;
  margin: 0;
  background-color: #ffffff;
}
.cid-sIjMyRTGVe blockquote h5 {
  font-weight: 300;
}
@media (max-width: 992px) {
  .cid-sIjMyRTGVe blockquote {
    padding: 2rem 1rem;
  }
  .cid-sIjMyRTGVe .geometry {
    position: absolute;
  }
  .cid-sIjMyRTGVe .geometry__circle,
  .cid-sIjMyRTGVe .geometry__circle-bg {
    width: 66px;
    height: 66px;
  }
  .cid-sIjMyRTGVe .geometry_left {
    left: -47px;
    bottom: 240px;
  }
}
@media (min-width: 992px) {
  .cid-sIjMyRTGVe blockquote {
    padding: 3rem;
  }
}
@media (min-width: 768px) {
  .cid-sIjMyRTGVe .geometry__circle-bg {
    transition: transform .3s;
    transform-origin: 0 60px;
  }
  .cid-sIjMyRTGVe blockquote:hover .geometry__circle-bg {
    transform: rotate(-40deg) scale(0.9);
  }
}
.cid-sIjMM1uCNB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fcf5e6;
}
.cid-sIjMM1uCNB .content {
  display: flex;
  flex-flow: row-reverse;
}
.cid-sIjMM1uCNB .text-wrapper {
  position: relative;
  background: #ffffff;
  width: 50%;
  padding: 50px 0;
  border-radius: 30px 0 0 30px;
}
.cid-sIjMM1uCNB .text-wrapper .card-btn a {
  margin: 2rem 0 0 0;
}
.cid-sIjMM1uCNB .text-wrapper .card-btn {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
}
.cid-sIjMM1uCNB .text-wrapper .card-text,
.cid-sIjMM1uCNB .text-wrapper .card-btn,
.cid-sIjMM1uCNB .text-wrapper .card-title {
  margin: 1rem 4rem 1rem -25vw;
}
.cid-sIjMM1uCNB .content-wrapper {
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-sIjMM1uCNB .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
    margin: 0 2rem 7rem 2rem;
  }
  .cid-sIjMM1uCNB .content-wrapper .geometry__square,
  .cid-sIjMM1uCNB .content-wrapper .geometry__circle {
    width: 66px;
    height: 66px;
  }
}
@media (max-width: 767px) {
  .cid-sIjMM1uCNB .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sIjMM1uCNB .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sIjMM1uCNB .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sIjMM1uCNB .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-sIjMM1uCNB .geometry {
  position: absolute;
}
.cid-sIjMM1uCNB .geometry_top-left {
  top: -50px;
  right: 80%;
}
.cid-sIjMM1uCNB .geometry_bottom-right {
  bottom: -40px;
  left: 40%;
}
.cid-sIjMM1uCNB .geometry__circle {
  width: 88px;
  height: 88px;
  border-radius: 100px;
  border: 2px solid #0b2b5c;
  padding: -1rem;
  z-index: 1;
  position: absolute;
}
.cid-sIjMM1uCNB .geometry__triangle {
  width: 126px;
  height: 88px;
}
.cid-sIjMM1uCNB .geometry__square,
.cid-sIjMM1uCNB .geometry__circle {
  width: 88px;
  height: 88px;
}
.cid-sIjMM1uCNB .geometry__square {
  border-radius: 8px;
  border: 2px solid #0b2b5c;
  z-index: 1;
  position: absolute;
}
.cid-sIjMM1uCNB .geometry__square-bg {
  width: 88px;
  height: 88px;
  background: #f2bb2c;
  border-radius: 8px;
  margin: 0.5rem;
  position: absolute;
}
.cid-sIjMM1uCNB .geometry__circle-bg {
  position: absolute;
  width: 88px;
  height: 88px;
  background: #f2bb2c;
  border-radius: 100px;
  margin: 0.5rem;
}
.cid-sIjMM1uCNB .geometry_top-right {
  top: -50px;
  left: 30%;
}
.cid-sIjMM1uCNB .geometry_bottom-left {
  bottom: 47px;
  right: 30%;
}
.cid-sIjMM1uCNB .image-wrapper {
  margin: 0 0 0 4rem;
}
.cid-sIjMM1uCNB .image-wrapper .img {
  padding: 20px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-sIjMM1uCNB .content {
    display: block;
  }
  .cid-sIjMM1uCNB .text-wrapper {
    width: 100%;
    border-radius: 0;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .cid-sIjMM1uCNB .card-text,
  .cid-sIjMM1uCNB .card-title,
  .cid-sIjMM1uCNB .card-btn {
    margin: 1rem 1rem 1rem 1rem !important;
  }
}
@media (min-width: 768px) {
  .cid-sIjMM1uCNB .geometry__square-bg {
    transition: transform .3s;
  }
  .cid-sIjMM1uCNB .geometry__circle-bg {
    transition: transform .3s;
    transform-origin: 0 60px;
  }
  .cid-sIjMM1uCNB .text-wrapper:hover .geometry__circle-bg {
    transform: rotate(-40deg) scale(0.9);
  }
  .cid-sIjMM1uCNB .text-wrapper:hover .geometry__square-bg {
    transform: rotate(20deg) scale(0.9);
  }
}
@media (max-width: 992px) {
  .cid-sIjMM1uCNB .geometry {
    position: absolute;
  }
  .cid-sIjMM1uCNB .geometry__circle,
  .cid-sIjMM1uCNB .geometry__circle-bg,
  .cid-sIjMM1uCNB .geometry__square,
  .cid-sIjMM1uCNB .geometry__square-bg {
    width: 66px;
    height: 66px;
  }
}
.cid-tl5huqlMJw {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fcf5e6;
}
.cid-tl5huqlMJw .content-wrapper {
  flex-direction: row-reverse;
}
.cid-tl5huqlMJw .row {
  align-items: center;
  padding: 0 12px;
}
@media (min-width: 992px) {
  .cid-tl5huqlMJw .row {
    padding: 0 16px;
  }
}
.cid-tl5huqlMJw .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  padding: 100px;
  border-radius: 10px;
  background-color: #f8f9fc;
}
@media (max-width: 767px) {
  .cid-tl5huqlMJw .content-wrapper {
    padding: 30px;
  }
}
@media (max-width: 991px) {
  .cid-tl5huqlMJw .content-wrapper {
    padding: 40px;
  }
}
.cid-tl5huqlMJw .image-wrapper {
  padding: 1rem;
  flex-direction: column;
  justify-content: center;
  display: flex;
}
.cid-tl5huqlMJw .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-tl5huqlMJw .mbr-section-title {
  margin-bottom: 1.425rem;
  width: 100%;
}
.cid-tl5huqlMJw .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 20px;
}
.cid-tl5huqlMJw .item-container {
  margin-top: 32px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tl5huqlMJw .item-container {
    margin-top: 0;
  }
}
.cid-tl5huqlMJw .item {
  display: flex;
  align-items: center;
  margin-top: 32px;
}
.cid-tl5huqlMJw .item:first-child {
  margin-top: 0;
}
@media (max-width: 767px) {
  .cid-tl5huqlMJw .item {
    flex-direction: column;
  }
}
.cid-tl5huqlMJw .icon-box {
  background: #f2bb2c;
  width: 64px;
  min-width: 64px;
  height: 64px;
  border-radius: 50%;
  margin-right: 24px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-tl5huqlMJw .icon-box {
    margin-right: 0;
  }
}
.cid-tl5huqlMJw .text-box {
  flex-grow: 1;
}
.cid-tl5huqlMJw .number-text {
  color: #0b2b5c;
}
.cid-tl5huqlMJw .icon-text {
  color: #111111;
  text-align: left;
}
.cid-tl5huqlMJw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tl5huqlMJw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tlhqmYadBV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #9fdbf8;
}
.cid-tlhqmYadBV .text-wrapper {
  position: relative;
  background: #ffffff;
  width: 60%;
  padding: 50px 0;
  border-radius: 0 30px 30px 0;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.cid-tlhqmYadBV .text-wrapper .card-btn {
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
}
.cid-tlhqmYadBV .text-wrapper .card-text,
.cid-tlhqmYadBV .text-wrapper .card-btn,
.cid-tlhqmYadBV .text-wrapper .card-title {
  margin: 1rem -25vw 0 50px;
}
@media (max-width: 767px) {
  .cid-tlhqmYadBV .text-wrapper .card-text,
  .cid-tlhqmYadBV .text-wrapper .card-btn,
  .cid-tlhqmYadBV .text-wrapper .card-title {
    margin: 1rem -25vw 0 1rem;
  }
}
.cid-tlhqmYadBV .content-wrapper {
  padding: 0 !important;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tlhqmYadBV .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-tlhqmYadBV .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
    margin: 0 2rem 7rem 2rem;
  }
  .cid-tlhqmYadBV .content-wrapper .geometry__square,
  .cid-tlhqmYadBV .content-wrapper .geometry__circle {
    width: 66px;
    height: 66px;
  }
}
@media (max-width: 767px) {
  .cid-tlhqmYadBV .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tlhqmYadBV .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tlhqmYadBV .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tlhqmYadBV .content-wrapper .text-wrapper {
    padding-left: 1rem;
    padding-right: 7rem;
  }
}
.cid-tlhqmYadBV .geometry {
  position: absolute;
}
.cid-tlhqmYadBV .geometry_top-right {
  top: -50px;
  right: 30%;
}
.cid-tlhqmYadBV .geometry_bottom-left {
  bottom: 47px;
  left: 20%;
}
.cid-tlhqmYadBV .geometry__square,
.cid-tlhqmYadBV .geometry__circle {
  width: 88px;
  height: 88px;
}
.cid-tlhqmYadBV .geometry__square {
  border-radius: 8px;
  border: 2px solid #0b2b5c;
  z-index: 1;
  position: absolute;
}
.cid-tlhqmYadBV .geometry__square-bg {
  width: 88px;
  height: 88px;
  background: #f2bb2c;
  border-radius: 8px;
  margin: 0.5rem;
  position: absolute;
}
.cid-tlhqmYadBV .geometry__circle {
  border-radius: 100px;
  border: 2px solid #0b2b5c;
  padding: -1rem;
  z-index: 1;
  position: absolute;
}
.cid-tlhqmYadBV .geometry__circle-bg {
  position: absolute;
  width: 88px;
  height: 88px;
  background: #f2bb2c;
  border-radius: 100px;
  margin: 0.5rem;
}
.cid-tlhqmYadBV .image-wrapper {
  margin: 0 4rem 0 0;
}
.cid-tlhqmYadBV .image-wrapper .img {
  padding: 20px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-tlhqmYadBV .content {
    display: block;
  }
  .cid-tlhqmYadBV .text-wrapper {
    width: 100%;
    border-radius: 0;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .cid-tlhqmYadBV .card-text,
  .cid-tlhqmYadBV .card-title,
  .cid-tlhqmYadBV .card-btn {
    margin: 1rem 1rem 1rem 1rem !important;
  }
}
@media (min-width: 768px) {
  .cid-tlhqmYadBV .geometry__square-bg {
    transition: transform .3s;
  }
  .cid-tlhqmYadBV .geometry__circle-bg {
    transition: transform .3s;
    transform-origin: 0 60px;
  }
  .cid-tlhqmYadBV .text-wrapper:hover .geometry__circle-bg {
    transform: rotate(-40deg) scale(0.9);
  }
  .cid-tlhqmYadBV .text-wrapper:hover .geometry__square-bg {
    transform: rotate(20deg) scale(0.9);
  }
}
@media (max-width: 992px) {
  .cid-tlhqmYadBV .geometry {
    position: absolute;
  }
  .cid-tlhqmYadBV .geometry__circle,
  .cid-tlhqmYadBV .geometry__circle-bg,
  .cid-tlhqmYadBV .geometry__square,
  .cid-tlhqmYadBV .geometry__square-bg {
    width: 66px;
    height: 66px;
  }
}
.cid-tlhqmYadBV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tlhqmYadBV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tlhlx35gZQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fcf5e6;
}
.cid-tlhlx35gZQ .content {
  display: flex;
  flex-flow: row-reverse;
}
.cid-tlhlx35gZQ .text-wrapper {
  position: relative;
  background: #ffffff;
  width: 50%;
  padding: 50px 0;
  border-radius: 30px 0 0 30px;
}
.cid-tlhlx35gZQ .text-wrapper .card-btn a {
  margin: 2rem 0 0 0;
}
.cid-tlhlx35gZQ .text-wrapper .card-btn {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
}
.cid-tlhlx35gZQ .text-wrapper .card-text,
.cid-tlhlx35gZQ .text-wrapper .card-btn,
.cid-tlhlx35gZQ .text-wrapper .card-title {
  margin: 1rem 4rem 1rem -25vw;
}
.cid-tlhlx35gZQ .content-wrapper {
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-tlhlx35gZQ .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
    margin: 0 2rem 7rem 2rem;
  }
  .cid-tlhlx35gZQ .content-wrapper .geometry__square,
  .cid-tlhlx35gZQ .content-wrapper .geometry__circle {
    width: 66px;
    height: 66px;
  }
}
@media (max-width: 767px) {
  .cid-tlhlx35gZQ .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tlhlx35gZQ .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tlhlx35gZQ .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tlhlx35gZQ .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-tlhlx35gZQ .geometry {
  position: absolute;
}
.cid-tlhlx35gZQ .geometry_top-left {
  top: -50px;
  right: 80%;
}
.cid-tlhlx35gZQ .geometry_bottom-right {
  bottom: -40px;
  left: 40%;
}
.cid-tlhlx35gZQ .geometry__circle {
  width: 88px;
  height: 88px;
  border-radius: 100px;
  border: 2px solid #0b2b5c;
  padding: -1rem;
  z-index: 1;
  position: absolute;
}
.cid-tlhlx35gZQ .geometry__triangle {
  width: 126px;
  height: 88px;
}
.cid-tlhlx35gZQ .geometry__square,
.cid-tlhlx35gZQ .geometry__circle {
  width: 88px;
  height: 88px;
}
.cid-tlhlx35gZQ .geometry__square {
  border-radius: 8px;
  border: 2px solid #0b2b5c;
  z-index: 1;
  position: absolute;
}
.cid-tlhlx35gZQ .geometry__square-bg {
  width: 88px;
  height: 88px;
  background: #f2bb2c;
  border-radius: 8px;
  margin: 0.5rem;
  position: absolute;
}
.cid-tlhlx35gZQ .geometry__circle-bg {
  position: absolute;
  width: 88px;
  height: 88px;
  background: #f2bb2c;
  border-radius: 100px;
  margin: 0.5rem;
}
.cid-tlhlx35gZQ .geometry_top-right {
  top: -50px;
  left: 30%;
}
.cid-tlhlx35gZQ .geometry_bottom-left {
  bottom: 47px;
  right: 30%;
}
.cid-tlhlx35gZQ .image-wrapper {
  margin: 0 0 0 4rem;
}
.cid-tlhlx35gZQ .image-wrapper .img {
  padding: 20px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-tlhlx35gZQ .content {
    display: block;
  }
  .cid-tlhlx35gZQ .text-wrapper {
    width: 100%;
    border-radius: 0;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .cid-tlhlx35gZQ .card-text,
  .cid-tlhlx35gZQ .card-title,
  .cid-tlhlx35gZQ .card-btn {
    margin: 1rem 1rem 1rem 1rem !important;
  }
}
@media (min-width: 768px) {
  .cid-tlhlx35gZQ .geometry__square-bg {
    transition: transform .3s;
  }
  .cid-tlhlx35gZQ .geometry__circle-bg {
    transition: transform .3s;
    transform-origin: 0 60px;
  }
  .cid-tlhlx35gZQ .text-wrapper:hover .geometry__circle-bg {
    transform: rotate(-40deg) scale(0.9);
  }
  .cid-tlhlx35gZQ .text-wrapper:hover .geometry__square-bg {
    transform: rotate(20deg) scale(0.9);
  }
}
@media (max-width: 992px) {
  .cid-tlhlx35gZQ .geometry {
    position: absolute;
  }
  .cid-tlhlx35gZQ .geometry__circle,
  .cid-tlhlx35gZQ .geometry__circle-bg,
  .cid-tlhlx35gZQ .geometry__square,
  .cid-tlhlx35gZQ .geometry__square-bg {
    width: 66px;
    height: 66px;
  }
}
.cid-tl5mKEZ9I3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tl5mKEZ9I3 .geometry {
  position: absolute;
}
.cid-tl5mKEZ9I3 .geometry__triangle {
  width: 128px;
  height: 88px;
}
.cid-tl5mKEZ9I3 .geometry_left {
  left: -70px;
}
.cid-tl5mKEZ9I3 .geometry__square {
  width: 88px;
  height: 88px;
  border-radius: 100px;
  border: 2px solid #0b2b5c;
  padding: -1rem;
  z-index: 1;
  position: absolute;
}
.cid-tl5mKEZ9I3 .geometry__square-bg {
  position: absolute;
  width: 88px;
  height: 88px;
  background: #f2bb2c;
  border-radius: 100px;
  margin: 0.5rem;
}
.cid-tl5mKEZ9I3 .geometry_bottom-left {
  left: 140px;
  bottom: 40px;
}
.cid-tl5mKEZ9I3 blockquote {
  border-color: #ffffff;
  border-radius: 34px;
  margin: 0;
  background-color: #2e5189;
}
.cid-tl5mKEZ9I3 blockquote h5 {
  font-weight: 300;
}
@media (max-width: 992px) {
  .cid-tl5mKEZ9I3 blockquote {
    padding: 2rem 1rem;
  }
  .cid-tl5mKEZ9I3 .geometry {
    position: absolute;
  }
  .cid-tl5mKEZ9I3 .geometry__square,
  .cid-tl5mKEZ9I3 .geometry__square-bg {
    width: 66px;
    height: 66px;
  }
  .cid-tl5mKEZ9I3 .geometry_bottom-left {
    left: 140px;
    bottom: 40px;
  }
}
@media (min-width: 992px) {
  .cid-tl5mKEZ9I3 blockquote {
    padding: 3rem;
  }
}
@media (max-width: 1400px) {
  .cid-tl5mKEZ9I3 .box-shadow {
    padding: 3rem 10rem;
  }
}
@media (max-width: 1200px) {
  .cid-tl5mKEZ9I3 .box-shadow {
    padding: 3rem 5rem;
  }
}
@media (max-width: 767px) {
  .cid-tl5mKEZ9I3 blockquote {
    padding: 2rem 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tl5mKEZ9I3 .geometry__square-bg {
    transition: transform .3s;
    transform-origin: 0 60px;
  }
  .cid-tl5mKEZ9I3 blockquote:hover .geometry__square-bg {
    transform: rotate(-40deg) scale(0.9);
  }
}
.cid-tl5mKEZ9I3 .mbr-text {
  color: #ffffff;
}
.cid-tl5LACYNum {
  padding-top: 1rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tl5LACYNum .item:focus,
.cid-tl5LACYNum span:focus {
  outline: none;
}
.cid-tl5LACYNum .item-wrapper {
  position: relative;
}
.cid-tl5LACYNum .slide-content {
  position: relative;
  border-radius: 4px;
  background: transparent;
  height: 100%;
  display: flex;
  overflow: visible;
  flex-flow: column nowrap;
}
.cid-tl5LACYNum .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 40%;
  max-width: 596px;
}
@media (max-width: 768px) {
  .cid-tl5LACYNum .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
@media (max-width: 900px) {
  .cid-tl5LACYNum .embla__slide {
    min-width: 60%;
  }
}
@media (max-width: 630px) {
  .cid-tl5LACYNum .embla__slide {
    min-width: 375px;
  }
}
.cid-tl5LACYNum .embla__button--next,
.cid-tl5LACYNum .embla__button--prev {
  display: flex;
}
.cid-tl5LACYNum .embla__button {
  transition: background-color 300ms ease, transform 300ms ease, -webkit-transform 300ms ease;
  border: none;
  width: 64px;
  height: 64px;
  font-size: 22px;
  border-radius: 50%;
  top: 50%;
  margin-top: -1.5rem;
  background-color: #14142b;
  color: #fff;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
.cid-tl5LACYNum .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tl5LACYNum .embla__button:hover {
  background: #47b5ed;
  color: #fff;
  transform: scale(1.05);
}
.cid-tl5LACYNum .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tl5LACYNum .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tl5LACYNum .embla__button {
    top: auto;
  }
}
.cid-tl5LACYNum .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tl5LACYNum .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tl5LACYNum .embla {
  position: relative;
  width: 100%;
}
.cid-tl5LACYNum .embla__viewport {
  overflow: visible;
  width: 100%;
}
.cid-tl5LACYNum .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tl5LACYNum .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tl5LACYNum .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tl5LACYNum .shadow {
  padding: 44px 32px 52px;
  border-radius: 34px;
  box-shadow: 0 5px 12px 0 rgba(20, 20, 43, 0.05) !important;
  transition: all 300ms ease, transform 300ms ease, -webkit-transform 300ms ease;
  overflow: visible;
  border: 1px solid #eff0f6;
}
.cid-tl5LACYNum .wrap-img {
  transition: all 300ms ease !important;
  overflow: hidden;
  border-radius: 30px 30px 0 0;
  height: 385px;
  padding: 20px 20px 35px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translate(0px, 0px);
}
.cid-tl5LACYNum .wrap-img::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: inherit;
  background-size: cover;
  transform-origin: center;
  transition: transform 0.3s ease-in-out;
}
.cid-tl5LACYNum .shadow:hover {
  transform: translate(0px, -6px);
  box-shadow: 0 10px 20px 0 rgba(8, 15, 52, 0.1) !important;
}
.cid-tl5LACYNum .shadow:hover a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption),
.cid-tl5LACYNum .shadow:hover .number,
.cid-tl5LACYNum .shadow:hover .card-title {
  color: #47b5ed !important;
}
.cid-tl5LACYNum .shadow:hover .wrap-img {
  padding: 15px 15px 30px;
}
.cid-tl5LACYNum .shadow:hover .wrap-img::after {
  transform: scale(1.05);
}
.cid-tl5LACYNum .card-wrapper {
  padding: 30px 15px;
  margin: 0 15px;
  width: auto;
  max-width: 100%;
  border: 1px solid #dbdbdb;
}
.cid-tl5LACYNum .card-title {
  font-weight: 700;
  padding: 10px 20px 10px;
  color: #4c4c4c;
  text-align: left;
  text-transform: uppercase;
}
.cid-tl5LACYNum H3 {
  color: #1d1d1f;
}
.cid-tl5LACYNum .card-subtitle {
  text-align: left;
  color: #14142b;
}
.cid-tl5LACYNum .iconfont-wrapper {
  text-align: left;
  margin-bottom: 16px;
}
.cid-tl5LACYNum .card-text {
  margin-bottom: 16px;
  text-align: left;
}
.cid-tl5LACYNum .mbr-iconfont::before {
  font-size: 25px;
}
.cid-tl5LACYNum .button-align {
  margin-top: 36px;
  text-align: center;
}
.cid-tl5LACYNum .mbr-section-btn {
  width: auto;
  display: inline-block;
}
.cid-tl5LACYNum .people {
  align-items: center;
}
.cid-tl5LACYNum img {
  border-radius: 10%;
  height: 128px;
  width: 128px;
  margin: 0;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tl5LACYNum .row.title-block {
    flex-direction: column;
  }
  .cid-tl5LACYNum .mbr-section-subtitle {
    margin-bottom: 20px;
    text-align: center;
  }
  .cid-tl5LACYNum .mbr-section-title {
    text-align: center;
  }
}
.cid-tl5LACYNum .card-subtitle,
.cid-tl5LACYNum .card-subtitle2 {
  display: inline;
}
@media (max-width: 1040px) {
  .cid-tl5LACYNum .people {
    flex-direction: column;
  }
  .cid-tl5LACYNum .card-text,
  .cid-tl5LACYNum .align,
  .cid-tl5LACYNum .iconfont-wrapper {
    text-align: center;
  }
  .cid-tl5LACYNum img {
    margin-bottom: 20px !important;
  }
}
.cid-tl5LACYNum .title-block {
  justify-content: space-between;
  margin-bottom: 32px;
  align-items: center;
}
@media (max-width: 400px) {
  .cid-tl5LACYNum .button-align {
    margin-top: 20px;
  }
}
.cid-tl5LACYNum .btn {
  margin-top: 20px;
}
.cid-tl5LACYNum a.btn > span {
  margin-left: 0.5rem;
}
@media (max-width: 767px) {
  .cid-tl5LACYNum .shadow {
    padding-top: 40px;
    padding-bottom: 43px;
  }
}
@media (max-width: 479px) {
  .cid-tl5LACYNum .shadow {
    padding: 33px 25px 36px;
  }
}
.cid-tl5EAzSUeK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fcf5e6;
}
.cid-tl5EAzSUeK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tl5EAzSUeK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tl5EAzSUeK .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tl5EAzSUeK img {
  border-radius: 2rem;
}
.cid-tl5EAzSUeK .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tl5EAzSUeK .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tl5EAzSUeK .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tl5EAzSUeK .mbr-section-title {
  color: #ff0000;
}
.cid-tl5EAzSUeK .mbr-text,
.cid-tl5EAzSUeK .mbr-section-btn {
  color: #502274;
}
.cid-sIjNgUU4Su {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sIjNgUU4Su .mbr-overlay {
  background-color: #fafafa;
  opacity: 0.1;
}
.cid-sIjNgUU4Su .list {
  list-style: none;
  padding-left: 0;
  color: #0b2b5c;
}
@media (max-width: 991px) {
  .cid-sIjNgUU4Su .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sIjNgUU4Su .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 991px) {
  .cid-sIjNgUU4Su .container-data {
    margin-bottom: 2rem;
  }
}
.cid-sIjNgUU4Su form.mbr-form {
  border-radius: 20px;
  background: #2e5189;
}
.cid-sIjNgUU4Su form.mbr-form .form-control {
  box-shadow: none;
  border: solid 1px #c7c7c7 !important;
}
.cid-sIjNgUU4Su form.mbr-form .form-control:focus {
  border: 1px solid #000 !important;
}
.cid-sIjNgUU4Su form.mbr-form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-sIjNgUU4Su form.mbr-form .mbr-section-btn .btn {
  width: max-content;
  margin: auto;
  padding: 0 3rem;
}
@media (max-width: 991px) {
  .cid-sIjNgUU4Su form.mbr-form .mbr-section-btn .btn {
    margin-top: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sIjNgUU4Su form.mbr-form {
    padding: 4rem 3rem;
    width: 70%;
  }
}
@media (max-width: 991px) {
  .cid-sIjNgUU4Su form.mbr-form {
    padding: 2rem 1rem;
  }
}
.cid-sIjNgUU4Su LABEL {
  color: #ffffff;
}
.cid-tl5VlOwrYq {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #2e5189;
}
.cid-tl5VlOwrYq img {
  width: 125px;
  margin: auto;
  filter: brightness(250%);
}
.cid-tl5VlOwrYq .card {
  transition: opacity 0.3s;
  height: fit-content;
  padding: 1rem 0rem;
  opacity: 0.5;
  margin-bottom: 1rem;
}
.cid-tl5VlOwrYq .card:hover {
  opacity: 0.9;
}
.cid-tl5VlOwrYq H1 {
  color: #ffffff;
}
.cid-tl5VlOwrYq .row {
  justify-content: space-between;
}
@media (min-width: 992px) {
  .cid-tl5VlOwrYq .col-lg-1 {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}
.cid-tl5VlOwrYq .row {
  justify-content: center !important;
}
.cid-sIjNm1ufWb {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sIjNm1ufWb .media-wrap {
  max-width: 220px;
  padding: 0;
}
@media (max-width: 1200px) {
  .cid-sIjNm1ufWb .media-wrap {
    margin-bottom: 1rem;
    max-width: 120px;
  }
}
@media (max-width: 991px) {
  .cid-sIjNm1ufWb .media-wrap {
    margin-bottom: 2rem;
    max-width: 80px;
  }
}
.cid-sIjNm1ufWb .container {
  overflow: hidden;
}
@media (max-width: 767px) {
  .cid-sIjNm1ufWb .row > div {
    margin: auto;
  }
}
.cid-sIjNm1ufWb .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sIjNm1ufWb .list {
  list-style: none;
  padding-left: 0;
  color: #0b2b5c;
}
@media (max-width: 991px) {
  .cid-sIjNm1ufWb .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sIjNm1ufWb .list {
    margin-bottom: 0rem;
  }
}
.cid-sIjNm1ufWb .mbr-text {
  color: #0b2b5c;
}
@media (min-width: 992px) {
  .cid-sIjNm1ufWb .border-left {
    border-left: 1px solid #0b2b5c;
  }
}
@media (max-width: 992px) {
  .cid-sIjNm1ufWb .row {
    display: grid;
  }
  .cid-sIjNm1ufWb .border-left {
    border: none;
    display: grid;
    grid-template-columns: 1fr 2fr;
    width: 100%;
  }
}
.cid-sIjNm1ufWb .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid #0b2b5c;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 1.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-sIjNm1ufWb .mbr-iconfont {
  color: #0b2b5c;
}
@media (max-width: 991px) {
  .cid-sIjNm1ufWb div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-sIjNm1ufWb .copyright {
  color: #bbbbbb;
}
.cid-tbWoGIsinU {
  z-index: 1000;
  width: 100%;
}
.cid-tbWoGIsinU nav.navbar {
  position: fixed;
  box-shadow: 1px 3px 3px 1px rgba(0, 0, 0, 0.1);
}
.cid-tbWoGIsinU .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-tbWoGIsinU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 1px 3px 3px 1px rgba(0, 0, 0, 0.1);
}
.cid-tbWoGIsinU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tbWoGIsinU .dropdown-item:hover,
.cid-tbWoGIsinU .dropdown-item:focus {
  background: #0b2b5c !important;
  color: white !important;
}
.cid-tbWoGIsinU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tbWoGIsinU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tbWoGIsinU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
  color: #000;
}
.cid-tbWoGIsinU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tbWoGIsinU .nav-link {
  position: relative;
}
.cid-tbWoGIsinU .container {
  display: flex;
  margin: auto;
}
.cid-tbWoGIsinU .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tbWoGIsinU .dropdown-menu,
.cid-tbWoGIsinU .navbar.opened {
  background: #fafafa !important;
}
.cid-tbWoGIsinU .nav-item:focus,
.cid-tbWoGIsinU .nav-link:focus {
  outline: none;
}
.cid-tbWoGIsinU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tbWoGIsinU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tbWoGIsinU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tbWoGIsinU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tbWoGIsinU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tbWoGIsinU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tbWoGIsinU .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #fafafa;
}
.cid-tbWoGIsinU .navbar.opened {
  transition: all 0.3s;
}
.cid-tbWoGIsinU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tbWoGIsinU .navbar .navbar-logo img {
  width: auto;
}
.cid-tbWoGIsinU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tbWoGIsinU .navbar.collapsed {
  justify-content: center;
}
.cid-tbWoGIsinU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tbWoGIsinU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tbWoGIsinU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-tbWoGIsinU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tbWoGIsinU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tbWoGIsinU .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-tbWoGIsinU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tbWoGIsinU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tbWoGIsinU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tbWoGIsinU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tbWoGIsinU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tbWoGIsinU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tbWoGIsinU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tbWoGIsinU .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-tbWoGIsinU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tbWoGIsinU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tbWoGIsinU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tbWoGIsinU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tbWoGIsinU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tbWoGIsinU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tbWoGIsinU .navbar.navbar-short {
  min-height: 60px;
}
.cid-tbWoGIsinU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tbWoGIsinU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tbWoGIsinU .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-tbWoGIsinU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tbWoGIsinU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tbWoGIsinU .dropdown-item.active,
.cid-tbWoGIsinU .dropdown-item:active {
  background-color: transparent;
}
.cid-tbWoGIsinU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tbWoGIsinU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tbWoGIsinU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tbWoGIsinU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-tbWoGIsinU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tbWoGIsinU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tbWoGIsinU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tbWoGIsinU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tbWoGIsinU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tbWoGIsinU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tbWoGIsinU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tbWoGIsinU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tbWoGIsinU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tbWoGIsinU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tbWoGIsinU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tbWoGIsinU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tbWoGIsinU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tbWoGIsinU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tbWoGIsinU .navbar-dropdown {
  padding: .7rem 1rem;
  position: fixed;
}
.cid-tbWoGIsinU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tbWoGIsinU .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tbWoGIsinU .navbar {
    height: 70px;
  }
  .cid-tbWoGIsinU .navbar.opened {
    height: auto;
  }
  .cid-tbWoGIsinU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tbVsJU1F4L {
  padding-top: 10rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/bud1-1121x778.png");
}
.cid-tbVsJU1F4L .mbr-section-title {
  text-align: center;
}
.cid-tbVZpjxf8x {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fef1e5;
}
.cid-tbVZpjxf8x .section-head {
  margin-bottom: 80px;
}
.cid-tbVZpjxf8x .card {
  border-bottom: 1px solid;
  border-color: #47b5ed;
  border-radius: 0;
}
.cid-tbVZpjxf8x .card:first-child {
  border-top: 1px solid;
  border-color: #47b5ed;
}
.cid-tbVZpjxf8x .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
  border: none;
}
.cid-tbVZpjxf8x .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tbVZpjxf8x .panel-title[aria-expanded='true'] .mbr-iconfont:before {
  -webkit-transform: rotate(90deg) translateX(-10px);
  -moz-transform: rotate(90deg) translateX(-10px);
  -ms-transform: rotate(90deg) translateX(-10px);
  -o-transform: rotate(90deg) translateX(-10px);
  transform: rotate(90deg) translateX(-10px);
}
.cid-tbVZpjxf8x .mbr-iconfont {
  position: relative;
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #000;
  border-radius: 50%;
  border: 3px solid;
  border-color: #0b2b5c;
  height: 37px;
  width: 37px;
  margin-top: 6px;
}
.cid-tbVZpjxf8x .mbr-iconfont:after {
  content: "";
  width: 20px;
  height: 3px;
  background-color: #0b2b5c;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.cid-tbVZpjxf8x .mbr-iconfont:before {
  content: "";
  width: 3px;
  height: 20px;
  background-color: #0b2b5c;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all .3s;
}
.cid-tbVZpjxf8x .panel-body,
.cid-tbVZpjxf8x .card-header {
  padding: 8px 0 15px;
}
.cid-tbVZpjxf8x .panel-title-edit {
  font-weight: 500;
  color: #000000;
}
.cid-tbW1cc300Y {
  padding-top: 0rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tbW1cc300Y .section-head {
  margin-bottom: 80px;
}
.cid-tbW1cc300Y .card {
  border-bottom: 1px solid;
  border-color: #47b5ed;
  border-radius: 0;
}
.cid-tbW1cc300Y .card:first-child {
  border-top: 0px solid;
  border-color: #47b5ed;
}
.cid-tbW1cc300Y .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
  border: none;
}
.cid-tbW1cc300Y .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tbW1cc300Y .panel-title[aria-expanded='true'] .mbr-iconfont:before {
  -webkit-transform: rotate(90deg) translateX(-10px);
  -moz-transform: rotate(90deg) translateX(-10px);
  -ms-transform: rotate(90deg) translateX(-10px);
  -o-transform: rotate(90deg) translateX(-10px);
  transform: rotate(90deg) translateX(-10px);
}
.cid-tbW1cc300Y .mbr-iconfont {
  position: relative;
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #000;
  border-radius: 50%;
  border: 3px solid;
  border-color: #0b2b5c;
  height: 37px;
  width: 37px;
  margin-top: 6px;
}
.cid-tbW1cc300Y .mbr-iconfont:after {
  content: "";
  width: 20px;
  height: 3px;
  background-color: #0b2b5c;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.cid-tbW1cc300Y .mbr-iconfont:before {
  content: "";
  width: 3px;
  height: 20px;
  background-color: #0b2b5c;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all .3s;
}
.cid-tbW1cc300Y .panel-body,
.cid-tbW1cc300Y .card-header {
  padding: 8px 0 15px;
}
.cid-tbW1cc300Y .panel-title-edit {
  font-weight: 500;
  color: #000000;
}
.cid-tbVDZmgjVM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fcf5e6;
}
.cid-tbVDZmgjVM .content-wrapper {
  flex-direction: row-reverse;
}
.cid-tbVDZmgjVM .row {
  align-items: center;
  padding: 0 12px;
}
@media (min-width: 992px) {
  .cid-tbVDZmgjVM .row {
    padding: 0 16px;
  }
}
.cid-tbVDZmgjVM .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  padding: 100px;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .cid-tbVDZmgjVM .content-wrapper {
    padding: 30px;
  }
}
@media (max-width: 991px) {
  .cid-tbVDZmgjVM .content-wrapper {
    padding: 40px;
  }
}
.cid-tbVDZmgjVM .image-wrapper {
  padding: 1rem;
  flex-direction: column;
  justify-content: center;
  display: flex;
}
.cid-tbVDZmgjVM .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-tbVDZmgjVM .mbr-section-title {
  margin-bottom: 1.425rem;
  width: 100%;
}
.cid-tbVDZmgjVM .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 20px;
}
.cid-tbVDZmgjVM .item-container {
  margin-top: 32px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tbVDZmgjVM .item-container {
    margin-top: 0;
  }
}
.cid-tbVDZmgjVM .item {
  display: flex;
  align-items: center;
  margin-top: 32px;
}
.cid-tbVDZmgjVM .item:first-child {
  margin-top: 0;
}
@media (max-width: 767px) {
  .cid-tbVDZmgjVM .item {
    flex-direction: column;
  }
}
.cid-tbVDZmgjVM .icon-box {
  background: #f2bb2c;
  width: 64px;
  min-width: 64px;
  height: 64px;
  border-radius: 50%;
  margin-right: 24px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-tbVDZmgjVM .icon-box {
    margin-right: 0;
  }
}
.cid-tbVDZmgjVM .text-box {
  flex-grow: 1;
}
.cid-tbVDZmgjVM .number-text {
  color: #0b2b5c;
}
.cid-tbVDZmgjVM .icon-text {
  color: #111111;
  text-align: left;
}
.cid-tbVDZmgjVM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tbVDZmgjVM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tl5qD7Ehs2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tl5qD7Ehs2 .mbr-overlay {
  background-color: #fafafa;
  opacity: 0.1;
}
.cid-tl5qD7Ehs2 .list {
  list-style: none;
  padding-left: 0;
  color: #0b2b5c;
}
@media (max-width: 991px) {
  .cid-tl5qD7Ehs2 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tl5qD7Ehs2 .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 991px) {
  .cid-tl5qD7Ehs2 .container-data {
    margin-bottom: 2rem;
  }
}
.cid-tl5qD7Ehs2 form.mbr-form {
  border-radius: 20px;
  background: #2e5189;
}
.cid-tl5qD7Ehs2 form.mbr-form .form-control {
  box-shadow: none;
  border: solid 1px #c7c7c7 !important;
}
.cid-tl5qD7Ehs2 form.mbr-form .form-control:focus {
  border: 1px solid #000 !important;
}
.cid-tl5qD7Ehs2 form.mbr-form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tl5qD7Ehs2 form.mbr-form .mbr-section-btn .btn {
  width: max-content;
  margin: auto;
  padding: 0 3rem;
}
@media (max-width: 991px) {
  .cid-tl5qD7Ehs2 form.mbr-form .mbr-section-btn .btn {
    margin-top: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tl5qD7Ehs2 form.mbr-form {
    padding: 4rem 3rem;
    width: 70%;
  }
}
@media (max-width: 991px) {
  .cid-tl5qD7Ehs2 form.mbr-form {
    padding: 2rem 1rem;
  }
}
.cid-tl5qD7Ehs2 LABEL {
  color: #ffffff;
}
.cid-sIjNm1ufWb {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sIjNm1ufWb .media-wrap {
  max-width: 220px;
  padding: 0;
}
@media (max-width: 1200px) {
  .cid-sIjNm1ufWb .media-wrap {
    margin-bottom: 1rem;
    max-width: 120px;
  }
}
@media (max-width: 991px) {
  .cid-sIjNm1ufWb .media-wrap {
    margin-bottom: 2rem;
    max-width: 80px;
  }
}
.cid-sIjNm1ufWb .container {
  overflow: hidden;
}
@media (max-width: 767px) {
  .cid-sIjNm1ufWb .row > div {
    margin: auto;
  }
}
.cid-sIjNm1ufWb .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sIjNm1ufWb .list {
  list-style: none;
  padding-left: 0;
  color: #0b2b5c;
}
@media (max-width: 991px) {
  .cid-sIjNm1ufWb .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sIjNm1ufWb .list {
    margin-bottom: 0rem;
  }
}
.cid-sIjNm1ufWb .mbr-text {
  color: #0b2b5c;
}
@media (min-width: 992px) {
  .cid-sIjNm1ufWb .border-left {
    border-left: 1px solid #0b2b5c;
  }
}
@media (max-width: 992px) {
  .cid-sIjNm1ufWb .row {
    display: grid;
  }
  .cid-sIjNm1ufWb .border-left {
    border: none;
    display: grid;
    grid-template-columns: 1fr 2fr;
    width: 100%;
  }
}
.cid-sIjNm1ufWb .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid #0b2b5c;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 1.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-sIjNm1ufWb .mbr-iconfont {
  color: #0b2b5c;
}
@media (max-width: 991px) {
  .cid-sIjNm1ufWb div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-sIjNm1ufWb .copyright {
  color: #bbbbbb;
}
.cid-tbWoGIsinU {
  z-index: 1000;
  width: 100%;
}
.cid-tbWoGIsinU nav.navbar {
  position: fixed;
  box-shadow: 1px 3px 3px 1px rgba(0, 0, 0, 0.1);
}
.cid-tbWoGIsinU .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-tbWoGIsinU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 1px 3px 3px 1px rgba(0, 0, 0, 0.1);
}
.cid-tbWoGIsinU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tbWoGIsinU .dropdown-item:hover,
.cid-tbWoGIsinU .dropdown-item:focus {
  background: #0b2b5c !important;
  color: white !important;
}
.cid-tbWoGIsinU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tbWoGIsinU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tbWoGIsinU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
  color: #000;
}
.cid-tbWoGIsinU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tbWoGIsinU .nav-link {
  position: relative;
}
.cid-tbWoGIsinU .container {
  display: flex;
  margin: auto;
}
.cid-tbWoGIsinU .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tbWoGIsinU .dropdown-menu,
.cid-tbWoGIsinU .navbar.opened {
  background: #fafafa !important;
}
.cid-tbWoGIsinU .nav-item:focus,
.cid-tbWoGIsinU .nav-link:focus {
  outline: none;
}
.cid-tbWoGIsinU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tbWoGIsinU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tbWoGIsinU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tbWoGIsinU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tbWoGIsinU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tbWoGIsinU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tbWoGIsinU .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #fafafa;
}
.cid-tbWoGIsinU .navbar.opened {
  transition: all 0.3s;
}
.cid-tbWoGIsinU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tbWoGIsinU .navbar .navbar-logo img {
  width: auto;
}
.cid-tbWoGIsinU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tbWoGIsinU .navbar.collapsed {
  justify-content: center;
}
.cid-tbWoGIsinU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tbWoGIsinU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tbWoGIsinU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-tbWoGIsinU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tbWoGIsinU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tbWoGIsinU .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-tbWoGIsinU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tbWoGIsinU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tbWoGIsinU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tbWoGIsinU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tbWoGIsinU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tbWoGIsinU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tbWoGIsinU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tbWoGIsinU .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-tbWoGIsinU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tbWoGIsinU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tbWoGIsinU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tbWoGIsinU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tbWoGIsinU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tbWoGIsinU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tbWoGIsinU .navbar.navbar-short {
  min-height: 60px;
}
.cid-tbWoGIsinU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tbWoGIsinU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tbWoGIsinU .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-tbWoGIsinU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tbWoGIsinU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tbWoGIsinU .dropdown-item.active,
.cid-tbWoGIsinU .dropdown-item:active {
  background-color: transparent;
}
.cid-tbWoGIsinU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tbWoGIsinU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tbWoGIsinU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tbWoGIsinU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-tbWoGIsinU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tbWoGIsinU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tbWoGIsinU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tbWoGIsinU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tbWoGIsinU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tbWoGIsinU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tbWoGIsinU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tbWoGIsinU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tbWoGIsinU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tbWoGIsinU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tbWoGIsinU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tbWoGIsinU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tbWoGIsinU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tbWoGIsinU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tbWoGIsinU .navbar-dropdown {
  padding: .7rem 1rem;
  position: fixed;
}
.cid-tbWoGIsinU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tbWoGIsinU .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tbWoGIsinU .navbar {
    height: 70px;
  }
  .cid-tbWoGIsinU .navbar.opened {
    height: auto;
  }
  .cid-tbWoGIsinU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tbWpBA6vEh {
  padding-top: 9rem;
  padding-bottom: 0rem;
  background-color: #9fdbf8;
}
.cid-tbWpBA6vEh .section-head {
  margin-bottom: 80px;
}
.cid-tbWpBA6vEh .card {
  border-bottom: 1px solid;
  border-color: #2e5189;
  border-radius: 0;
}
.cid-tbWpBA6vEh .card:first-child {
  border-top: 1px solid;
  border-color: #2e5189;
}
.cid-tbWpBA6vEh .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
  border: none;
}
.cid-tbWpBA6vEh .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tbWpBA6vEh .panel-title[aria-expanded='true'] .mbr-iconfont:before {
  -webkit-transform: rotate(90deg) translateX(-10px);
  -moz-transform: rotate(90deg) translateX(-10px);
  -ms-transform: rotate(90deg) translateX(-10px);
  -o-transform: rotate(90deg) translateX(-10px);
  transform: rotate(90deg) translateX(-10px);
}
.cid-tbWpBA6vEh .mbr-iconfont {
  position: relative;
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #000;
  border-radius: 50%;
  border: 3px solid;
  border-color: #041e45;
  height: 37px;
  width: 37px;
  margin-top: 6px;
}
.cid-tbWpBA6vEh .mbr-iconfont:after {
  content: "";
  width: 20px;
  height: 3px;
  background-color: #041e45;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.cid-tbWpBA6vEh .mbr-iconfont:before {
  content: "";
  width: 3px;
  height: 20px;
  background-color: #041e45;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all .3s;
}
.cid-tbWpBA6vEh .panel-body,
.cid-tbWpBA6vEh .card-header {
  padding: 8px 0 15px;
}
.cid-tbWpBA6vEh .panel-title-edit {
  font-weight: 500;
  color: #000000;
}
.cid-tbWpj3ax9D {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #9fdbf8;
}
.cid-tbWpj3ax9D .section-head {
  margin-bottom: 80px;
}
.cid-tbWpj3ax9D .card {
  border-bottom: 1px solid;
  border-color: #2e5189;
  border-radius: 0;
}
.cid-tbWpj3ax9D .card:first-child {
  border-top: 0px solid;
  border-color: #2e5189;
}
.cid-tbWpj3ax9D .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
  border: none;
}
.cid-tbWpj3ax9D .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tbWpj3ax9D .panel-title[aria-expanded='true'] .mbr-iconfont:before {
  -webkit-transform: rotate(90deg) translateX(-10px);
  -moz-transform: rotate(90deg) translateX(-10px);
  -ms-transform: rotate(90deg) translateX(-10px);
  -o-transform: rotate(90deg) translateX(-10px);
  transform: rotate(90deg) translateX(-10px);
}
.cid-tbWpj3ax9D .mbr-iconfont {
  position: relative;
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #000;
  border-radius: 50%;
  border: 3px solid;
  border-color: #0b2b5c;
  height: 37px;
  width: 37px;
  margin-top: 6px;
}
.cid-tbWpj3ax9D .mbr-iconfont:after {
  content: "";
  width: 20px;
  height: 3px;
  background-color: #0b2b5c;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.cid-tbWpj3ax9D .mbr-iconfont:before {
  content: "";
  width: 3px;
  height: 20px;
  background-color: #0b2b5c;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all .3s;
}
.cid-tbWpj3ax9D .panel-body,
.cid-tbWpj3ax9D .card-header {
  padding: 8px 0 15px;
}
.cid-tbWpj3ax9D .panel-title-edit {
  font-weight: 500;
  color: #000000;
}
.cid-tl5sBnX0mj {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fcf5e6;
}
.cid-tl5sBnX0mj .mbr-overlay {
  background-color: #fafafa;
  opacity: 0.1;
}
@media (min-width: 992px) {
  .cid-tl5sBnX0mj form.mbr-form {
    padding: 3rem 2rem;
    width: 100%;
  }
}
.cid-tl5sBnX0mj form.mbr-form .form-control {
  box-shadow: none;
  border: solid 1px #c7c7c7 !important;
}
.cid-tl5sBnX0mj form.mbr-form .form-control:focus {
  border: 1px solid #000 !important;
}
.cid-tl5sBnX0mj form.mbr-form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tl5sBnX0mj form.mbr-form .mbr-section-btn .btn {
  width: max-content;
  margin: auto;
  padding: 0 3rem;
}
.cid-sIjNm1ufWb {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sIjNm1ufWb .media-wrap {
  max-width: 220px;
  padding: 0;
}
@media (max-width: 1200px) {
  .cid-sIjNm1ufWb .media-wrap {
    margin-bottom: 1rem;
    max-width: 120px;
  }
}
@media (max-width: 991px) {
  .cid-sIjNm1ufWb .media-wrap {
    margin-bottom: 2rem;
    max-width: 80px;
  }
}
.cid-sIjNm1ufWb .container {
  overflow: hidden;
}
@media (max-width: 767px) {
  .cid-sIjNm1ufWb .row > div {
    margin: auto;
  }
}
.cid-sIjNm1ufWb .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sIjNm1ufWb .list {
  list-style: none;
  padding-left: 0;
  color: #0b2b5c;
}
@media (max-width: 991px) {
  .cid-sIjNm1ufWb .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sIjNm1ufWb .list {
    margin-bottom: 0rem;
  }
}
.cid-sIjNm1ufWb .mbr-text {
  color: #0b2b5c;
}
@media (min-width: 992px) {
  .cid-sIjNm1ufWb .border-left {
    border-left: 1px solid #0b2b5c;
  }
}
@media (max-width: 992px) {
  .cid-sIjNm1ufWb .row {
    display: grid;
  }
  .cid-sIjNm1ufWb .border-left {
    border: none;
    display: grid;
    grid-template-columns: 1fr 2fr;
    width: 100%;
  }
}
.cid-sIjNm1ufWb .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid #0b2b5c;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 1.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-sIjNm1ufWb .mbr-iconfont {
  color: #0b2b5c;
}
@media (max-width: 991px) {
  .cid-sIjNm1ufWb div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-sIjNm1ufWb .copyright {
  color: #bbbbbb;
}
.cid-tbWoGIsinU {
  z-index: 1000;
  width: 100%;
}
.cid-tbWoGIsinU nav.navbar {
  position: fixed;
  box-shadow: 1px 3px 3px 1px rgba(0, 0, 0, 0.1);
}
.cid-tbWoGIsinU .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-tbWoGIsinU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 1px 3px 3px 1px rgba(0, 0, 0, 0.1);
}
.cid-tbWoGIsinU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tbWoGIsinU .dropdown-item:hover,
.cid-tbWoGIsinU .dropdown-item:focus {
  background: #0b2b5c !important;
  color: white !important;
}
.cid-tbWoGIsinU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tbWoGIsinU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tbWoGIsinU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
  color: #000;
}
.cid-tbWoGIsinU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tbWoGIsinU .nav-link {
  position: relative;
}
.cid-tbWoGIsinU .container {
  display: flex;
  margin: auto;
}
.cid-tbWoGIsinU .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tbWoGIsinU .dropdown-menu,
.cid-tbWoGIsinU .navbar.opened {
  background: #fafafa !important;
}
.cid-tbWoGIsinU .nav-item:focus,
.cid-tbWoGIsinU .nav-link:focus {
  outline: none;
}
.cid-tbWoGIsinU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tbWoGIsinU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tbWoGIsinU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tbWoGIsinU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tbWoGIsinU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tbWoGIsinU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tbWoGIsinU .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #fafafa;
}
.cid-tbWoGIsinU .navbar.opened {
  transition: all 0.3s;
}
.cid-tbWoGIsinU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tbWoGIsinU .navbar .navbar-logo img {
  width: auto;
}
.cid-tbWoGIsinU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tbWoGIsinU .navbar.collapsed {
  justify-content: center;
}
.cid-tbWoGIsinU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tbWoGIsinU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tbWoGIsinU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-tbWoGIsinU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tbWoGIsinU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tbWoGIsinU .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-tbWoGIsinU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tbWoGIsinU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tbWoGIsinU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tbWoGIsinU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tbWoGIsinU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tbWoGIsinU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tbWoGIsinU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tbWoGIsinU .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-tbWoGIsinU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tbWoGIsinU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tbWoGIsinU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tbWoGIsinU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tbWoGIsinU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tbWoGIsinU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tbWoGIsinU .navbar.navbar-short {
  min-height: 60px;
}
.cid-tbWoGIsinU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tbWoGIsinU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tbWoGIsinU .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-tbWoGIsinU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tbWoGIsinU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tbWoGIsinU .dropdown-item.active,
.cid-tbWoGIsinU .dropdown-item:active {
  background-color: transparent;
}
.cid-tbWoGIsinU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tbWoGIsinU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tbWoGIsinU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tbWoGIsinU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-tbWoGIsinU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tbWoGIsinU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tbWoGIsinU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tbWoGIsinU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tbWoGIsinU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tbWoGIsinU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tbWoGIsinU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tbWoGIsinU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tbWoGIsinU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tbWoGIsinU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tbWoGIsinU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tbWoGIsinU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tbWoGIsinU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tbWoGIsinU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tbWoGIsinU .navbar-dropdown {
  padding: .7rem 1rem;
  position: fixed;
}
.cid-tbWoGIsinU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tbWoGIsinU .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tbWoGIsinU .navbar {
    height: 70px;
  }
  .cid-tbWoGIsinU .navbar.opened {
    height: auto;
  }
  .cid-tbWoGIsinU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t8JSCauAVl {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/bg3.jpeg");
}
.cid-t8JSCauAVl H1 {
  color: #ffffff;
}
.cid-t8JSCauAVl .mbr-text,
.cid-t8JSCauAVl .mbr-section-btn {
  color: #ffffff;
}
.cid-t8JSCauAVl H3 {
  color: #716c80;
}
.cid-t8K2in7WeY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fcf5e6;
}
.cid-t8K2in7WeY .content {
  display: flex;
  flex-flow: row-reverse;
}
.cid-t8K2in7WeY .text-wrapper {
  position: relative;
  background: #ffffff;
  width: 50%;
  padding: 50px 0;
  border-radius: 30px 0 0 30px;
}
.cid-t8K2in7WeY .text-wrapper .card-btn a {
  margin: 2rem 0 0 0;
}
.cid-t8K2in7WeY .text-wrapper .card-btn {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
}
.cid-t8K2in7WeY .text-wrapper .card-text,
.cid-t8K2in7WeY .text-wrapper .card-btn,
.cid-t8K2in7WeY .text-wrapper .card-title {
  margin: 1rem 4rem 1rem -25vw;
}
.cid-t8K2in7WeY .content-wrapper {
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-t8K2in7WeY .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
    margin: 0 2rem 7rem 2rem;
  }
  .cid-t8K2in7WeY .content-wrapper .geometry__square,
  .cid-t8K2in7WeY .content-wrapper .geometry__circle {
    width: 66px;
    height: 66px;
  }
}
@media (max-width: 767px) {
  .cid-t8K2in7WeY .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-t8K2in7WeY .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-t8K2in7WeY .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-t8K2in7WeY .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-t8K2in7WeY .geometry {
  position: absolute;
}
.cid-t8K2in7WeY .geometry_top-left {
  top: -50px;
  right: 80%;
}
.cid-t8K2in7WeY .geometry_bottom-right {
  bottom: -40px;
  left: 40%;
}
.cid-t8K2in7WeY .geometry__circle {
  width: 88px;
  height: 88px;
  border-radius: 100px;
  border: 2px solid #0b2b5c;
  padding: -1rem;
  z-index: 1;
  position: absolute;
}
.cid-t8K2in7WeY .geometry__triangle {
  width: 126px;
  height: 88px;
}
.cid-t8K2in7WeY .geometry__square,
.cid-t8K2in7WeY .geometry__circle {
  width: 88px;
  height: 88px;
}
.cid-t8K2in7WeY .geometry__square {
  border-radius: 8px;
  border: 2px solid #0b2b5c;
  z-index: 1;
  position: absolute;
}
.cid-t8K2in7WeY .geometry__square-bg {
  width: 88px;
  height: 88px;
  background: #f2bb2c;
  border-radius: 8px;
  margin: 0.5rem;
  position: absolute;
}
.cid-t8K2in7WeY .geometry__circle-bg {
  position: absolute;
  width: 88px;
  height: 88px;
  background: #f2bb2c;
  border-radius: 100px;
  margin: 0.5rem;
}
.cid-t8K2in7WeY .geometry_top-right {
  top: -50px;
  left: 30%;
}
.cid-t8K2in7WeY .geometry_bottom-left {
  bottom: 47px;
  right: 30%;
}
.cid-t8K2in7WeY .image-wrapper {
  margin: 0 0 0 4rem;
}
.cid-t8K2in7WeY .image-wrapper .img {
  padding: 20px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-t8K2in7WeY .content {
    display: block;
  }
  .cid-t8K2in7WeY .text-wrapper {
    width: 100%;
    border-radius: 0;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .cid-t8K2in7WeY .card-text,
  .cid-t8K2in7WeY .card-title,
  .cid-t8K2in7WeY .card-btn {
    margin: 1rem 1rem 1rem 1rem !important;
  }
}
@media (min-width: 768px) {
  .cid-t8K2in7WeY .geometry__square-bg {
    transition: transform .3s;
  }
  .cid-t8K2in7WeY .geometry__circle-bg {
    transition: transform .3s;
    transform-origin: 0 60px;
  }
  .cid-t8K2in7WeY .text-wrapper:hover .geometry__circle-bg {
    transform: rotate(-40deg) scale(0.9);
  }
  .cid-t8K2in7WeY .text-wrapper:hover .geometry__square-bg {
    transform: rotate(20deg) scale(0.9);
  }
}
@media (max-width: 992px) {
  .cid-t8K2in7WeY .geometry {
    position: absolute;
  }
  .cid-t8K2in7WeY .geometry__circle,
  .cid-t8K2in7WeY .geometry__circle-bg,
  .cid-t8K2in7WeY .geometry__square,
  .cid-t8K2in7WeY .geometry__square-bg {
    width: 66px;
    height: 66px;
  }
}
.cid-t8K2in7WeY .mbr-text,
.cid-t8K2in7WeY .mbr-section-btn {
  text-align: left;
}
.cid-t8JUQioGjX {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-t8JUQioGjX .container {
  max-width: 1312px;
}
.cid-t8JUQioGjX .row {
  padding: 0 1rem;
}
@media (max-width: 991px) {
  .cid-t8JUQioGjX .row {
    padding: 0 0.75rem;
  }
}
.cid-t8JUQioGjX .text-container {
  width: 100%;
  padding: 0;
}
.cid-t8JUQioGjX .mbr-section-title {
  margin-bottom: 4rem;
  width: 100%;
  color: #002549;
}
.cid-t8JUQioGjX .cards-container {
  display: grid;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  grid-auto-columns: 1fr;
  grid-column-gap: 8rem;
  grid-row-gap: 4rem;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-t8JUQioGjX .cards-container {
    grid-column-gap: 4rem;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .cid-t8JUQioGjX .cards-container {
    max-width: 20rem;
    margin-right: auto;
    margin-left: auto;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.cid-t8JUQioGjX .card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-t8JUQioGjX .card-wrapper {
    margin-left: auto;
    margin-right: auto;
  }
}
.cid-t8JUQioGjX .card-title {
  color: #002549;
  margin-bottom: 1rem;
}
.cid-t8JUQioGjX .card-text {
  color: #002549;
}
.cid-t8JUQioGjX .mbr-iconfont {
  font-size: 25px;
  color: #e1965f;
}
.cid-t8JUQioGjX .icon-box {
  width: 100%;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}
.cid-t8JUWkg6m5 {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-t8JUWkg6m5 .container {
  max-width: 1312px;
}
.cid-t8JUWkg6m5 .row {
  padding: 0 1rem;
}
@media (max-width: 991px) {
  .cid-t8JUWkg6m5 .row {
    padding: 0 0.75rem;
  }
}
.cid-t8JUWkg6m5 .text-container {
  width: 100%;
  padding: 0;
}
.cid-t8JUWkg6m5 .mbr-section-title {
  margin-bottom: 4rem;
  width: 100%;
  color: #002549;
}
.cid-t8JUWkg6m5 .cards-container {
  display: grid;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  grid-auto-columns: 1fr;
  grid-column-gap: 8rem;
  grid-row-gap: 4rem;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-t8JUWkg6m5 .cards-container {
    grid-column-gap: 4rem;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .cid-t8JUWkg6m5 .cards-container {
    max-width: 20rem;
    margin-right: auto;
    margin-left: auto;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.cid-t8JUWkg6m5 .card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-t8JUWkg6m5 .card-wrapper {
    margin-left: auto;
    margin-right: auto;
  }
}
.cid-t8JUWkg6m5 .card-title {
  color: #002549;
  margin-bottom: 1rem;
}
.cid-t8JUWkg6m5 .card-text {
  color: #002549;
}
.cid-t8JUWkg6m5 .mbr-iconfont {
  font-size: 25px;
  color: #e1965f;
}
.cid-t8JUWkg6m5 .icon-box {
  width: 100%;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}
.cid-t8K1uEehw8 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fcf5e6;
}
.cid-t8K1uEehw8 .card-wrapper .card-img-wh {
  margin: auto;
  height: auto;
  padding: 1.8rem 0;
  max-height: 180px;
}
.cid-t8K1uEehw8 .card-wrapper ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-t8K1uEehw8 .card-wrapper ul li {
  position: relative;
  list-style: none;
  padding-top: 1rem;
}
.cid-t8K1uEehw8 .card-wrapper ul li:not(:first-child) {
  padding-top: 3rem;
  list-style: none;
  position: relative;
}
.cid-t8K1uEehw8 .card-wrapper ul li:not(:first-child):not(:first-child)::before {
  position: absolute;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #232323;
  width: 40px;
  left: 47%;
  height: 40px;
  top: 0;
  transform: rotate(90deg);
  content: "ᐅ";
}
.cid-t8K1uEehw8 .bg-block {
  background: #ffffff;
  padding: 3.5rem 5rem;
  border-radius: 20px;
  z-index: 2;
}
@media screen and (max-width: 1240px) {
  .cid-t8K1uEehw8 .bg-block {
    padding: 2.2rem 5rem;
  }
}
@media screen and (max-width: 890px) {
  .cid-t8K1uEehw8 .bg-block {
    padding: 2.2rem 3rem;
  }
}
@media (max-width: 768px) {
  .cid-t8K1uEehw8 .bg-block {
    padding: 2.2rem 1rem;
  }
}
.cid-t8K1uEehw8 .geometry {
  position: absolute;
  z-index: -1;
}
.cid-t8K1uEehw8 .geometry__circle {
  width: 88px;
  height: 88px;
  border-radius: 100px;
  border: 2px solid #0b2b5c;
  padding: -1rem;
  z-index: 1;
  position: absolute;
}
.cid-t8K1uEehw8 .geometry__square {
  width: 88px;
  height: 88px;
  border-radius: 8px;
  border: 2px solid #0b2b5c;
  z-index: 1;
  position: absolute;
}
.cid-t8K1uEehw8 .geometry_top-left {
  left: 17vw;
  top: -50.9px;
}
.cid-t8K1uEehw8 .geometry_bottom-right {
  right: -2vw;
  bottom: 110px;
}
.cid-t8K1uEehw8 .geometry__square,
.cid-t8K1uEehw8 .geometry__circle {
  width: 88px;
  height: 88px;
}
.cid-t8K1uEehw8 .geometry__square-bg {
  width: 88px;
  height: 88px;
  background: #f2bb2c;
  border-radius: 8px;
  margin: 0.5rem;
  position: absolute;
}
.cid-t8K1uEehw8 .geometry__circle-bg {
  position: absolute;
  width: 88px;
  height: 88px;
  background: #f2bb2c;
  border-radius: 100px;
  margin: 0.5rem;
}
.cid-t8K1uEehw8 .geometry_top-right {
  top: -50px;
  left: 30%;
}
.cid-t8K1uEehw8 .geometry_bottom-left {
  bottom: 47px;
  right: 30%;
}
@media (min-width: 768px) {
  .cid-t8K1uEehw8 .geometry__square-bg {
    transition: transform .3s;
  }
  .cid-t8K1uEehw8 .geometry__circle-bg {
    transition: transform .3s;
    transform-origin: 0 60px;
  }
  .cid-t8K1uEehw8 .bg-block:hover .geometry__circle-bg {
    transform: rotate(-40deg) scale(0.9);
  }
  .cid-t8K1uEehw8 .bg-block:hover .geometry__square-bg {
    transform: rotate(20deg) scale(0.9);
  }
}
@media (max-width: 992px) {
  .cid-t8K1uEehw8 .geometry {
    position: absolute;
  }
  .cid-t8K1uEehw8 .geometry__circle,
  .cid-t8K1uEehw8 .geometry__circle-bg,
  .cid-t8K1uEehw8 .geometry__square,
  .cid-t8K1uEehw8 .geometry__square-bg {
    width: 66px;
    height: 66px;
  }
}
.cid-t8K1uEehw8 .mbr-text UL {
  text-align: left;
}
.cid-t8K1uEehw8 .card-title {
  color: #ff0000;
}
.cid-sIjNm1ufWb {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sIjNm1ufWb .media-wrap {
  max-width: 220px;
  padding: 0;
}
@media (max-width: 1200px) {
  .cid-sIjNm1ufWb .media-wrap {
    margin-bottom: 1rem;
    max-width: 120px;
  }
}
@media (max-width: 991px) {
  .cid-sIjNm1ufWb .media-wrap {
    margin-bottom: 2rem;
    max-width: 80px;
  }
}
.cid-sIjNm1ufWb .container {
  overflow: hidden;
}
@media (max-width: 767px) {
  .cid-sIjNm1ufWb .row > div {
    margin: auto;
  }
}
.cid-sIjNm1ufWb .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sIjNm1ufWb .list {
  list-style: none;
  padding-left: 0;
  color: #0b2b5c;
}
@media (max-width: 991px) {
  .cid-sIjNm1ufWb .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sIjNm1ufWb .list {
    margin-bottom: 0rem;
  }
}
.cid-sIjNm1ufWb .mbr-text {
  color: #0b2b5c;
}
@media (min-width: 992px) {
  .cid-sIjNm1ufWb .border-left {
    border-left: 1px solid #0b2b5c;
  }
}
@media (max-width: 992px) {
  .cid-sIjNm1ufWb .row {
    display: grid;
  }
  .cid-sIjNm1ufWb .border-left {
    border: none;
    display: grid;
    grid-template-columns: 1fr 2fr;
    width: 100%;
  }
}
.cid-sIjNm1ufWb .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid #0b2b5c;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 1.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-sIjNm1ufWb .mbr-iconfont {
  color: #0b2b5c;
}
@media (max-width: 991px) {
  .cid-sIjNm1ufWb div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-sIjNm1ufWb .copyright {
  color: #bbbbbb;
}
.cid-tbWoGIsinU {
  z-index: 1000;
  width: 100%;
}
.cid-tbWoGIsinU nav.navbar {
  position: fixed;
  box-shadow: 1px 3px 3px 1px rgba(0, 0, 0, 0.1);
}
.cid-tbWoGIsinU .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-tbWoGIsinU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 1px 3px 3px 1px rgba(0, 0, 0, 0.1);
}
.cid-tbWoGIsinU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tbWoGIsinU .dropdown-item:hover,
.cid-tbWoGIsinU .dropdown-item:focus {
  background: #0b2b5c !important;
  color: white !important;
}
.cid-tbWoGIsinU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tbWoGIsinU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tbWoGIsinU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
  color: #000;
}
.cid-tbWoGIsinU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tbWoGIsinU .nav-link {
  position: relative;
}
.cid-tbWoGIsinU .container {
  display: flex;
  margin: auto;
}
.cid-tbWoGIsinU .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tbWoGIsinU .dropdown-menu,
.cid-tbWoGIsinU .navbar.opened {
  background: #fafafa !important;
}
.cid-tbWoGIsinU .nav-item:focus,
.cid-tbWoGIsinU .nav-link:focus {
  outline: none;
}
.cid-tbWoGIsinU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tbWoGIsinU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tbWoGIsinU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tbWoGIsinU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tbWoGIsinU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tbWoGIsinU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tbWoGIsinU .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #fafafa;
}
.cid-tbWoGIsinU .navbar.opened {
  transition: all 0.3s;
}
.cid-tbWoGIsinU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tbWoGIsinU .navbar .navbar-logo img {
  width: auto;
}
.cid-tbWoGIsinU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tbWoGIsinU .navbar.collapsed {
  justify-content: center;
}
.cid-tbWoGIsinU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tbWoGIsinU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tbWoGIsinU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-tbWoGIsinU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tbWoGIsinU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tbWoGIsinU .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-tbWoGIsinU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tbWoGIsinU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tbWoGIsinU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tbWoGIsinU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tbWoGIsinU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tbWoGIsinU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tbWoGIsinU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tbWoGIsinU .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-tbWoGIsinU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tbWoGIsinU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tbWoGIsinU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tbWoGIsinU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tbWoGIsinU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tbWoGIsinU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tbWoGIsinU .navbar.navbar-short {
  min-height: 60px;
}
.cid-tbWoGIsinU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tbWoGIsinU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tbWoGIsinU .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-tbWoGIsinU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tbWoGIsinU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tbWoGIsinU .dropdown-item.active,
.cid-tbWoGIsinU .dropdown-item:active {
  background-color: transparent;
}
.cid-tbWoGIsinU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tbWoGIsinU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tbWoGIsinU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tbWoGIsinU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-tbWoGIsinU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tbWoGIsinU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tbWoGIsinU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tbWoGIsinU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tbWoGIsinU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tbWoGIsinU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tbWoGIsinU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tbWoGIsinU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tbWoGIsinU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tbWoGIsinU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tbWoGIsinU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tbWoGIsinU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tbWoGIsinU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tbWoGIsinU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tbWoGIsinU .navbar-dropdown {
  padding: .7rem 1rem;
  position: fixed;
}
.cid-tbWoGIsinU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tbWoGIsinU .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tbWoGIsinU .navbar {
    height: 70px;
  }
  .cid-tbWoGIsinU .navbar.opened {
    height: auto;
  }
  .cid-tbWoGIsinU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tbWoGIsinU {
  z-index: 1000;
  width: 100%;
}
.cid-tbWoGIsinU nav.navbar {
  position: fixed;
  box-shadow: 1px 3px 3px 1px rgba(0, 0, 0, 0.1);
}
.cid-tbWoGIsinU .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-tbWoGIsinU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 1px 3px 3px 1px rgba(0, 0, 0, 0.1);
}
.cid-tbWoGIsinU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tbWoGIsinU .dropdown-item:hover,
.cid-tbWoGIsinU .dropdown-item:focus {
  background: #0b2b5c !important;
  color: white !important;
}
.cid-tbWoGIsinU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tbWoGIsinU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tbWoGIsinU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
  color: #000;
}
.cid-tbWoGIsinU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tbWoGIsinU .nav-link {
  position: relative;
}
.cid-tbWoGIsinU .container {
  display: flex;
  margin: auto;
}
.cid-tbWoGIsinU .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tbWoGIsinU .dropdown-menu,
.cid-tbWoGIsinU .navbar.opened {
  background: #fafafa !important;
}
.cid-tbWoGIsinU .nav-item:focus,
.cid-tbWoGIsinU .nav-link:focus {
  outline: none;
}
.cid-tbWoGIsinU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tbWoGIsinU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tbWoGIsinU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tbWoGIsinU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tbWoGIsinU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tbWoGIsinU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tbWoGIsinU .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #fafafa;
}
.cid-tbWoGIsinU .navbar.opened {
  transition: all 0.3s;
}
.cid-tbWoGIsinU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tbWoGIsinU .navbar .navbar-logo img {
  width: auto;
}
.cid-tbWoGIsinU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tbWoGIsinU .navbar.collapsed {
  justify-content: center;
}
.cid-tbWoGIsinU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tbWoGIsinU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tbWoGIsinU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-tbWoGIsinU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tbWoGIsinU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tbWoGIsinU .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-tbWoGIsinU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tbWoGIsinU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tbWoGIsinU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tbWoGIsinU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tbWoGIsinU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tbWoGIsinU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tbWoGIsinU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tbWoGIsinU .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-tbWoGIsinU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tbWoGIsinU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tbWoGIsinU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tbWoGIsinU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tbWoGIsinU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tbWoGIsinU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tbWoGIsinU .navbar.navbar-short {
  min-height: 60px;
}
.cid-tbWoGIsinU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tbWoGIsinU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tbWoGIsinU .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-tbWoGIsinU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tbWoGIsinU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tbWoGIsinU .dropdown-item.active,
.cid-tbWoGIsinU .dropdown-item:active {
  background-color: transparent;
}
.cid-tbWoGIsinU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tbWoGIsinU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tbWoGIsinU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tbWoGIsinU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-tbWoGIsinU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tbWoGIsinU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tbWoGIsinU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tbWoGIsinU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tbWoGIsinU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tbWoGIsinU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tbWoGIsinU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tbWoGIsinU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tbWoGIsinU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tbWoGIsinU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tbWoGIsinU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tbWoGIsinU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tbWoGIsinU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tbWoGIsinU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tbWoGIsinU .navbar-dropdown {
  padding: .7rem 1rem;
  position: fixed;
}
.cid-tbWoGIsinU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tbWoGIsinU .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tbWoGIsinU .navbar {
    height: 70px;
  }
  .cid-tbWoGIsinU .navbar.opened {
    height: auto;
  }
  .cid-tbWoGIsinU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tlgU007Ek3 {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tlgU007Ek3 .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sIjNm1ufWb {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sIjNm1ufWb .media-wrap {
  max-width: 220px;
  padding: 0;
}
@media (max-width: 1200px) {
  .cid-sIjNm1ufWb .media-wrap {
    margin-bottom: 1rem;
    max-width: 120px;
  }
}
@media (max-width: 991px) {
  .cid-sIjNm1ufWb .media-wrap {
    margin-bottom: 2rem;
    max-width: 80px;
  }
}
.cid-sIjNm1ufWb .container {
  overflow: hidden;
}
@media (max-width: 767px) {
  .cid-sIjNm1ufWb .row > div {
    margin: auto;
  }
}
.cid-sIjNm1ufWb .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sIjNm1ufWb .list {
  list-style: none;
  padding-left: 0;
  color: #0b2b5c;
}
@media (max-width: 991px) {
  .cid-sIjNm1ufWb .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sIjNm1ufWb .list {
    margin-bottom: 0rem;
  }
}
.cid-sIjNm1ufWb .mbr-text {
  color: #0b2b5c;
}
@media (min-width: 992px) {
  .cid-sIjNm1ufWb .border-left {
    border-left: 1px solid #0b2b5c;
  }
}
@media (max-width: 992px) {
  .cid-sIjNm1ufWb .row {
    display: grid;
  }
  .cid-sIjNm1ufWb .border-left {
    border: none;
    display: grid;
    grid-template-columns: 1fr 2fr;
    width: 100%;
  }
}
.cid-sIjNm1ufWb .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid #0b2b5c;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 1.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-sIjNm1ufWb .mbr-iconfont {
  color: #0b2b5c;
}
@media (max-width: 991px) {
  .cid-sIjNm1ufWb div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-sIjNm1ufWb .copyright {
  color: #bbbbbb;
}
