body {
  font-family: Syne;
}
.display-1 {
  font-family: 'Syne', sans-serif;
  font-size: 4rem;
  line-height: .89;
  letter-spacing: -0.05em;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: -0.06em;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: -0.01em;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  line-height: 1.56;
  letter-spacing: -0.01em;
}
.display-5 > .mbr-iconfont {
  font-size: 1.875rem;
}
.display-7 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  line-height: 1.53;
  letter-spacing: -0.01em;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((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.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 200px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 200px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 200px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 200px;
}
.bg-primary {
  background-color: #181818 !important;
}
.bg-success {
  background-color: #008d1b !important;
}
.bg-info {
  background-color: #ffffff !important;
}
.bg-warning {
  background-color: #838b9c !important;
}
.bg-danger {
  background-color: #9d5578 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #181818 !important;
  border-color: #181818 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #454545 !important;
  border-color: #454545 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #1a1a1a !important;
  border-color: #1a1a1a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #1a1a1a !important;
  border-color: #1a1a1a !important;
}
.btn-info,
.btn-info:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !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: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-success,
.btn-success:active {
  background-color: #008d1b !important;
  border-color: #008d1b !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: #00360a !important;
  border-color: #00360a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #00360a !important;
  border-color: #00360a !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #838b9c !important;
  border-color: #838b9c !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: #59606f !important;
  border-color: #59606f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #59606f !important;
  border-color: #59606f !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #9d5578 !important;
  border-color: #9d5578 !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: #65374d !important;
  border-color: #65374d !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #65374d !important;
  border-color: #65374d !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: #181818;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #181818 !important;
  border-color: #181818 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #454545;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #1a1a1a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #454545 !important;
  border-color: #454545 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #008d1b;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #00360a !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: #008d1b !important;
  border-color: #008d1b !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #838b9c;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #59606f !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: #838b9c !important;
  border-color: #838b9c !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #9d5578;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #65374d !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: #9d5578 !important;
  border-color: #9d5578 !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: #181818 !important;
}
.text-secondary {
  color: #454545 !important;
}
.text-success {
  color: #008d1b !important;
}
.text-info {
  color: #ffffff !important;
}
.text-warning {
  color: #838b9c !important;
}
.text-danger {
  color: #9d5578 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #121212 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #002707 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #cccccc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #525967 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #5b3145 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #181818;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ffffff;
}
.alert-warning {
  background-color: #838b9c;
}
.alert-danger {
  background-color: #9d5578;
}
.mbr-gallery-filter li.active .btn {
  background-color: #181818;
  border-color: #181818;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #181818;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #cbcbcb;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #0eff3c;
}
.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: #cacdd5;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #cea4b8;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: -0.01em;
  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: #181818 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: -0.01em;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #181818;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #181818;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #181818;
}
.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: #181818;
  border-bottom-color: #181818;
}
.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: #181818 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #454545 !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='%23181818' %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;
}
.mbr-section-btn .btn,
.mbr-section-btn-main .btn {
  min-width: 148px;
  max-height: 55px;
  font-weight: 400;
  box-shadow: none;
}
.mbr-section-btn .btn:hover,
.mbr-section-btn-main .btn:hover {
  box-shadow: none;
}
.mbr-section-btn .btn-info,
.mbr-section-btn-main .btn-info {
  color: #181818 !important;
}
.mbr-section-btn .btn-primary-outline,
.mbr-section-btn-main .btn-primary-outline {
  border-color: #181818;
}
.mbr-section-btn .btn-secondary-outline,
.mbr-section-btn-main .btn-secondary-outline {
  border-color: #454545;
}
.mbr-section-btn .btn-success-outline,
.mbr-section-btn-main .btn-success-outline {
  border-color: #008d1b;
}
.mbr-section-btn .btn-info-outline,
.mbr-section-btn-main .btn-info-outline {
  border-color: #ffffff;
}
.mbr-section-btn .btn-warning-outline,
.mbr-section-btn-main .btn-warning-outline {
  border-color: #838b9c;
}
.mbr-section-btn .btn-danger-outline,
.mbr-section-btn-main .btn-danger-outline {
  border-color: #9d5578;
}
.cid-tBP0nsdwwh {
  overflow: visible;
}
.cid-tBP0nsdwwh .navbar-dropdown {
  position: relative !important;
}
.cid-tBP0nsdwwh .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-tBP0nsdwwh .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tBP0nsdwwh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tBP0nsdwwh .dropdown-item:hover,
.cid-tBP0nsdwwh .dropdown-item:focus {
  background: #181818 !important;
  color: inherit !important;
}
.cid-tBP0nsdwwh .dropdown-item:hover span {
  color: white;
}
.cid-tBP0nsdwwh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tBP0nsdwwh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tBP0nsdwwh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tBP0nsdwwh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tBP0nsdwwh .nav-link {
  position: relative;
}
.cid-tBP0nsdwwh .container {
  display: flex;
  gap: 1.5rem;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tBP0nsdwwh .container {
    flex-wrap: nowrap;
  }
}
.cid-tBP0nsdwwh .iconfont-wrapper {
  color: #1f1d1a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tBP0nsdwwh .iconfont-wrapper:hover {
  text-decoration-line: none !important;
}
.cid-tBP0nsdwwh .dropdown-menu,
.cid-tBP0nsdwwh .navbar.opened {
  background: #003366 !important;
}
.cid-tBP0nsdwwh .nav-item:focus,
.cid-tBP0nsdwwh .nav-link:focus {
  outline: none;
}
.cid-tBP0nsdwwh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tBP0nsdwwh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tBP0nsdwwh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tBP0nsdwwh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tBP0nsdwwh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tBP0nsdwwh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tBP0nsdwwh .navbar {
  min-height: 112px;
  transition: all 0.3s;
  border-bottom: none !important;
  background: #003366;
  border-radius: 0 !important;
  padding: 16px 0 !important;
}
@media (max-width: 767px) {
  .cid-tBP0nsdwwh .navbar {
    min-height: 77px;
    padding: 8px 0 !important;
  }
}
.cid-tBP0nsdwwh .navbar.opened {
  transition: all 0.3s;
}
.cid-tBP0nsdwwh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tBP0nsdwwh .navbar .navbar-logo img {
  width: auto;
}
.cid-tBP0nsdwwh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tBP0nsdwwh .navbar.collapsed {
  justify-content: center;
}
.cid-tBP0nsdwwh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tBP0nsdwwh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tBP0nsdwwh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tBP0nsdwwh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tBP0nsdwwh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tBP0nsdwwh .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-tBP0nsdwwh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tBP0nsdwwh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tBP0nsdwwh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tBP0nsdwwh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tBP0nsdwwh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tBP0nsdwwh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tBP0nsdwwh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tBP0nsdwwh .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-tBP0nsdwwh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tBP0nsdwwh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tBP0nsdwwh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tBP0nsdwwh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tBP0nsdwwh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tBP0nsdwwh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tBP0nsdwwh .navbar.navbar-short {
  min-height: 112px;
}
@media (max-width: 767px) {
  .cid-tBP0nsdwwh .navbar.navbar-short {
    min-height: 77px;
  }
}
.cid-tBP0nsdwwh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tBP0nsdwwh .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tBP0nsdwwh .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  margin: 0;
}
.cid-tBP0nsdwwh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tBP0nsdwwh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tBP0nsdwwh .dropdown-item.active,
.cid-tBP0nsdwwh .dropdown-item:active {
  background-color: transparent;
}
.cid-tBP0nsdwwh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tBP0nsdwwh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tBP0nsdwwh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tBP0nsdwwh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #003366;
}
.cid-tBP0nsdwwh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tBP0nsdwwh .navbar .navbar-collapse .dropdown .dropdown-menu {
  background: #ffffff !important;
}
.cid-tBP0nsdwwh .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tBP0nsdwwh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tBP0nsdwwh ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tBP0nsdwwh .navbar-buttons {
  text-align: center;
}
.cid-tBP0nsdwwh button.navbar-toggler {
  outline: none;
  width: 26px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin-left: 0.5rem;
  margin-right: 12px;
}
.cid-tBP0nsdwwh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 25px;
  height: 2px;
  border-right: 5px;
  background-color: #75083a;
}
.cid-tBP0nsdwwh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tBP0nsdwwh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tBP0nsdwwh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tBP0nsdwwh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tBP0nsdwwh button.navbar-toggler .hamburger-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #ffffff;
  transition: all 0.2s;
}
.cid-tBP0nsdwwh .navbar-toggler-close {
  position: absolute !important;
  right: 12px;
  top: 10px;
  margin-right: 0 !important;
}
.cid-tBP0nsdwwh .navbar-toggler-close .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tBP0nsdwwh .navbar-toggler-close .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tBP0nsdwwh .navbar-toggler-close .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tBP0nsdwwh .navbar-toggler-close .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tBP0nsdwwh .navbar-toggler-close .hamburger-bg {
  opacity: 0;
  background-color: #374151 !important;
  transition: .3s;
  border-radius: 0 !important;
}
.cid-tBP0nsdwwh .navbar-toggler-close .hamburger-bg:hover {
  opacity: 0.1 !important;
}
.cid-tBP0nsdwwh .navbar-toggler-close:hover .hamburger-bg {
  opacity: 0.1 !important;
}
.cid-tBP0nsdwwh button.navbar-toggler-close {
  margin-right: 0;
}
.cid-tBP0nsdwwh .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tBP0nsdwwh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tBP0nsdwwh .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-tBP0nsdwwh .navbar {
    height: 70px;
  }
  .cid-tBP0nsdwwh .navbar.opened {
    height: auto;
  }
  .cid-tBP0nsdwwh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tBP0nsdwwh .navbar-brand-main {
  max-width: 30%;
}
.cid-tBP0nsdwwh .navbar-nav-main {
  margin: 0;
  flex-grow: 1;
  justify-content: flex-end;
}
.cid-tBP0nsdwwh .navbar-nav-main .nav-item {
  margin: 0 !important;
}
.cid-tBP0nsdwwh .navbar-nav-main .nav-item .nav-link {
  padding: 15px !important;
  margin: 0 !important;
}
.cid-tBP0nsdwwh .navbar-nav-main .nav-item .nav-link:hover {
  text-decoration: underline;
}
.cid-tBP0nsdwwh .mbr-section-btn {
  margin: 0 -0.6rem;
  min-width: auto;
}
.cid-tBP0nsdwwh .navbar-buttons-main {
  margin-left: 6.4rem;
  max-width: 30%;
}
@media (max-width: 991px) {
  .cid-tBP0nsdwwh .navbar-buttons-main {
    max-width: 50%;
  }
}
@media (max-width: 575px) {
  .cid-tBP0nsdwwh .navbar-buttons-main {
    display: none;
  }
}
.cid-tBP0nsdwwh .navbar-toggler-open {
  position: relative;
  z-index: 10 !important;
}
.cid-tBP0nsdwwh .navbar-toggler {
  position: relative;
  z-index: 12;
}
.cid-tBP0nsdwwh .navbar-collapse {
  display: none !important;
  z-index: 11 !important;
}
@media (max-width: 991px) {
  .cid-tBP0nsdwwh .container,
  .cid-tBP0nsdwwh .container-fluid {
    justify-content: flex-end;
  }
  .cid-tBP0nsdwwh .navbar-brand-main {
    max-width: 50%;
    margin-right: auto;
  }
  .cid-tBP0nsdwwh .navbar-nav-main {
    display: none !important;
  }
  .cid-tBP0nsdwwh .sidbar-nav {
    width: 100%;
    align-items: center;
  }
  .cid-tBP0nsdwwh .sidbar-nav .nav-item {
    margin: 0  !important;
    padding: 1rem !important;
    width: 100%;
    border-bottom: 1px solid #bbbbbb;
  }
  .cid-tBP0nsdwwh .sidbar-nav .nav-item .nav-link {
    justify-content: flex-start;
    text-align: left;
    width: 100%;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0;
  }
  .cid-tBP0nsdwwh .sidbar-nav .nav-item .nav-link:hover {
    color: inherit !important;
  }
  .cid-tBP0nsdwwh .icons-menu {
    padding-right: 0 !important;
    padding-top: 20px !important;
    padding-bottom: 0 !important;
  }
  .cid-tBP0nsdwwh .navbar-collapse {
    display: flex !important;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start !important;
    align-items: stretch !important;
    position: fixed;
    background-color: #ffffff;
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    max-height: 100vh !important;
    overflow: auto;
    transition: .3s !important;
  }
  .cid-tBP0nsdwwh .navbar-collapse .mbr-section-btn {
    margin-top: 18px;
    padding: 0 16px;
    width: 100%;
  }
  .cid-tBP0nsdwwh .navbar-collapse .mbr-section-btn .btn {
    width: 100%;
  }
  .cid-tBP0nsdwwh .navbar-collapse .dropdown-item {
    border-bottom: 1px solid #bbbbbb;
  }
  .cid-tBP0nsdwwh .navbar-collapse .dropdown-item:hover,
  .cid-tBP0nsdwwh .navbar-collapse .dropdown-item:focus {
    background: #ffffff !important;
    color: inherit !important;
  }
  .cid-tBP0nsdwwh .navbar-collapse.show {
    padding: 28px 0;
    position: fixed;
    background-color: #ffffff;
    width: 500px;
    height: 100%;
    top: 0;
    right: 0;
    max-height: 100vh !important;
    overflow: auto;
  }
  .cid-tBP0nsdwwh .navbar.collapsed .dropdown-menu .dropdown-item {
    text-align: left;
  }
}
@media (max-width: 575px) {
  .cid-tBP0nsdwwh .navbar-collapse.show {
    width: 100% !important;
  }
}
.cid-tBHFeKFAcQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  background: linear-gradient(180deg, #ffffff, #003366);
}
.cid-tBHFeKFAcQ .btn {
  padding: 1.4rem 2.2rem;
}
.cid-tBHFeKFAcQ .btn span {
  order: -1;
  margin-left: 0;
  margin-right: 0.5rem;
}
.cid-tBHFeKFAcQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBHFeKFAcQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBHFeKFAcQ .mbr-text,
.cid-tBHFeKFAcQ .mbr-section-btn {
  text-align: center;
  color: #f8f8f8;
}
.cid-tBHFeKFAcQ .mbr-section-title {
  text-align: center;
  color: #003366;
}
.cid-tBHFlNaotE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tBHFlNaotE .text-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 1000px) {
  .cid-tBHFlNaotE .text-wrapper {
    padding: 2rem 0;
  }
}
.cid-tBHFlNaotE .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tBHFlNaotE .text-block {
  color: #565A69;
  margin-bottom: 50px;
}
.cid-tBHFlNaotE .row.justify-content-between {
  margin-bottom: 3px;
  margin: 0;
}
.cid-tBHFlNaotE .mbr-section-btn {
  padding-top: 53px;
  margin: 0px;
}
.cid-tBHFlNaotE .desc {
  margin-top: 22px;
  color: #b2b2b2;
  font-weight: 500;
}
.cid-tBHFlNaotE .btn-primary {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.cid-tBHFlNaotE .btn-primary:hover {
  color: #000000 !important;
  background-color: #e3e3e3 !important;
  border-color: #e3e3e3;
}
.cid-tBHFlNaotE .mbr-section-subtitle {
  color: #008d1b;
  font-weight: 700;
  margin-bottom: 2px;
  text-transform: uppercase;
}
.cid-tBHFlNaotE .desc1 {
  font-weight: 700;
  color: #ffffff;
}
.cid-tBHFlNaotE .desc2 {
  font-weight: 700;
  margin-top: 20px;
  color: #ffffff;
}
.cid-tBHFlNaotE .mbr-section-button {
  margin-top: 25px;
}
.cid-tBHFlNaotE .desc2,
.cid-tBHFlNaotE .mbr-section-btn {
  color: #008d1b;
}
.cid-tBHFlNaotE .desc1,
.cid-tBHFlNaotE .mbr-section-btn {
  color: #000000;
}
.cid-tBHNuiJNpL {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tBHNuiJNpL .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tBHNuiJNpL .row {
  flex-direction: row-reverse;
}
.cid-tBHNuiJNpL img {
  width: 100%;
}
.cid-tBHPlZrpG8 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #008d1b;
}
.cid-tBHPlZrpG8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBHPlZrpG8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tBHPlZrpG8 .container {
    padding: 0 30px;
  }
}
.cid-tBHPlZrpG8 .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tBHPlZrpG8 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tBMRm8A7qV {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #008d1b;
}
.cid-tBMRm8A7qV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBMRm8A7qV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBMRm8A7qV .row {
  justify-content: center;
}
.cid-tBMRm8A7qV .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-tBMRm8A7qV .row {
    padding: 0 12px;
  }
}
.cid-tBMRm8A7qV .item-wrap {
  z-index: 1;
}
.cid-tBMRm8A7qV .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tBHPwNctU8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tBHPwNctU8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBHPwNctU8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBHPwNctU8 .container {
  max-width: 1140px;
}
@media (max-width: 991px) {
  .cid-tBHPwNctU8 .container {
    padding: 0 50px !important;
  }
}
.cid-tBHPwNctU8 .row {
  align-items: stretch;
  flex-direction: row-reverse;
}
.cid-tBHPwNctU8 .col-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 67%;
  padding: 10px;
}
@media (max-width: 767px) {
  .cid-tBHPwNctU8 .col-text {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-tBHPwNctU8 .text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tBHPwNctU8 .text-wrapper {
    padding-top: 30px;
  }
}
.cid-tBHPwNctU8 .card-title {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tBHPwNctU8 .card-title {
    text-align: center;
  }
}
.cid-tBHPwNctU8 .mbr-text {
  color: #1d191f;
  margin-top: 20px;
  width: 100%;
  margin-bottom: 0 !important;
}
@media (max-width: 767px) {
  .cid-tBHPwNctU8 .mbr-text {
    text-align: center;
  }
}
.cid-tBHPwNctU8 .col-img {
  width: 33%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 10px;
  padding-left: 75px !important;
}
@media (max-width: 767px) {
  .cid-tBHPwNctU8 .col-img {
    width: 100%;
    padding: 0 !important;
    align-items: center;
  }
}
.cid-tBHPwNctU8 .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  position: relative;
}
@media (max-width: 991px) {
  .cid-tBHPwNctU8 .image-wrapper {
    align-items: flex-start;
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .cid-tBHPwNctU8 .image-wrapper {
    padding-right: 30px;
    max-width: 520px;
  }
}
@media (max-width: 575px) {
  .cid-tBHPwNctU8 .image-wrapper {
    padding-right: 0;
  }
}
.cid-tBHPwNctU8 .image-wrapper:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
  background-color: #003366;
  border-top-right-radius: 40%;
  border-bottom-right-radius: 40%;
  height: 65%;
  width: 90%;
}
.cid-tBHPwNctU8 .image-wrapper .img-bg-wrap {
  margin-bottom: 19%;
  margin-left: 19%;
}
.cid-tBHPwNctU8 .image-wrapper .img-bg-wrap img {
  position: relative;
  z-index: 2;
  height: auto;
  width: 100%;
  max-width: 100%;
  object-fit: cover;
  border-top-right-radius: 120px;
}
.cid-tBHPwNctU8 .mbr-text,
.cid-tBHPwNctU8 .mbr-section-btn {
  color: #dc3545;
}
.cid-tBHQgqBQLn {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tBHQgqBQLn .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBHQgqBQLn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBHQgqBQLn .container {
  max-width: 1140px;
}
@media (max-width: 991px) {
  .cid-tBHQgqBQLn .container {
    padding: 0 50px !important;
  }
}
.cid-tBHQgqBQLn .row {
  align-items: stretch;
}
.cid-tBHQgqBQLn .col-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 67%;
  padding: 10px;
}
@media (max-width: 767px) {
  .cid-tBHQgqBQLn .col-text {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-tBHQgqBQLn .text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tBHQgqBQLn .text-wrapper {
    padding-top: 30px;
  }
}
.cid-tBHQgqBQLn .card-title {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tBHQgqBQLn .card-title {
    text-align: center;
  }
}
.cid-tBHQgqBQLn .mbr-text {
  color: #1d191f;
  margin-top: 20px;
  width: 100%;
  margin-bottom: 0 !important;
}
@media (max-width: 767px) {
  .cid-tBHQgqBQLn .mbr-text {
    text-align: center;
  }
}
.cid-tBHQgqBQLn .col-img {
  width: 33%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 10px;
  padding-right: 75px !important;
}
@media (max-width: 767px) {
  .cid-tBHQgqBQLn .col-img {
    width: 100%;
    padding: 0 !important;
    align-items: center;
  }
}
.cid-tBHQgqBQLn .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  position: relative;
}
@media (max-width: 991px) {
  .cid-tBHQgqBQLn .image-wrapper {
    align-items: flex-start;
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .cid-tBHQgqBQLn .image-wrapper {
    padding-right: 30px;
    max-width: 520px;
  }
}
@media (max-width: 575px) {
  .cid-tBHQgqBQLn .image-wrapper {
    padding-right: 0;
  }
}
.cid-tBHQgqBQLn .image-wrapper:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
  background-color: #003366;
  border-top-right-radius: 40%;
  border-bottom-right-radius: 40%;
  height: 65%;
  width: 90%;
}
.cid-tBHQgqBQLn .image-wrapper .img-bg-wrap {
  margin-bottom: 19%;
  margin-left: 19%;
}
.cid-tBHQgqBQLn .image-wrapper .img-bg-wrap img {
  position: relative;
  z-index: 2;
  height: auto;
  width: 100%;
  max-width: 100%;
  object-fit: cover;
  border-top-right-radius: 120px;
}
.cid-tBHQgqBQLn .mbr-text,
.cid-tBHQgqBQLn .mbr-section-btn {
  color: #dc3545;
}
.cid-tBMQzIlTYg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tBMQzIlTYg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBMQzIlTYg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBMQzIlTYg .container {
  max-width: 1140px;
}
@media (max-width: 991px) {
  .cid-tBMQzIlTYg .container {
    padding: 0 50px !important;
  }
}
.cid-tBMQzIlTYg .row {
  align-items: stretch;
  flex-direction: row-reverse;
}
.cid-tBMQzIlTYg .col-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 67%;
  padding: 10px;
}
@media (max-width: 767px) {
  .cid-tBMQzIlTYg .col-text {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-tBMQzIlTYg .text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tBMQzIlTYg .text-wrapper {
    padding-top: 30px;
  }
}
.cid-tBMQzIlTYg .card-title {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tBMQzIlTYg .card-title {
    text-align: center;
  }
}
.cid-tBMQzIlTYg .mbr-text {
  color: #1d191f;
  margin-top: 20px;
  width: 100%;
  margin-bottom: 0 !important;
}
@media (max-width: 767px) {
  .cid-tBMQzIlTYg .mbr-text {
    text-align: center;
  }
}
.cid-tBMQzIlTYg .col-img {
  width: 33%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 10px;
  padding-left: 75px !important;
}
@media (max-width: 767px) {
  .cid-tBMQzIlTYg .col-img {
    width: 100%;
    padding: 0 !important;
    align-items: center;
  }
}
.cid-tBMQzIlTYg .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  position: relative;
}
@media (max-width: 991px) {
  .cid-tBMQzIlTYg .image-wrapper {
    align-items: flex-start;
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .cid-tBMQzIlTYg .image-wrapper {
    padding-right: 30px;
    max-width: 520px;
  }
}
@media (max-width: 575px) {
  .cid-tBMQzIlTYg .image-wrapper {
    padding-right: 0;
  }
}
.cid-tBMQzIlTYg .image-wrapper:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
  background-color: #003366;
  border-top-right-radius: 40%;
  border-bottom-right-radius: 40%;
  height: 65%;
  width: 90%;
}
.cid-tBMQzIlTYg .image-wrapper .img-bg-wrap {
  margin-bottom: 19%;
  margin-left: 19%;
}
.cid-tBMQzIlTYg .image-wrapper .img-bg-wrap img {
  position: relative;
  z-index: 2;
  height: auto;
  width: 100%;
  max-width: 100%;
  object-fit: cover;
  border-top-right-radius: 120px;
}
.cid-tBMQzIlTYg .mbr-text,
.cid-tBMQzIlTYg .mbr-section-btn {
  color: #dc3545;
}
.cid-tBMSaoHQIm {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tBMSaoHQIm .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBMSaoHQIm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBMSaoHQIm .container {
  max-width: 1140px;
}
@media (max-width: 991px) {
  .cid-tBMSaoHQIm .container {
    padding: 0 50px !important;
  }
}
.cid-tBMSaoHQIm .row {
  align-items: stretch;
}
.cid-tBMSaoHQIm .col-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 67%;
  padding: 10px;
}
@media (max-width: 767px) {
  .cid-tBMSaoHQIm .col-text {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-tBMSaoHQIm .text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tBMSaoHQIm .text-wrapper {
    padding-top: 30px;
  }
}
.cid-tBMSaoHQIm .card-title {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tBMSaoHQIm .card-title {
    text-align: center;
  }
}
.cid-tBMSaoHQIm .mbr-text {
  color: #1d191f;
  margin-top: 20px;
  width: 100%;
  margin-bottom: 0 !important;
}
@media (max-width: 767px) {
  .cid-tBMSaoHQIm .mbr-text {
    text-align: center;
  }
}
.cid-tBMSaoHQIm .col-img {
  width: 33%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 10px;
  padding-right: 75px !important;
}
@media (max-width: 767px) {
  .cid-tBMSaoHQIm .col-img {
    width: 100%;
    padding: 0 !important;
    align-items: center;
  }
}
.cid-tBMSaoHQIm .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  position: relative;
}
@media (max-width: 991px) {
  .cid-tBMSaoHQIm .image-wrapper {
    align-items: flex-start;
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .cid-tBMSaoHQIm .image-wrapper {
    padding-right: 30px;
    max-width: 520px;
  }
}
@media (max-width: 575px) {
  .cid-tBMSaoHQIm .image-wrapper {
    padding-right: 0;
  }
}
.cid-tBMSaoHQIm .image-wrapper:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
  background-color: #003366;
  border-top-right-radius: 40%;
  border-bottom-right-radius: 40%;
  height: 65%;
  width: 90%;
}
.cid-tBMSaoHQIm .image-wrapper .img-bg-wrap {
  margin-bottom: 19%;
  margin-left: 19%;
}
.cid-tBMSaoHQIm .image-wrapper .img-bg-wrap img {
  position: relative;
  z-index: 2;
  height: auto;
  width: 100%;
  max-width: 100%;
  object-fit: cover;
  border-top-right-radius: 120px;
}
.cid-tBMSaoHQIm .mbr-text,
.cid-tBMSaoHQIm .mbr-section-btn {
  color: #dc3545;
}
.cid-tBHRqNfxwS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #008d1b;
}
.cid-tBHRqNfxwS .row {
  flex-direction: row-reverse;
}
.cid-tBHRqNfxwS .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-tBHRqNfxwS .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #181818;
}
.cid-tBHRqNfxwS .svg-top .st0 {
  fill: #008d1b;
}
@media (max-width: 992px) {
  .cid-tBHRqNfxwS .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
@media (min-width: 1400px) {
  .cid-tBHRqNfxwS .col-12 {
    padding: 0 2rem;
  }
  .cid-tBHRqNfxwS .row {
    margin: 0 -2rem;
  }
}
.cid-tBHRqNfxwS .mbr-text,
.cid-tBHRqNfxwS .mbr-section-btn {
  color: #ffffff;
}
.cid-tBHRqNfxwS .mbr-section-title {
  color: #ffffff;
}
.cid-tBHStvveBA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #008d1b;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-tBHStvveBA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBHStvveBA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBHStvveBA .section-border-item {
  background-color: #000000;
}
.cid-tBHStvveBA .card-title {
  color: #8d7742;
  text-align: center;
}
.cid-tBHStvveBA .card-subtitle {
  color: #FFF;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-tBHStvveBA .card-subtitle {
    margin-top: 0.75rem;
  }
}
.cid-tBHStvveBA .card-text {
  color: #ffffff;
  margin-top: 1rem;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-tBHStvveBA .card-text {
    margin-top: 0.75rem;
  }
}
.cid-tBMJuk5xqg {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #003366;
}
.cid-tBMJuk5xqg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBMJuk5xqg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tBMJuk5xqg .container {
    padding: 0 30px;
  }
}
.cid-tBMJuk5xqg .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tBMJuk5xqg .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tBLi8jgqvB {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/background1-4.jpg");
}
.cid-tBLi8jgqvB .mbr-overlay {
  background: #f8f6f2;
  opacity: 0.1;
}
.cid-tBLi8jgqvB .row {
  align-items: stretch;
  justify-content: center;
}
.cid-tBLi8jgqvB .item {
  padding-bottom: 20px;
  padding-top: 20px;
}
@media (max-width: 991px) {
  .cid-tBLi8jgqvB .item {
    padding-bottom: 18px;
    padding-top: 18px;
  }
}
@media (max-width: 767px) {
  .cid-tBLi8jgqvB .item {
    padding-bottom: 16px;
    padding-top: 16px;
  }
}
.cid-tBLi8jgqvB .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.cid-tBLi8jgqvB .item-wrapper:hover .item-img {
  transform: scale(1.1);
}
.cid-tBLi8jgqvB .item-img {
  width: 100%;
  opacity: 1;
  filter: brightness(100%);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
}
.cid-tBLi8jgqvB .item-content {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  z-index: 5;
  width: 100%;
  height: 100%;
  pointer-events: none;
  padding: 2rem;
}
.cid-tBLi8jgqvB .content-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: fit-content;
  margin-top: auto;
  margin-bottom: 0;
  pointer-events: auto;
}
.cid-tBLi8jgqvB .item-title {
  color: #FFFFFF;
  text-align: left;
}
.cid-tBLi8jgqvB .mbr-text {
  color: #FFFFFF;
  margin-top: 1rem;
}
.cid-tBLi8jgqvB .mbr-section-btn {
  margin-top: 20px;
}
.cid-tBLi8jgqvB .mbr-section-btn .btn:before {
  display: none;
}
.cid-tBLi8jgqvB .mbr-section-btn .btn:after {
  display: none;
}
.cid-tBLi8jgqvB .mbr-text,
.cid-tBLi8jgqvB .mbr-section-btn {
  text-align: left;
}
.cid-tBLffvsM4a {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tBLffvsM4a .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBLffvsM4a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tBLffvsM4a .container {
    padding: 0 30px;
  }
}
.cid-tBLffvsM4a .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tBLffvsM4a .mbr-text {
  color: #008d1b;
  text-align: center;
}
.cid-tBJpCrntAU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tBJpCrntAU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBJpCrntAU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBJpCrntAU .title-col {
  width: 100%;
  margin-bottom: 2rem;
}
.cid-tBJpCrntAU .mbr-section-title {
  color: #dfaf1a;
  width: 100%;
  text-align: center;
}
.cid-tBJpCrntAU .mbr-section-subtitle {
  color: #f8f8f8;
  width: 100%;
}
.cid-tBJpCrntAU .lists-col {
  width: 100%;
}
.cid-tBJpCrntAU .col-list {
  width: 100%;
}
.cid-tBJpCrntAU .list-title {
  color: #000000;
  width: 100%;
  margin-bottom: 10px;
}
.cid-tBJpCrntAU .list {
  list-style: none;
  margin: 0 0 10px 0;
  padding-left: 24px;
  color: #ffffff;
}
.cid-tBJpCrntAU li {
  position: relative;
  padding: 0 0 0 1rem;
  margin-bottom: 0;
}
.cid-tBJpCrntAU ul li::before {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: flex-start;
  content: "\2022";
  color: #dfaf1a;
  font-weight: bold;
  font-size: 1.2rem;
  width: 1.2rem;
}
.cid-tBJ4JW5Jww {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tBJ4JW5Jww .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBJ4JW5Jww .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBJ4JW5Jww .row {
  justify-content: center;
}
.cid-tBJ4JW5Jww .item-wrap {
  z-index: 1;
}
.cid-tBJ4JW5Jww .mbr-section-title {
  margin-bottom: 32px;
  color: #ffffff;
}
.cid-tBJ4JW5Jww .mbr-text {
  margin-bottom: 0;
  color: #000000;
}
.cid-tBJ4JW5Jww .mbr-section-title,
.cid-tBJ4JW5Jww .image-wrapper {
  color: #008d1b;
  text-align: center;
}
.cid-tBJ9c7JosQ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #008d1b;
}
.cid-tBJ9c7JosQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBJ9c7JosQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tBJ9c7JosQ .container {
    padding: 0 30px;
  }
}
.cid-tBJ9c7JosQ .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tBJ9c7JosQ .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tBJgh6FVyB {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #e3f3ff;
}
.cid-tBJgh6FVyB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBJgh6FVyB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBJgh6FVyB .row {
  align-items: center;
}
.cid-tBJgh6FVyB img {
  border-radius: 2rem;
}
@media (min-width: 992px) {
  .cid-tBJgh6FVyB .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tBJgh6FVyB .mbr-section-title {
  color: #491414;
}
.cid-tBJgh6FVyB .mbr-text,
.cid-tBJgh6FVyB .mbr-section-btn {
  color: #1f357f;
}
.cid-tBJh1sdBoc {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #e3f3ff;
}
.cid-tBJh1sdBoc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBJh1sdBoc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBJh1sdBoc .row {
  flex-direction: row-reverse;
}
.cid-tBJh1sdBoc .row {
  align-items: center;
}
.cid-tBJh1sdBoc img {
  border-radius: 2rem;
}
@media (min-width: 992px) {
  .cid-tBJh1sdBoc .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tBJh1sdBoc .mbr-section-title {
  color: #491414;
}
.cid-tBJh1sdBoc .mbr-text,
.cid-tBJh1sdBoc .mbr-section-btn {
  color: #1f357f;
}
.cid-tBJ7mjxTRR {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/mountain-bg.jpg");
}
@media (max-width: 991px) {
  .cid-tBJ7mjxTRR .image-wrapper {
    margin-bottom: 1rem;
    margin-top: 2rem;
  }
}
.cid-tBJ7mjxTRR img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tBJ7mjxTRR .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-tBJ7mjxTRR .mbr-section-title {
  color: #ffe300;
  text-align: center;
}
.cid-tBJ7mjxTRR .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tBJ7mjxTRR .mbr-description {
  color: #6c7577;
}
.cid-tBJ7mjxTRR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBJ7mjxTRR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBJ7zVkKI4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/mountain-bg.jpg");
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-tBJ7zVkKI4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBJ7zVkKI4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBJ7zVkKI4 .section-border-item {
  background-color: #000000;
}
.cid-tBJ7zVkKI4 .card-title {
  color: #8d7742;
  text-align: center;
}
.cid-tBJ7zVkKI4 .card-subtitle {
  color: #FFF;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-tBJ7zVkKI4 .card-subtitle {
    margin-top: 0.75rem;
  }
}
.cid-tBJ7zVkKI4 .card-text {
  color: #ffffff;
  margin-top: 1rem;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-tBJ7zVkKI4 .card-text {
    margin-top: 0.75rem;
  }
}
.cid-tBMKoUZ5za {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #008d1b;
}
.cid-tBMKoUZ5za .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBMKoUZ5za .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tBMKoUZ5za .container {
    padding: 0 30px;
  }
}
.cid-tBMKoUZ5za .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tBMKoUZ5za .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tBMKnZSUk8 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #fef7f2;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-tBMKnZSUk8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBMKnZSUk8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBMKnZSUk8 .section-border-item {
  background-color: #000000;
}
.cid-tBMKnZSUk8 .card-title {
  color: #8d7742;
  text-align: center;
}
.cid-tBMKnZSUk8 .card-subtitle {
  color: #FFF;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-tBMKnZSUk8 .card-subtitle {
    margin-top: 0.75rem;
  }
}
.cid-tBMKnZSUk8 .card-text {
  color: #000000;
  margin-top: 1rem;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-tBMKnZSUk8 .card-text {
    margin-top: 0.75rem;
  }
}
.cid-tBJlG4ITEc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tBJlG4ITEc p {
  margin: 0;
}
.cid-tBJlG4ITEc ul {
  list-style-type: none;
  padding: 0;
}
.cid-tBJlG4ITEc .list {
  display: flex;
  flex-direction: column;
}
.cid-tBJlG4ITEc .list .list-item {
  display: flex;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tBJlG4ITEc .list .list-item {
    flex-direction: column;
  }
}
.cid-tBJlG4ITEc .mbr-number {
  color: #33d5ad;
  margin-right: 2rem;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .cid-tBJlG4ITEc .mbr-number {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}
.cid-tBJlG4ITEc .line {
  width: 3px;
  background-color: #990800;
  margin-right: 3rem;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .cid-tBJlG4ITEc .line {
    width: 100%;
    height: 3px;
    margin-right: 0;
    margin-bottom: 2rem;
  }
}
.cid-tBJlG4ITEc .mbr-section-title {
  color: #990800;
  margin-bottom: 2rem;
}
.cid-tBMJDDOJKs {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #003366;
}
.cid-tBMJDDOJKs .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBMJDDOJKs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tBMJDDOJKs .container {
    padding: 0 30px;
  }
}
.cid-tBMJDDOJKs .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tBMJDDOJKs .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tBMHwBJltL {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/background1-4.jpg");
}
.cid-tBMHwBJltL .mbr-overlay {
  background: #f8f6f2;
  opacity: 0.1;
}
.cid-tBMHwBJltL .row {
  align-items: stretch;
  justify-content: center;
}
.cid-tBMHwBJltL .item {
  padding-bottom: 20px;
  padding-top: 20px;
}
@media (max-width: 991px) {
  .cid-tBMHwBJltL .item {
    padding-bottom: 18px;
    padding-top: 18px;
  }
}
@media (max-width: 767px) {
  .cid-tBMHwBJltL .item {
    padding-bottom: 16px;
    padding-top: 16px;
  }
}
.cid-tBMHwBJltL .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.cid-tBMHwBJltL .item-wrapper:hover .item-img {
  transform: scale(1.1);
}
.cid-tBMHwBJltL .item-img {
  width: 100%;
  opacity: 1;
  filter: brightness(100%);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
}
.cid-tBMHwBJltL .item-content {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  z-index: 5;
  width: 100%;
  height: 100%;
  pointer-events: none;
  padding: 2rem;
}
.cid-tBMHwBJltL .content-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: fit-content;
  margin-top: auto;
  margin-bottom: 0;
  pointer-events: auto;
}
.cid-tBMHwBJltL .item-title {
  color: #FFFFFF;
  text-align: left;
}
.cid-tBMHwBJltL .mbr-text {
  color: #FFFFFF;
  margin-top: 1rem;
}
.cid-tBMHwBJltL .mbr-section-btn {
  margin-top: 20px;
}
.cid-tBMHwBJltL .mbr-section-btn .btn:before {
  display: none;
}
.cid-tBMHwBJltL .mbr-section-btn .btn:after {
  display: none;
}
.cid-tBMHwBJltL .mbr-text,
.cid-tBMHwBJltL .mbr-section-btn {
  text-align: left;
}
.cid-tBJiJkz6rd {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f5a80c;
}
.cid-tBJiJkz6rd .mbr-text {
  color: #FFFFFF;
}
.cid-tBJiJkz6rd .media-container-row .mbr-text {
  color: #000000;
}
.cid-tBJjnfuwzi {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ff1900;
}
.cid-tBJjnfuwzi .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBJjnfuwzi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tBJjnfuwzi .container {
    padding: 0 30px;
  }
}
.cid-tBJjnfuwzi .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tBJjnfuwzi .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tBJjo85biP {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ff1900;
}
.cid-tBJjo85biP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBJjo85biP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tBJjo85biP .container {
    padding: 0 30px;
  }
}
.cid-tBJjo85biP .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tBJjo85biP .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tBJj7dgXzK {
  position: relative;
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tBJj7dgXzK .second-bg-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fdac79;
  border-top-left-radius: 4.1666666667vw;
  border-top-right-radius: 4.1666666667vw;
}
.cid-tBJj7dgXzK .mbr-section-title {
  color: #000000;
  margin-bottom: 1.736vw;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tBJj7dgXzK .mbr-section-title {
    margin-bottom: 6.66vw;
  }
}
.cid-tBJj7dgXzK .mbr-section-subtitle {
  color: #000000;
  margin-bottom: 1.736vw;
}
@media (max-width: 991px) {
  .cid-tBJj7dgXzK .mbr-section-subtitle {
    margin-bottom: 6.66vw;
  }
}
.cid-tBJj7dgXzK .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-tBJiJkz6rd {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f5a80c;
}
.cid-tBJiJkz6rd .mbr-text {
  color: #FFFFFF;
}
.cid-tBJiJkz6rd .media-container-row .mbr-text {
  color: #000000;
}
.cid-tBP0nsdwwh {
  overflow: visible;
}
.cid-tBP0nsdwwh .navbar-dropdown {
  position: relative !important;
}
.cid-tBP0nsdwwh .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-tBP0nsdwwh .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tBP0nsdwwh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tBP0nsdwwh .dropdown-item:hover,
.cid-tBP0nsdwwh .dropdown-item:focus {
  background: #181818 !important;
  color: inherit !important;
}
.cid-tBP0nsdwwh .dropdown-item:hover span {
  color: white;
}
.cid-tBP0nsdwwh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tBP0nsdwwh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tBP0nsdwwh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tBP0nsdwwh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tBP0nsdwwh .nav-link {
  position: relative;
}
.cid-tBP0nsdwwh .container {
  display: flex;
  gap: 1.5rem;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tBP0nsdwwh .container {
    flex-wrap: nowrap;
  }
}
.cid-tBP0nsdwwh .iconfont-wrapper {
  color: #1f1d1a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tBP0nsdwwh .iconfont-wrapper:hover {
  text-decoration-line: none !important;
}
.cid-tBP0nsdwwh .dropdown-menu,
.cid-tBP0nsdwwh .navbar.opened {
  background: #003366 !important;
}
.cid-tBP0nsdwwh .nav-item:focus,
.cid-tBP0nsdwwh .nav-link:focus {
  outline: none;
}
.cid-tBP0nsdwwh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tBP0nsdwwh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tBP0nsdwwh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tBP0nsdwwh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tBP0nsdwwh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tBP0nsdwwh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tBP0nsdwwh .navbar {
  min-height: 112px;
  transition: all 0.3s;
  border-bottom: none !important;
  background: #003366;
  border-radius: 0 !important;
  padding: 16px 0 !important;
}
@media (max-width: 767px) {
  .cid-tBP0nsdwwh .navbar {
    min-height: 77px;
    padding: 8px 0 !important;
  }
}
.cid-tBP0nsdwwh .navbar.opened {
  transition: all 0.3s;
}
.cid-tBP0nsdwwh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tBP0nsdwwh .navbar .navbar-logo img {
  width: auto;
}
.cid-tBP0nsdwwh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tBP0nsdwwh .navbar.collapsed {
  justify-content: center;
}
.cid-tBP0nsdwwh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tBP0nsdwwh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tBP0nsdwwh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tBP0nsdwwh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tBP0nsdwwh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tBP0nsdwwh .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-tBP0nsdwwh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tBP0nsdwwh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tBP0nsdwwh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tBP0nsdwwh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tBP0nsdwwh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tBP0nsdwwh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tBP0nsdwwh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tBP0nsdwwh .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-tBP0nsdwwh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tBP0nsdwwh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tBP0nsdwwh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tBP0nsdwwh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tBP0nsdwwh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tBP0nsdwwh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tBP0nsdwwh .navbar.navbar-short {
  min-height: 112px;
}
@media (max-width: 767px) {
  .cid-tBP0nsdwwh .navbar.navbar-short {
    min-height: 77px;
  }
}
.cid-tBP0nsdwwh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tBP0nsdwwh .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tBP0nsdwwh .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  margin: 0;
}
.cid-tBP0nsdwwh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tBP0nsdwwh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tBP0nsdwwh .dropdown-item.active,
.cid-tBP0nsdwwh .dropdown-item:active {
  background-color: transparent;
}
.cid-tBP0nsdwwh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tBP0nsdwwh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tBP0nsdwwh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tBP0nsdwwh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #003366;
}
.cid-tBP0nsdwwh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tBP0nsdwwh .navbar .navbar-collapse .dropdown .dropdown-menu {
  background: #ffffff !important;
}
.cid-tBP0nsdwwh .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tBP0nsdwwh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tBP0nsdwwh ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tBP0nsdwwh .navbar-buttons {
  text-align: center;
}
.cid-tBP0nsdwwh button.navbar-toggler {
  outline: none;
  width: 26px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin-left: 0.5rem;
  margin-right: 12px;
}
.cid-tBP0nsdwwh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 25px;
  height: 2px;
  border-right: 5px;
  background-color: #75083a;
}
.cid-tBP0nsdwwh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tBP0nsdwwh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tBP0nsdwwh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tBP0nsdwwh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tBP0nsdwwh button.navbar-toggler .hamburger-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #ffffff;
  transition: all 0.2s;
}
.cid-tBP0nsdwwh .navbar-toggler-close {
  position: absolute !important;
  right: 12px;
  top: 10px;
  margin-right: 0 !important;
}
.cid-tBP0nsdwwh .navbar-toggler-close .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tBP0nsdwwh .navbar-toggler-close .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tBP0nsdwwh .navbar-toggler-close .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tBP0nsdwwh .navbar-toggler-close .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tBP0nsdwwh .navbar-toggler-close .hamburger-bg {
  opacity: 0;
  background-color: #374151 !important;
  transition: .3s;
  border-radius: 0 !important;
}
.cid-tBP0nsdwwh .navbar-toggler-close .hamburger-bg:hover {
  opacity: 0.1 !important;
}
.cid-tBP0nsdwwh .navbar-toggler-close:hover .hamburger-bg {
  opacity: 0.1 !important;
}
.cid-tBP0nsdwwh button.navbar-toggler-close {
  margin-right: 0;
}
.cid-tBP0nsdwwh .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tBP0nsdwwh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tBP0nsdwwh .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-tBP0nsdwwh .navbar {
    height: 70px;
  }
  .cid-tBP0nsdwwh .navbar.opened {
    height: auto;
  }
  .cid-tBP0nsdwwh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tBP0nsdwwh .navbar-brand-main {
  max-width: 30%;
}
.cid-tBP0nsdwwh .navbar-nav-main {
  margin: 0;
  flex-grow: 1;
  justify-content: flex-end;
}
.cid-tBP0nsdwwh .navbar-nav-main .nav-item {
  margin: 0 !important;
}
.cid-tBP0nsdwwh .navbar-nav-main .nav-item .nav-link {
  padding: 15px !important;
  margin: 0 !important;
}
.cid-tBP0nsdwwh .navbar-nav-main .nav-item .nav-link:hover {
  text-decoration: underline;
}
.cid-tBP0nsdwwh .mbr-section-btn {
  margin: 0 -0.6rem;
  min-width: auto;
}
.cid-tBP0nsdwwh .navbar-buttons-main {
  margin-left: 6.4rem;
  max-width: 30%;
}
@media (max-width: 991px) {
  .cid-tBP0nsdwwh .navbar-buttons-main {
    max-width: 50%;
  }
}
@media (max-width: 575px) {
  .cid-tBP0nsdwwh .navbar-buttons-main {
    display: none;
  }
}
.cid-tBP0nsdwwh .navbar-toggler-open {
  position: relative;
  z-index: 10 !important;
}
.cid-tBP0nsdwwh .navbar-toggler {
  position: relative;
  z-index: 12;
}
.cid-tBP0nsdwwh .navbar-collapse {
  display: none !important;
  z-index: 11 !important;
}
@media (max-width: 991px) {
  .cid-tBP0nsdwwh .container,
  .cid-tBP0nsdwwh .container-fluid {
    justify-content: flex-end;
  }
  .cid-tBP0nsdwwh .navbar-brand-main {
    max-width: 50%;
    margin-right: auto;
  }
  .cid-tBP0nsdwwh .navbar-nav-main {
    display: none !important;
  }
  .cid-tBP0nsdwwh .sidbar-nav {
    width: 100%;
    align-items: center;
  }
  .cid-tBP0nsdwwh .sidbar-nav .nav-item {
    margin: 0  !important;
    padding: 1rem !important;
    width: 100%;
    border-bottom: 1px solid #bbbbbb;
  }
  .cid-tBP0nsdwwh .sidbar-nav .nav-item .nav-link {
    justify-content: flex-start;
    text-align: left;
    width: 100%;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0;
  }
  .cid-tBP0nsdwwh .sidbar-nav .nav-item .nav-link:hover {
    color: inherit !important;
  }
  .cid-tBP0nsdwwh .icons-menu {
    padding-right: 0 !important;
    padding-top: 20px !important;
    padding-bottom: 0 !important;
  }
  .cid-tBP0nsdwwh .navbar-collapse {
    display: flex !important;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start !important;
    align-items: stretch !important;
    position: fixed;
    background-color: #ffffff;
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    max-height: 100vh !important;
    overflow: auto;
    transition: .3s !important;
  }
  .cid-tBP0nsdwwh .navbar-collapse .mbr-section-btn {
    margin-top: 18px;
    padding: 0 16px;
    width: 100%;
  }
  .cid-tBP0nsdwwh .navbar-collapse .mbr-section-btn .btn {
    width: 100%;
  }
  .cid-tBP0nsdwwh .navbar-collapse .dropdown-item {
    border-bottom: 1px solid #bbbbbb;
  }
  .cid-tBP0nsdwwh .navbar-collapse .dropdown-item:hover,
  .cid-tBP0nsdwwh .navbar-collapse .dropdown-item:focus {
    background: #ffffff !important;
    color: inherit !important;
  }
  .cid-tBP0nsdwwh .navbar-collapse.show {
    padding: 28px 0;
    position: fixed;
    background-color: #ffffff;
    width: 500px;
    height: 100%;
    top: 0;
    right: 0;
    max-height: 100vh !important;
    overflow: auto;
  }
  .cid-tBP0nsdwwh .navbar.collapsed .dropdown-menu .dropdown-item {
    text-align: left;
  }
}
@media (max-width: 575px) {
  .cid-tBP0nsdwwh .navbar-collapse.show {
    width: 100% !important;
  }
}
.cid-tBJjWzhBnw {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ff1900;
}
.cid-tBJjWzhBnw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBJjWzhBnw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tBJjWzhBnw .container {
    padding: 0 30px;
  }
}
.cid-tBJjWzhBnw .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tBJjWzhBnw .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tBJjXiz6WP {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ff1900;
}
.cid-tBJjXiz6WP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBJjXiz6WP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tBJjXiz6WP .container {
    padding: 0 30px;
  }
}
.cid-tBJjXiz6WP .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tBJjXiz6WP .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tBJk25nUM9 {
  position: relative;
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tBJk25nUM9 .second-bg-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fdac79;
  border-top-left-radius: 4.1666666667vw;
  border-top-right-radius: 4.1666666667vw;
}
.cid-tBJk25nUM9 .mbr-section-title {
  color: #000000;
  margin-bottom: 1.736vw;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tBJk25nUM9 .mbr-section-title {
    margin-bottom: 6.66vw;
  }
}
.cid-tBJk25nUM9 .mbr-section-subtitle {
  color: #000000;
  margin-bottom: 1.736vw;
}
@media (max-width: 991px) {
  .cid-tBJk25nUM9 .mbr-section-subtitle {
    margin-bottom: 6.66vw;
  }
}
.cid-tBJk25nUM9 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-tBJiJkz6rd {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f5a80c;
}
.cid-tBJiJkz6rd .mbr-text {
  color: #FFFFFF;
}
.cid-tBJiJkz6rd .media-container-row .mbr-text {
  color: #000000;
}
.cid-tBP0nsdwwh {
  overflow: visible;
}
.cid-tBP0nsdwwh .navbar-dropdown {
  position: relative !important;
}
.cid-tBP0nsdwwh .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-tBP0nsdwwh .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tBP0nsdwwh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tBP0nsdwwh .dropdown-item:hover,
.cid-tBP0nsdwwh .dropdown-item:focus {
  background: #181818 !important;
  color: inherit !important;
}
.cid-tBP0nsdwwh .dropdown-item:hover span {
  color: white;
}
.cid-tBP0nsdwwh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tBP0nsdwwh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tBP0nsdwwh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tBP0nsdwwh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tBP0nsdwwh .nav-link {
  position: relative;
}
.cid-tBP0nsdwwh .container {
  display: flex;
  gap: 1.5rem;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tBP0nsdwwh .container {
    flex-wrap: nowrap;
  }
}
.cid-tBP0nsdwwh .iconfont-wrapper {
  color: #1f1d1a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tBP0nsdwwh .iconfont-wrapper:hover {
  text-decoration-line: none !important;
}
.cid-tBP0nsdwwh .dropdown-menu,
.cid-tBP0nsdwwh .navbar.opened {
  background: #003366 !important;
}
.cid-tBP0nsdwwh .nav-item:focus,
.cid-tBP0nsdwwh .nav-link:focus {
  outline: none;
}
.cid-tBP0nsdwwh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tBP0nsdwwh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tBP0nsdwwh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tBP0nsdwwh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tBP0nsdwwh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tBP0nsdwwh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tBP0nsdwwh .navbar {
  min-height: 112px;
  transition: all 0.3s;
  border-bottom: none !important;
  background: #003366;
  border-radius: 0 !important;
  padding: 16px 0 !important;
}
@media (max-width: 767px) {
  .cid-tBP0nsdwwh .navbar {
    min-height: 77px;
    padding: 8px 0 !important;
  }
}
.cid-tBP0nsdwwh .navbar.opened {
  transition: all 0.3s;
}
.cid-tBP0nsdwwh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tBP0nsdwwh .navbar .navbar-logo img {
  width: auto;
}
.cid-tBP0nsdwwh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tBP0nsdwwh .navbar.collapsed {
  justify-content: center;
}
.cid-tBP0nsdwwh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tBP0nsdwwh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tBP0nsdwwh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tBP0nsdwwh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tBP0nsdwwh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tBP0nsdwwh .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-tBP0nsdwwh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tBP0nsdwwh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tBP0nsdwwh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tBP0nsdwwh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tBP0nsdwwh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tBP0nsdwwh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tBP0nsdwwh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tBP0nsdwwh .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-tBP0nsdwwh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tBP0nsdwwh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tBP0nsdwwh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tBP0nsdwwh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tBP0nsdwwh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tBP0nsdwwh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tBP0nsdwwh .navbar.navbar-short {
  min-height: 112px;
}
@media (max-width: 767px) {
  .cid-tBP0nsdwwh .navbar.navbar-short {
    min-height: 77px;
  }
}
.cid-tBP0nsdwwh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tBP0nsdwwh .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tBP0nsdwwh .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  margin: 0;
}
.cid-tBP0nsdwwh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tBP0nsdwwh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tBP0nsdwwh .dropdown-item.active,
.cid-tBP0nsdwwh .dropdown-item:active {
  background-color: transparent;
}
.cid-tBP0nsdwwh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tBP0nsdwwh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tBP0nsdwwh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tBP0nsdwwh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #003366;
}
.cid-tBP0nsdwwh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tBP0nsdwwh .navbar .navbar-collapse .dropdown .dropdown-menu {
  background: #ffffff !important;
}
.cid-tBP0nsdwwh .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tBP0nsdwwh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tBP0nsdwwh ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tBP0nsdwwh .navbar-buttons {
  text-align: center;
}
.cid-tBP0nsdwwh button.navbar-toggler {
  outline: none;
  width: 26px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin-left: 0.5rem;
  margin-right: 12px;
}
.cid-tBP0nsdwwh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 25px;
  height: 2px;
  border-right: 5px;
  background-color: #75083a;
}
.cid-tBP0nsdwwh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tBP0nsdwwh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tBP0nsdwwh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tBP0nsdwwh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tBP0nsdwwh button.navbar-toggler .hamburger-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #ffffff;
  transition: all 0.2s;
}
.cid-tBP0nsdwwh .navbar-toggler-close {
  position: absolute !important;
  right: 12px;
  top: 10px;
  margin-right: 0 !important;
}
.cid-tBP0nsdwwh .navbar-toggler-close .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tBP0nsdwwh .navbar-toggler-close .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tBP0nsdwwh .navbar-toggler-close .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tBP0nsdwwh .navbar-toggler-close .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tBP0nsdwwh .navbar-toggler-close .hamburger-bg {
  opacity: 0;
  background-color: #374151 !important;
  transition: .3s;
  border-radius: 0 !important;
}
.cid-tBP0nsdwwh .navbar-toggler-close .hamburger-bg:hover {
  opacity: 0.1 !important;
}
.cid-tBP0nsdwwh .navbar-toggler-close:hover .hamburger-bg {
  opacity: 0.1 !important;
}
.cid-tBP0nsdwwh button.navbar-toggler-close {
  margin-right: 0;
}
.cid-tBP0nsdwwh .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tBP0nsdwwh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tBP0nsdwwh .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-tBP0nsdwwh .navbar {
    height: 70px;
  }
  .cid-tBP0nsdwwh .navbar.opened {
    height: auto;
  }
  .cid-tBP0nsdwwh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tBP0nsdwwh .navbar-brand-main {
  max-width: 30%;
}
.cid-tBP0nsdwwh .navbar-nav-main {
  margin: 0;
  flex-grow: 1;
  justify-content: flex-end;
}
.cid-tBP0nsdwwh .navbar-nav-main .nav-item {
  margin: 0 !important;
}
.cid-tBP0nsdwwh .navbar-nav-main .nav-item .nav-link {
  padding: 15px !important;
  margin: 0 !important;
}
.cid-tBP0nsdwwh .navbar-nav-main .nav-item .nav-link:hover {
  text-decoration: underline;
}
.cid-tBP0nsdwwh .mbr-section-btn {
  margin: 0 -0.6rem;
  min-width: auto;
}
.cid-tBP0nsdwwh .navbar-buttons-main {
  margin-left: 6.4rem;
  max-width: 30%;
}
@media (max-width: 991px) {
  .cid-tBP0nsdwwh .navbar-buttons-main {
    max-width: 50%;
  }
}
@media (max-width: 575px) {
  .cid-tBP0nsdwwh .navbar-buttons-main {
    display: none;
  }
}
.cid-tBP0nsdwwh .navbar-toggler-open {
  position: relative;
  z-index: 10 !important;
}
.cid-tBP0nsdwwh .navbar-toggler {
  position: relative;
  z-index: 12;
}
.cid-tBP0nsdwwh .navbar-collapse {
  display: none !important;
  z-index: 11 !important;
}
@media (max-width: 991px) {
  .cid-tBP0nsdwwh .container,
  .cid-tBP0nsdwwh .container-fluid {
    justify-content: flex-end;
  }
  .cid-tBP0nsdwwh .navbar-brand-main {
    max-width: 50%;
    margin-right: auto;
  }
  .cid-tBP0nsdwwh .navbar-nav-main {
    display: none !important;
  }
  .cid-tBP0nsdwwh .sidbar-nav {
    width: 100%;
    align-items: center;
  }
  .cid-tBP0nsdwwh .sidbar-nav .nav-item {
    margin: 0  !important;
    padding: 1rem !important;
    width: 100%;
    border-bottom: 1px solid #bbbbbb;
  }
  .cid-tBP0nsdwwh .sidbar-nav .nav-item .nav-link {
    justify-content: flex-start;
    text-align: left;
    width: 100%;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0;
  }
  .cid-tBP0nsdwwh .sidbar-nav .nav-item .nav-link:hover {
    color: inherit !important;
  }
  .cid-tBP0nsdwwh .icons-menu {
    padding-right: 0 !important;
    padding-top: 20px !important;
    padding-bottom: 0 !important;
  }
  .cid-tBP0nsdwwh .navbar-collapse {
    display: flex !important;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start !important;
    align-items: stretch !important;
    position: fixed;
    background-color: #ffffff;
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    max-height: 100vh !important;
    overflow: auto;
    transition: .3s !important;
  }
  .cid-tBP0nsdwwh .navbar-collapse .mbr-section-btn {
    margin-top: 18px;
    padding: 0 16px;
    width: 100%;
  }
  .cid-tBP0nsdwwh .navbar-collapse .mbr-section-btn .btn {
    width: 100%;
  }
  .cid-tBP0nsdwwh .navbar-collapse .dropdown-item {
    border-bottom: 1px solid #bbbbbb;
  }
  .cid-tBP0nsdwwh .navbar-collapse .dropdown-item:hover,
  .cid-tBP0nsdwwh .navbar-collapse .dropdown-item:focus {
    background: #ffffff !important;
    color: inherit !important;
  }
  .cid-tBP0nsdwwh .navbar-collapse.show {
    padding: 28px 0;
    position: fixed;
    background-color: #ffffff;
    width: 500px;
    height: 100%;
    top: 0;
    right: 0;
    max-height: 100vh !important;
    overflow: auto;
  }
  .cid-tBP0nsdwwh .navbar.collapsed .dropdown-menu .dropdown-item {
    text-align: left;
  }
}
@media (max-width: 575px) {
  .cid-tBP0nsdwwh .navbar-collapse.show {
    width: 100% !important;
  }
}
