body {
  font-family: Inter Tight;
}
.display-1 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 7.5rem;
}
.display-2 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 4rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 5rem;
}
.display-4 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 2rem;
  line-height: 1.3;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Dosis', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 4.8rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 4.2rem;
    font-size: calc( 2.75rem + (6 - 2.75) * ((100vw - 25rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.75rem + (6 - 2.75) * ((100vw - 25rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 3.2rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 25rem) / (48 - 20)));
    line-height: calc( 1.3 * (2.05rem + (4 - 2.05) * ((100vw - 25rem) / (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.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    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))));
  }
}
/* 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: #a8def6 !important;
}
.bg-success {
  background-color: #0282fe !important;
}
.bg-info {
  background-color: #01478b !important;
}
.bg-warning {
  background-color: #f773e7 !important;
}
.bg-danger {
  background-color: #ff702b !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #a8def6 !important;
  border-color: #a8def6 !important;
  color: #0f6890 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #59c0ee !important;
  border-color: #59c0ee !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #0f6890 !important;
  background-color: #59c0ee !important;
  border-color: #59c0ee !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #79f429 !important;
  border-color: #79f429 !important;
  color: #0c1d01 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #50bd0a !important;
  border-color: #50bd0a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #0c1d01 !important;
  background-color: #50bd0a !important;
  border-color: #50bd0a !important;
}
.btn-info,
.btn-info:active {
  background-color: #01478b !important;
  border-color: #01478b !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #001b35 !important;
  border-color: #001b35 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #001b35 !important;
  border-color: #001b35 !important;
}
.btn-success,
.btn-success:active {
  background-color: #0282fe !important;
  border-color: #0282fe !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #0156a9 !important;
  border-color: #0156a9 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #0156a9 !important;
  border-color: #0156a9 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #f773e7 !important;
  border-color: #f773e7 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #f221d9 !important;
  border-color: #f221d9 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #f221d9 !important;
  border-color: #f221d9 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff702b !important;
  border-color: #ff702b !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #d34500 !important;
  border-color: #d34500 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #d34500 !important;
  border-color: #d34500 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #a8def6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #59c0ee !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #0f6890 !important;
  background-color: #a8def6 !important;
  border-color: #a8def6 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #79f429;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #50bd0a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #0c1d01 !important;
  background-color: #79f429 !important;
  border-color: #79f429 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #01478b;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #001b35 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #01478b !important;
  border-color: #01478b !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #0282fe;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #0156a9 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #0282fe !important;
  border-color: #0282fe !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f773e7;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #f221d9 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #f773e7 !important;
  border-color: #f773e7 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff702b;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #d34500 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff702b !important;
  border-color: #ff702b !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #a8def6 !important;
}
.text-secondary {
  color: #79f429 !important;
}
.text-success {
  color: #0282fe !important;
}
.text-info {
  color: #01478b !important;
}
.text-warning {
  color: #f773e7 !important;
}
.text-danger {
  color: #ff702b !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #4cbbec !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #4aae09 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #014e99 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #001326 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #f113d6 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #c44000 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  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: #a8def6;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #01478b;
}
.alert-warning {
  background-color: #f773e7;
}
.alert-danger {
  background-color: #ff702b;
}
.mbr-gallery-filter li.active .btn {
  background-color: #a8def6;
  border-color: #a8def6;
  color: #1179a7;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #a8def6;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #cde6ff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #0e87fd;
}
.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: #fffaf7;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Inter Tight', 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: #a8def6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Inter Tight', 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: #a8def6;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #a8def6;
  color: #000000;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #a8def6;
}
.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: #a8def6;
  border-bottom-color: #a8def6;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #a8def6 !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: #79f429 !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='%23a8def6' %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-duration: .3s;
  transition: 0.3s;
}
a:hover {
  background-image: none !important;
}
.container-fluid {
  padding: 0 5.2vw;
}
@media (max-width: 767px) {
  .container-fluid {
    padding: 0 6.5vw;
  }
}
.container {
  max-width: 2400px;
  margin: 0 auto;
  padding: 0 10.4vw;
}
@media (max-width: 767px) {
  .container {
    padding: 0 6.5vw;
  }
}
.row {
  margin-left: -1rem;
  margin-right: -1rem;
  justify-content: center;
}
.row > [class*="col"] {
  padding-left: 1rem;
  padding-right: 1rem;
}
.mbr-section-btn .btn {
  min-width: 80px;
  min-height: 60px;
  padding: 24px 44px;
  border-radius: 10em !important;
  border-width: 1px;
  font-weight: 500;
  box-shadow: none !important;
  transition: .4s all !important;
}
@media (max-width: 575px) {
  .mbr-section-btn {
    width: 100%;
  }
  .mbr-section-btn .btn {
    width: 100%;
    min-width: auto !important;
  }
}
.custom-section-btn .btn-transform {
  position: relative;
  width: 100%;
  overflow: hidden;
  animation: btn-move-out 0.4s ease-in-out;
  will-change: transform;
}
.custom-section-btn .btn-primary {
  color: #173D33 !important;
  background: linear-gradient(to bottom, #a8def6, #a8def6 50%, #173d33 50%, #173d33 100%) !important;
  background-size: 100% 200% !important;
  background-position: top !important;
  border: none !important;
}
.custom-section-btn .btn-primary:hover {
  background: linear-gradient(to bottom, #a8def6, #a8def6 50%, #173d33 50%, #173d33 100%) !important;
  background-size: 100% 200% !important;
  background-position: bottom !important;
  color: #FFFFFF !important;
}
.custom-section-btn .btn-primary:hover .btn-transform {
  animation: btn-move 0.4s ease-in-out;
}
.custom-section-btn .btn-white-outline {
  color: #FFFFFF !important;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2) 50%, #a8def6 50%, #a8def6 100%) !important;
  background-size: 100% 200% !important;
  background-position: top !important;
  border: none !important;
}
.custom-section-btn .btn-white-outline:hover {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2) 50%, #a8def6 50%, #a8def6 100%) !important;
  background-size: 100% 200% !important;
  background-position: bottom !important;
  color: #0E0E0E !important;
}
.custom-section-btn .btn-white-outline:hover .btn-transform {
  animation: btn-move 0.4s ease-in-out;
}
@keyframes btn-move {
  0% {
    transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  49% {
    transform: translate3d(0px, -100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  50% {
    transform: translate3d(0px, -100%, 0px) scale3d(1, 0, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    opacity: 0;
  }
  51% {
    transform: translate3d(0px, 100%, 0px) scale3d(1, 0, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  52% {
    transform: translate3d(0px, 100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  100% {
    transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    opacity: 1;
  }
}
@keyframes btn-move-out {
  0% {
    transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  49% {
    transform: translate3d(0px, 100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  50% {
    transform: translate3d(0px, 100%, 0px) scale3d(1, 0, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    opacity: 0;
  }
  51% {
    transform: translate3d(0px, -100%, 0px) scale3d(1, 0, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  52% {
    transform: translate3d(0px, -100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  100% {
    transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    opacity: 1;
  }
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-u1Ag4T7D4Y .navbar-dropdown {
  position: relative !important;
}
.cid-u1Ag4T7D4Y .navbar-dropdown {
  position: absolute !important;
}
.cid-u1Ag4T7D4Y .menu-text {
  padding: 0 2rem;
  color: #e47691;
}
@media (max-width: 992px) {
  .cid-u1Ag4T7D4Y .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-u1Ag4T7D4Y .iconfont-wrapper {
  color: #021c15 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-u1Ag4T7D4Y .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-u1Ag4T7D4Y .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-u1Ag4T7D4Y .container {
    padding: 0 1rem;
  }
}
.cid-u1Ag4T7D4Y .menu-tite {
  background: #a8def6;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #01478b;
}
.cid-u1Ag4T7D4Y .nav-link {
  position: relative;
}
.cid-u1Ag4T7D4Y .nav-link:hover {
  color: #01478b !important;
}
.cid-u1Ag4T7D4Y .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #254b45;
}
.cid-u1Ag4T7D4Y .navbar.opened {
  transition: all 0.3s;
}
.cid-u1Ag4T7D4Y .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u1Ag4T7D4Y .navbar .navbar-logo img {
  width: auto;
}
.cid-u1Ag4T7D4Y .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u1Ag4T7D4Y .navbar.collapsed {
  justify-content: center;
}
.cid-u1Ag4T7D4Y .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u1Ag4T7D4Y .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u1Ag4T7D4Y .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-u1Ag4T7D4Y .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u1Ag4T7D4Y .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u1Ag4T7D4Y .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-u1Ag4T7D4Y .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u1Ag4T7D4Y .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u1Ag4T7D4Y .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u1Ag4T7D4Y .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u1Ag4T7D4Y .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u1Ag4T7D4Y .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u1Ag4T7D4Y .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u1Ag4T7D4Y .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-u1Ag4T7D4Y .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u1Ag4T7D4Y .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u1Ag4T7D4Y .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u1Ag4T7D4Y .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u1Ag4T7D4Y .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u1Ag4T7D4Y .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u1Ag4T7D4Y .navbar.navbar-short {
  min-height: 60px;
}
.cid-u1Ag4T7D4Y .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u1Ag4T7D4Y .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u1Ag4T7D4Y .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-u1Ag4T7D4Y .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u1Ag4T7D4Y .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u1Ag4T7D4Y .dropdown-item:hover,
.cid-u1Ag4T7D4Y .dropdown-item:focus {
  background: #a8def6 !important;
  color: #022404 !important;
}
.cid-u1Ag4T7D4Y .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u1Ag4T7D4Y .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u1Ag4T7D4Y .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-u1Ag4T7D4Y .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u1Ag4T7D4Y .dropdown-menu,
.cid-u1Ag4T7D4Y .navbar.opened {
  background: #254b45 !important;
}
.cid-u1Ag4T7D4Y .nav-item:focus,
.cid-u1Ag4T7D4Y .nav-link:focus {
  outline: none;
}
.cid-u1Ag4T7D4Y .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u1Ag4T7D4Y .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u1Ag4T7D4Y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u1Ag4T7D4Y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u1Ag4T7D4Y .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u1Ag4T7D4Y .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u1Ag4T7D4Y .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u1Ag4T7D4Y .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u1Ag4T7D4Y .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u1Ag4T7D4Y .dropdown-item.active,
.cid-u1Ag4T7D4Y .dropdown-item:active {
  background-color: transparent;
}
.cid-u1Ag4T7D4Y .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u1Ag4T7D4Y .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u1Ag4T7D4Y .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u1Ag4T7D4Y .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #254b45;
}
.cid-u1Ag4T7D4Y .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u1Ag4T7D4Y .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u1Ag4T7D4Y ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u1Ag4T7D4Y .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u1Ag4T7D4Y button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u1Ag4T7D4Y button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bfcf0a;
}
.cid-u1Ag4T7D4Y button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u1Ag4T7D4Y button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u1Ag4T7D4Y button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u1Ag4T7D4Y button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u1Ag4T7D4Y nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u1Ag4T7D4Y nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u1Ag4T7D4Y nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u1Ag4T7D4Y nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u1Ag4T7D4Y .navbar-dropdown {
  padding: 0 1rem;
}
.cid-u1Ag4T7D4Y a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u1Ag4T7D4Y .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-u1Ag4T7D4Y .navbar {
    height: 70px;
  }
  .cid-u1Ag4T7D4Y .navbar.opened {
    height: auto;
  }
  .cid-u1Ag4T7D4Y .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vj7Y94X1U1 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #173d33;
  overflow: hidden;
}
.cid-vj7Y94X1U1 .mbr-text {
  color: #FFFFFF;
  opacity: 0.5;
}
.cid-vjt4aGAbyw {
  background-color: #bcfa86;
  position: relative;
  display: flex;
  justify-content: center;
}
.cid-vjt4aGAbyw .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjt4aGAbyw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjt4aGAbyw .container-wrapper {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
.cid-vjt4aGAbyw .container-wrapper .image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.cid-vjt4aGAbyw .container-wrapper .image-wrapper .image-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}
.cid-vjt4aGAbyw .container-wrapper .overlay-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: #feef79;
  opacity: 0.8;
}
.cid-vjt4aGAbyw .content-wrapper {
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  .cid-vjt4aGAbyw .title-wrapper {
    padding: 0 20px;
  }
}
.cid-vjt4aGAbyw .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-vjt4aGAbyw .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-vjt4aGAbyw .title-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .cid-vjt4aGAbyw .title-wrapper .text-wrapper .mbr-text {
    width: 60%;
  }
}
@media (max-width: 992px) {
  .cid-vjt4aGAbyw .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vjt4aGAbyw .title-wrapper .mbr-section-btn {
  margin-top: 20px;
  margin-bottom: -9.6px;
}
.cid-vjt4aGAbyw .mbr-section-title {
  color: #3a353e;
}
.cid-vjt4aGAbyw .mbr-text,
.cid-vjt4aGAbyw .text-wrapper {
  color: #3a353e;
  text-align: center;
}
.cid-vjt4aGAbyw .mbr-section-title,
.cid-vjt4aGAbyw .mbr-section-btn {
  text-align: center;
  color: #01478b;
}
.cid-vjudmTzkpI {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/cbse-logo-173x173.webp");
}
.cid-vjudmTzkpI .mbr-overlay {
  background: #f3f3f1;
  opacity: 0.7;
}
.cid-vjudmTzkpI .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vjudmTzkpI .item {
    margin-bottom: 1rem;
    margin-top: 180px;
  }
}
@media (max-width: 1750px) {
  .cid-vjudmTzkpI .item {
    width: 50%;
    margin-top: 180px;
  }
}
@media (max-width: 992px) {
  .cid-vjudmTzkpI .item {
    margin-top: 200px;
    width: 100%;
  }
}
@media (min-width: 1600px) {
  .cid-vjudmTzkpI .row {
    padding-top: 200px;
  }
}
.cid-vjudmTzkpI .mbr-section-btn,
.cid-vjudmTzkpI .btn {
  width: 100%;
}
.cid-vjudmTzkpI .card-title,
.cid-vjudmTzkpI .card-title2,
.cid-vjudmTzkpI .card-text {
  width: 100%;
}
.cid-vjudmTzkpI .top-card {
  position: absolute;
  display: flex;
  top: -180px;
  padding: 0 1rem;
  width: -webkit-fill-available;
  height: 250px;
  margin: 0 2rem;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid white;
  border-radius: 1.5rem;
  backdrop-filter: blur(10px);
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .cid-vjudmTzkpI .top-card {
    margin: 0 1rem;
    top: -160px;
  }
}
.cid-vjudmTzkpI .card-text,
.cid-vjudmTzkpI .mbr-text {
  line-height: 1.6;
}
.cid-vjudmTzkpI .item-wrapper {
  position: relative;
  background: linear-gradient(to bottom, #0282fe, #01478b);
  height: 100%;
  display: flex;
  overflow: visible;
  padding: 3rem 2rem;
  padding-top: 7rem;
  flex-flow: column nowrap;
}
@media (max-width: 767px) {
  .cid-vjudmTzkpI .item-wrapper {
    padding: 3rem 1rem;
    padding-top: 7rem;
    padding-bottom: 1rem;
  }
}
.cid-vjudmTzkpI .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vjudmTzkpI .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-vjudmTzkpI .mbr-text,
.cid-vjudmTzkpI .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-vjudmTzkpI .item-subtitle {
  color: #000000;
}
.cid-vjudmTzkpI .mbr-section-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-vjudmTzkpI .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-vjudmTzkpI .card-text {
  color: #ffffff;
  text-align: center;
}
.cid-vjudmTzkpI .card-title2 {
  color: #ffffff;
  text-align: right;
}
.cid-vjudmTzkpI .card-title {
  color: #ffffff;
  text-align: left;
}
.cid-vju8U2dwgk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #102a23;
}
.cid-vju8U2dwgk .mbr-fallback-image.disabled {
  display: none;
}
.cid-vju8U2dwgk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vju8U2dwgk .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-vju8U2dwgk .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-vju8U2dwgk .container {
    padding: 0 16px;
  }
}
.cid-vju8U2dwgk .row {
  position: relative;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .cid-vju8U2dwgk .row {
    margin: 0 10px;
  }
}
.cid-vju8U2dwgk .row .card {
  position: relative;
  padding: 0;
}
.cid-vju8U2dwgk .row .card .decor-wrapper_1 {
  position: absolute;
  top: -25rem;
  left: -11rem;
  width: 3000px;
  height: 2000px;
  border: 40px solid #f9a600;
  border-radius: 15rem;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 1300px) {
  .cid-vju8U2dwgk .row .card .decor-wrapper_1 {
    left: -8rem;
  }
}
@media (max-width: 992px) {
  .cid-vju8U2dwgk .row .card .decor-wrapper_1 {
    right: -90px;
    border-radius: 18%;
  }
}
.cid-vju8U2dwgk .row .card .decor-wrapper_2 {
  position: absolute;
  top: 0;
  left: -11rem;
  width: 3000px;
  height: 2000px;
  border: 40px solid #fca2f1;
  border-radius: 14%;
  pointer-events: none;
}
@media (max-width: 1300px) {
  .cid-vju8U2dwgk .row .card .decor-wrapper_2 {
    left: -8rem;
  }
}
@media (max-width: 992px) {
  .cid-vju8U2dwgk .row .card .decor-wrapper_2 {
    right: -90px;
    border-radius: 18%;
  }
}
.cid-vju8U2dwgk .title-wrapper {
  position: relative;
  z-index: 1;
  padding-left: 100px;
  width: 60%;
  margin: 0 auto;
  padding-top: 200px;
}
@media (max-width: 992px) {
  .cid-vju8U2dwgk .title-wrapper {
    padding-left: 0;
    width: 100%;
  }
}
.cid-vju8U2dwgk .title-wrapper .icon-wrapper {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-vju8U2dwgk .title-wrapper .icon-wrapper {
    margin-bottom: 20px;
  }
}
.cid-vju8U2dwgk .title-wrapper .icon-wrapper .mbr-iconfont {
  width: 75px;
  height: 75px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #021c15;
  background-color: #f9a600;
  border-radius: 100%;
}
.cid-vju8U2dwgk .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-vju8U2dwgk .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-vju8U2dwgk .title-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-position: inside;
}
.cid-vju8U2dwgk .title-wrapper .list .item-wrap {
  margin-bottom: 32px;
}
.cid-vju8U2dwgk .title-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-vju8U2dwgk .mbr-section-title {
  color: #fdfcfc;
}
.cid-vju8U2dwgk .list {
  color: #F9A600;
}
.cid-u5Fn1DB2w7 .navbar-dropdown {
  position: relative !important;
}
.cid-u5Fn1DB2w7 .navbar-dropdown {
  position: absolute !important;
}
.cid-u5Fn1DB2w7 .menu-text {
  padding: 0 2rem;
  color: #e47691;
}
@media (max-width: 992px) {
  .cid-u5Fn1DB2w7 .menu-text {
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
.cid-u5Fn1DB2w7 .iconfont-wrapper {
  color: #021c15 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 992px) {
  .cid-u5Fn1DB2w7 .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-u5Fn1DB2w7 .container {
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-u5Fn1DB2w7 .container {
    padding: 0 1rem;
  }
}
.cid-u5Fn1DB2w7 .menu-tite {
  background: #a8def6;
  width: 100%;
  padding: 0.4rem 1rem;
  text-align: center;
  color: #01478b;
}
.cid-u5Fn1DB2w7 .nav-link {
  position: relative;
}
.cid-u5Fn1DB2w7 .nav-link:hover {
  color: #01478b !important;
}
.cid-u5Fn1DB2w7 .navbar {
  padding: 0!important;
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #254b45;
}
.cid-u5Fn1DB2w7 .navbar.opened {
  transition: all 0.3s;
}
.cid-u5Fn1DB2w7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u5Fn1DB2w7 .navbar .navbar-logo img {
  width: auto;
}
.cid-u5Fn1DB2w7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u5Fn1DB2w7 .navbar.collapsed {
  justify-content: center;
}
.cid-u5Fn1DB2w7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u5Fn1DB2w7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u5Fn1DB2w7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-u5Fn1DB2w7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u5Fn1DB2w7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u5Fn1DB2w7 .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-u5Fn1DB2w7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u5Fn1DB2w7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u5Fn1DB2w7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u5Fn1DB2w7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u5Fn1DB2w7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u5Fn1DB2w7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u5Fn1DB2w7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u5Fn1DB2w7 .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-u5Fn1DB2w7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u5Fn1DB2w7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u5Fn1DB2w7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u5Fn1DB2w7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u5Fn1DB2w7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u5Fn1DB2w7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u5Fn1DB2w7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-u5Fn1DB2w7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u5Fn1DB2w7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u5Fn1DB2w7 .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-u5Fn1DB2w7 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u5Fn1DB2w7 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u5Fn1DB2w7 .dropdown-item:hover,
.cid-u5Fn1DB2w7 .dropdown-item:focus {
  background: #a8def6 !important;
  color: #022404 !important;
}
.cid-u5Fn1DB2w7 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u5Fn1DB2w7 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u5Fn1DB2w7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 0.5em !important;
}
.cid-u5Fn1DB2w7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u5Fn1DB2w7 .dropdown-menu,
.cid-u5Fn1DB2w7 .navbar.opened {
  background: #254b45 !important;
}
.cid-u5Fn1DB2w7 .nav-item:focus,
.cid-u5Fn1DB2w7 .nav-link:focus {
  outline: none;
}
.cid-u5Fn1DB2w7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u5Fn1DB2w7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u5Fn1DB2w7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u5Fn1DB2w7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u5Fn1DB2w7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u5Fn1DB2w7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u5Fn1DB2w7 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u5Fn1DB2w7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u5Fn1DB2w7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u5Fn1DB2w7 .dropdown-item.active,
.cid-u5Fn1DB2w7 .dropdown-item:active {
  background-color: transparent;
}
.cid-u5Fn1DB2w7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u5Fn1DB2w7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u5Fn1DB2w7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u5Fn1DB2w7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #254b45;
}
.cid-u5Fn1DB2w7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u5Fn1DB2w7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u5Fn1DB2w7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u5Fn1DB2w7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u5Fn1DB2w7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u5Fn1DB2w7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bfcf0a;
}
.cid-u5Fn1DB2w7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u5Fn1DB2w7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u5Fn1DB2w7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u5Fn1DB2w7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u5Fn1DB2w7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u5Fn1DB2w7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u5Fn1DB2w7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u5Fn1DB2w7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u5Fn1DB2w7 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-u5Fn1DB2w7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u5Fn1DB2w7 .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-u5Fn1DB2w7 .navbar {
    height: 70px;
  }
  .cid-u5Fn1DB2w7 .navbar.opened {
    height: auto;
  }
  .cid-u5Fn1DB2w7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u5Fn1L269M {
  padding-top: 135px;
  padding-bottom: 135px;
  background-color: #b7d0a1;
}
.cid-u5Fn1L269M .mbr-iconfont {
  font-size: 50px;
  transition: color .3s;
  padding: 1.5rem;
}
.cid-u5Fn1L269M .mbr-section-title {
  margin: 0;
  color: #01478b;
}
.cid-u5Fn1L269M .mbr-section-subtitle {
  color: #e326cc;
}
.cid-u5Fn1L269M .card-img span {
  color: #1dc9cb;
}
.cid-u5Fn1L269M .row-item {
  margin-bottom: 2rem;
}
.cid-u5Fn1L269M .row-item:hover .wrapper {
  background: linear-gradient(90deg, #369898, #5eeebb);
  cursor: pointer;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  transition: all 0.3s;
}
.cid-u5Fn1L269M .row-item:hover .card-img span {
  color: #ffffff !important;
}
.cid-u5Fn1L269M .row-item:hover .mbr-card-title {
  color: #ffffff !important;
}
.cid-u5Fn1L269M .wrapper {
  padding: 2.5rem 1rem;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-u5Fn1L269M .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5Fn1L269M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5Fn1L269M .mbr-card-title,
.cid-u5Fn1L269M .card-img {
  color: #0282fe;
}
.cid-u5Q7T8z1jR {
  padding-top: 135px;
  padding-bottom: 135px;
  background-color: #eaf0e4;
}
.cid-u5Q7T8z1jR .container-fluid {
  padding: 0 3rem;
}
.cid-u5Q7T8z1jR .mbr-section-subtitle {
  color: #767676;
}
.cid-u5Q7T8z1jR .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-u5Q7T8z1jR .table-wrapper {
  margin: 0 auto;
}
.cid-u5Q7T8z1jR table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-u5Q7T8z1jR table thead tr {
  border: none !important;
}
.cid-u5Q7T8z1jR table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: justify;
  border-top: none;
  border-bottom: 1px solid #66095b;
  color: white;
  vertical-align: middle;
  background: #ffffff;
}
.cid-u5Q7T8z1jR table tr {
  border-bottom: 1px solid #f04bdc;
  border-top: none;
}
.cid-u5Q7T8z1jR table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-u5Q7T8z1jR table.table {
  background: #ffffff;
}
.cid-u5Q7T8z1jR tr:hover {
  background-color: #ffc2a4 !important;
}
.cid-u5Q7T8z1jR .head-item:after,
.cid-u5Q7T8z1jR .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-u5Q7T8z1jR table th,
  .cid-u5Q7T8z1jR table td {
    padding: .75rem;
  }
}
.cid-u5Q7T8z1jR .body-item {
  text-align: justify;
  color: #0a8584;
}
.cid-u5Q7T8z1jR .head-item {
  color: #0a8584;
  text-align: justify;
}
.cid-u5Q7T8z1jR .mbr-text {
  color: #767676;
  text-align: justify;
}
.cid-u5Q7T8z1jR .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5Q7T8z1jR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5Q7T8z1jR .mbr-section-title,
.cid-u5Q7T8z1jR .underline {
  color: #0a8584;
}
.cid-u5QprWqlN6 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #eaf0e4;
}
.cid-u5QprWqlN6 .container-fluid {
  padding: 0 3rem;
}
.cid-u5QprWqlN6 .mbr-section-subtitle {
  color: #767676;
}
.cid-u5QprWqlN6 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-u5QprWqlN6 .table-wrapper {
  margin: 0 auto;
}
.cid-u5QprWqlN6 table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-u5QprWqlN6 table thead tr {
  border: none !important;
}
.cid-u5QprWqlN6 table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: justify;
  border-top: none;
  border-bottom: 1px solid #66095b;
  color: white;
  vertical-align: middle;
  background: #ffffff;
}
.cid-u5QprWqlN6 table tr {
  border-bottom: 1px solid #f04bdc;
  border-top: none;
}
.cid-u5QprWqlN6 table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-u5QprWqlN6 table.table {
  background: #ffffff;
}
.cid-u5QprWqlN6 tr:hover {
  background-color: #bcfa86 !important;
}
.cid-u5QprWqlN6 .head-item:after,
.cid-u5QprWqlN6 .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-u5QprWqlN6 table th,
  .cid-u5QprWqlN6 table td {
    padding: .75rem;
  }
}
.cid-u5QprWqlN6 .body-item {
  text-align: justify;
  color: #0a8584;
}
.cid-u5QprWqlN6 .head-item {
  color: #0a8584;
  text-align: justify;
}
.cid-u5QprWqlN6 .mbr-text {
  color: #767676;
  text-align: justify;
}
.cid-u5QprWqlN6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5QprWqlN6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5QprWqlN6 .mbr-section-title,
.cid-u5QprWqlN6 .underline {
  color: #0a8584;
}
.cid-u5QpsOIALR {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #eaf0e4;
}
.cid-u5QpsOIALR .container-fluid {
  padding: 0 3rem;
}
.cid-u5QpsOIALR .mbr-section-subtitle {
  color: #767676;
}
.cid-u5QpsOIALR .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-u5QpsOIALR .table-wrapper {
  margin: 0 auto;
}
.cid-u5QpsOIALR table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-u5QpsOIALR table thead tr {
  border: none !important;
}
.cid-u5QpsOIALR table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: justify;
  border-top: none;
  border-bottom: 1px solid #66095b;
  color: white;
  vertical-align: middle;
  background: #ffffff;
}
.cid-u5QpsOIALR table tr {
  border-bottom: 1px solid #f04bdc;
  border-top: none;
}
.cid-u5QpsOIALR table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-u5QpsOIALR table.table {
  background: #ffffff;
}
.cid-u5QpsOIALR tr:hover {
  background-color: #ffc2a4 !important;
}
.cid-u5QpsOIALR .head-item:after,
.cid-u5QpsOIALR .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-u5QpsOIALR table th,
  .cid-u5QpsOIALR table td {
    padding: .75rem;
  }
}
.cid-u5QpsOIALR .body-item {
  text-align: justify;
  color: #0a8584;
}
.cid-u5QpsOIALR .head-item {
  color: #0a8584;
  text-align: justify;
}
.cid-u5QpsOIALR .mbr-text {
  color: #767676;
  text-align: justify;
}
.cid-u5QpsOIALR .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5QpsOIALR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5QpsOIALR .mbr-section-title,
.cid-u5QpsOIALR .underline {
  color: #0a8584;
}
.cid-u5QptEkTMk {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #eaf0e4;
}
.cid-u5QptEkTMk .container-fluid {
  padding: 0 3rem;
}
.cid-u5QptEkTMk .mbr-section-subtitle {
  color: #767676;
}
.cid-u5QptEkTMk .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-u5QptEkTMk .table-wrapper {
  margin: 0 auto;
}
.cid-u5QptEkTMk table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-u5QptEkTMk table thead tr {
  border: none !important;
}
.cid-u5QptEkTMk table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: justify;
  border-top: none;
  border-bottom: 1px solid #66095b;
  color: white;
  vertical-align: middle;
  background: #ffffff;
}
.cid-u5QptEkTMk table tr {
  border-bottom: 1px solid #f04bdc;
  border-top: none;
}
.cid-u5QptEkTMk table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-u5QptEkTMk table.table {
  background: #ffffff;
}
.cid-u5QptEkTMk tr:hover {
  background-color: #33d5ad !important;
}
.cid-u5QptEkTMk .head-item:after,
.cid-u5QptEkTMk .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-u5QptEkTMk table th,
  .cid-u5QptEkTMk table td {
    padding: .75rem;
  }
}
.cid-u5QptEkTMk .body-item {
  text-align: justify;
  color: #0a8584;
}
.cid-u5QptEkTMk .head-item {
  color: #0a8584;
  text-align: justify;
}
.cid-u5QptEkTMk .mbr-text {
  color: #767676;
  text-align: justify;
}
.cid-u5QptEkTMk .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5QptEkTMk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5QptEkTMk .mbr-section-title,
.cid-u5QptEkTMk .underline {
  color: #0a8584;
}
.cid-u5QpuxschY {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #eaf0e4;
}
.cid-u5QpuxschY .container-fluid {
  padding: 0 3rem;
}
.cid-u5QpuxschY .mbr-section-subtitle {
  color: #767676;
}
.cid-u5QpuxschY .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-u5QpuxschY .table-wrapper {
  margin: 0 auto;
}
.cid-u5QpuxschY table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-u5QpuxschY table thead tr {
  border: none !important;
}
.cid-u5QpuxschY table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: justify;
  border-top: none;
  border-bottom: 1px solid #66095b;
  color: white;
  vertical-align: middle;
  background: #ffffff;
}
.cid-u5QpuxschY table tr {
  border-bottom: 1px solid #f04bdc;
  border-top: none;
}
.cid-u5QpuxschY table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-u5QpuxschY table.table {
  background: #ffffff;
}
.cid-u5QpuxschY tr:hover {
  background-color: #ffc2a4 !important;
}
.cid-u5QpuxschY .head-item:after,
.cid-u5QpuxschY .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-u5QpuxschY table th,
  .cid-u5QpuxschY table td {
    padding: .75rem;
  }
}
.cid-u5QpuxschY .body-item {
  text-align: justify;
  color: #0a8584;
}
.cid-u5QpuxschY .head-item {
  color: #0a8584;
  text-align: justify;
}
.cid-u5QpuxschY .mbr-text {
  color: #767676;
  text-align: justify;
}
.cid-u5QpuxschY .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5QpuxschY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5QpuxschY .mbr-section-title,
.cid-u5QpuxschY .underline {
  color: #0a8584;
}
.cid-uBWyXUwsdk {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #eaf7d8;
}
.cid-uBWyXUwsdk .container-fluid {
  padding: 0 3rem;
}
.cid-uBWyXUwsdk .mbr-section-subtitle {
  color: #f70d0d;
}
.cid-uBWyXUwsdk .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uBWyXUwsdk .table-wrapper {
  margin: 0 auto;
}
.cid-uBWyXUwsdk .head-item {
  min-width: 70px;
}
.cid-uBWyXUwsdk table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-uBWyXUwsdk table th {
  padding: 1.5rem 1rem;
  transition: all 0.2s;
  text-align: center;
  background-color: #01478b;
  color: white;
  vertical-align: middle;
}
.cid-uBWyXUwsdk table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-uBWyXUwsdk table.table {
  background: #ffffff;
}
.cid-uBWyXUwsdk .dataTables_filter {
  text-align: right;
  margin-bottom: 0.5rem;
}
.cid-uBWyXUwsdk .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uBWyXUwsdk .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: 0.5rem;
  border-radius: 10px;
  padding-left: 1rem;
}
.cid-uBWyXUwsdk .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}
.cid-uBWyXUwsdk .dataTables_wrapper {
  display: block;
}
.cid-uBWyXUwsdk .dataTables_wrapper .search {
  margin-bottom: 0.5rem;
}
.cid-uBWyXUwsdk .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uBWyXUwsdk .head-item:after,
.cid-uBWyXUwsdk .head-item:before {
  bottom: 50% !important;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}
@media (max-width: 992px) {
  .cid-uBWyXUwsdk .dataTables_filter {
    text-align: center;
  }
  .cid-uBWyXUwsdk .table-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cid-uBWyXUwsdk .dataTables_filter {
    text-align: center;
  }
  .cid-uBWyXUwsdk .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cid-uBWyXUwsdk .table-wrapper {
    width: 100% !important;
  }
  .cid-uBWyXUwsdk .container-fluid {
    padding: 0 1rem;
  }
  .cid-uBWyXUwsdk table th,
  .cid-uBWyXUwsdk table td {
    padding: 0.75rem;
  }
}
.cid-uBWyXUwsdk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBWyXUwsdk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBWyXUwsdk .mbr-section-title,
.cid-uBWyXUwsdk .underline {
  color: #01478b;
}
.cid-vj7Y94X1U1 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #173d33;
  overflow: hidden;
}
.cid-vj7Y94X1U1 .mbr-text {
  color: #FFFFFF;
  opacity: 0.5;
}
