body {
  font-family: Jost;
}
.display-1 {
  font-family: 'PT Sans Narrow', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'PT Sans Narrow', sans-serif;
  font-size: 3.2rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 4rem;
}
.display-4 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'PT Sans Narrow', sans-serif;
  font-size: 2.3rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.875rem;
}
.display-7 {
  font-family: 'Kumbh Sans', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.56rem;
    font-size: calc( 1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.84rem;
    font-size: calc( 1.455rem + (2.3 - 1.455) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.455rem + (2.3 - 1.455) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #f96714 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #158557 !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #eab305 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #f96714 !important;
  border-color: #f96714 !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: #b24305 !important;
  border-color: #b24305 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #b24305 !important;
  border-color: #b24305 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !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: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #158557 !important;
  border-color: #158557 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #093a26 !important;
  border-color: #093a26 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #093a26 !important;
  border-color: #093a26 !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !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: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !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: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #eab305 !important;
  border-color: #eab305 !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: #957203 !important;
  border-color: #957203 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #957203 !important;
  border-color: #957203 !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: #f96714;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #b24305 !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: #f96714 !important;
  border-color: #f96714 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !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: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #158557;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #093a26 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #158557 !important;
  border-color: #158557 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !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: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #eab305;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #957203 !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: #eab305 !important;
  border-color: #eab305 !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: #f96714 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #158557 !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #eab305 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #a33e04 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #072d1d !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #866703 !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: #f96714;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #158557;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #eab305;
}
.mbr-gallery-filter li.active .btn {
  background-color: #f96714;
  border-color: #f96714;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #f96714;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fee8db;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #3ae09c;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #feeebd;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.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: #f96714 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #f96714;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #f96714;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #f96714;
}
.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: #f96714;
  border-bottom-color: #f96714;
}
.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: #f96714 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !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='%23f96714' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-tY3gkki2WC .navbar-dropdown {
  position: relative !important;
}
.cid-tY3gkki2WC .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-tY3gkki2WC .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tY3gkki2WC .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tY3gkki2WC .dropdown-item:hover,
.cid-tY3gkki2WC .dropdown-item:focus {
  background: #f96714 !important;
  color: white !important;
}
.cid-tY3gkki2WC .dropdown-item:hover span {
  color: white;
}
.cid-tY3gkki2WC .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tY3gkki2WC .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tY3gkki2WC .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tY3gkki2WC .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tY3gkki2WC .nav-link {
  position: relative;
}
.cid-tY3gkki2WC .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tY3gkki2WC .container {
    flex-wrap: wrap;
  }
}
.cid-tY3gkki2WC .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tY3gkki2WC .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tY3gkki2WC .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tY3gkki2WC .dropdown-menu,
.cid-tY3gkki2WC .navbar.opened {
  background: #000000 !important;
}
.cid-tY3gkki2WC .nav-item:focus,
.cid-tY3gkki2WC .nav-link:focus {
  outline: none;
}
.cid-tY3gkki2WC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tY3gkki2WC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tY3gkki2WC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tY3gkki2WC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tY3gkki2WC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tY3gkki2WC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tY3gkki2WC .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tY3gkki2WC .navbar.opened {
  transition: all 0.3s;
}
.cid-tY3gkki2WC .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tY3gkki2WC .navbar .navbar-logo img {
  width: auto;
}
.cid-tY3gkki2WC .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tY3gkki2WC .navbar.collapsed {
  justify-content: center;
}
.cid-tY3gkki2WC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tY3gkki2WC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tY3gkki2WC .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-tY3gkki2WC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tY3gkki2WC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tY3gkki2WC .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-tY3gkki2WC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tY3gkki2WC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tY3gkki2WC .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tY3gkki2WC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tY3gkki2WC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tY3gkki2WC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tY3gkki2WC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tY3gkki2WC .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-tY3gkki2WC .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tY3gkki2WC .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tY3gkki2WC .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tY3gkki2WC .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tY3gkki2WC .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tY3gkki2WC .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tY3gkki2WC .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tY3gkki2WC .navbar.navbar-short {
  min-height: 60px;
}
.cid-tY3gkki2WC .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tY3gkki2WC .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tY3gkki2WC .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tY3gkki2WC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tY3gkki2WC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tY3gkki2WC .dropdown-item.active,
.cid-tY3gkki2WC .dropdown-item:active {
  background-color: transparent;
}
.cid-tY3gkki2WC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tY3gkki2WC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tY3gkki2WC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tY3gkki2WC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tY3gkki2WC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tY3gkki2WC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tY3gkki2WC ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tY3gkki2WC .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tY3gkki2WC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tY3gkki2WC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tY3gkki2WC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tY3gkki2WC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tY3gkki2WC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tY3gkki2WC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tY3gkki2WC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tY3gkki2WC nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tY3gkki2WC nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tY3gkki2WC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tY3gkki2WC .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tY3gkki2WC a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tY3gkki2WC .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-tY3gkki2WC .navbar {
    height: 70px;
  }
  .cid-tY3gkki2WC .navbar.opened {
    height: auto;
  }
  .cid-tY3gkki2WC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tY3j8pgw9Y {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/jackpot-capital-homepage-1-1920x1080.webp");
}
.cid-tY3j8pgw9Y .mbr-text,
.cid-tY3j8pgw9Y .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-tY3j8pgw9Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-tY3j8pgw9Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tY3j8pgw9Y .mbr-section-subtitle {
  text-align: center;
}
.cid-tY3j8pgw9Y .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-tY3j8pgw9Y .mbr-section-title DIV {
  text-align: center;
}
#custom-html-3n {
  /* Import fonts */
  /* math */
  /* symbols */
  /* latin-ext */
  /* latin */
  /* math */
  /* symbols */
  /* latin-ext */
  /* latin */
  /* math */
  /* symbols */
  /* latin-ext */
  /* latin */
  /* math */
  /* symbols */
  /* latin-ext */
  /* latin */
  /* cyrillic-ext */
  /* cyrillic */
  /* latin-ext */
  /* latin */
  /* cyrillic-ext */
  /* cyrillic */
  /* latin-ext */
  /* latin */
  /* Main Container - Using ID for stronger specificity */
  /* Container for cards */
  /* Card styles */
  /* Card content wrapper */
  /* ===== NEW RIBBON IMPLEMENTATION ===== */
  /* Typography */
  /* Bonus code container */
  /* Description spacing for second card */
  /* Highlight */
  /* Bonus code text */
  /* Copy message */
  /* Button */
  /* Responsive */
}
@font-face {
  font-family: 'Kumbh Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/kumbhsans/v22/c4mw1n92AsfhuCq6tVsaoIx1LQICk0boNoq0ShMzVo0wPFXC82Y.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
@font-face {
  font-family: 'Kumbh Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/kumbhsans/v22/c4mw1n92AsfhuCq6tVsaoIx1LQICk0boNoq0ShMhVo0wPFXC82Y.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
@font-face {
  font-family: 'Kumbh Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/kumbhsans/v22/c4mw1n92AsfhuCq6tVsaoIx1LQICk0boNoq0ShNBVo0wPFXC82Y.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Kumbh Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/kumbhsans/v22/c4mw1n92AsfhuCq6tVsaoIx1LQICk0boNoq0ShNPVo0wPFXC.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Kumbh Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/kumbhsans/v22/c4mw1n92AsfhuCq6tVsaoIx1LQICk0boNoq0ShMzVo0wPFXC82Y.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
@font-face {
  font-family: 'Kumbh Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/kumbhsans/v22/c4mw1n92AsfhuCq6tVsaoIx1LQICk0boNoq0ShMhVo0wPFXC82Y.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
@font-face {
  font-family: 'Kumbh Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/kumbhsans/v22/c4mw1n92AsfhuCq6tVsaoIx1LQICk0boNoq0ShNBVo0wPFXC82Y.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Kumbh Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/kumbhsans/v22/c4mw1n92AsfhuCq6tVsaoIx1LQICk0boNoq0ShNPVo0wPFXC.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Kumbh Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/kumbhsans/v22/c4mw1n92AsfhuCq6tVsaoIx1LQICk0boNoq0ShMzVo0wPFXC82Y.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
@font-face {
  font-family: 'Kumbh Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/kumbhsans/v22/c4mw1n92AsfhuCq6tVsaoIx1LQICk0boNoq0ShMhVo0wPFXC82Y.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
@font-face {
  font-family: 'Kumbh Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/kumbhsans/v22/c4mw1n92AsfhuCq6tVsaoIx1LQICk0boNoq0ShNBVo0wPFXC82Y.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Kumbh Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/kumbhsans/v22/c4mw1n92AsfhuCq6tVsaoIx1LQICk0boNoq0ShNPVo0wPFXC.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Kumbh Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/kumbhsans/v22/c4mw1n92AsfhuCq6tVsaoIx1LQICk0boNoq0ShMzVo0wPFXC82Y.woff2) format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
@font-face {
  font-family: 'Kumbh Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/kumbhsans/v22/c4mw1n92AsfhuCq6tVsaoIx1LQICk0boNoq0ShMhVo0wPFXC82Y.woff2) format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
@font-face {
  font-family: 'Kumbh Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/kumbhsans/v22/c4mw1n92AsfhuCq6tVsaoIx1LQICk0boNoq0ShNBVo0wPFXC82Y.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Kumbh Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/kumbhsans/v22/c4mw1n92AsfhuCq6tVsaoIx1LQICk0boNoq0ShNPVo0wPFXC.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'PT Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/ptsans/v17/jizaRExUiTo99u79D0-ExcOPIDUg-g.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
@font-face {
  font-family: 'PT Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/ptsans/v17/jizaRExUiTo99u79D0aExcOPIDUg-g.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: 'PT Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/ptsans/v17/jizaRExUiTo99u79D0yExcOPIDUg-g.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'PT Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/ptsans/v17/jizaRExUiTo99u79D0KExcOPIDU.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'PT Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/ptsans/v17/jizfRExUiTo99u79B_mh0OOtLR8a8zILig.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
@font-face {
  font-family: 'PT Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/ptsans/v17/jizfRExUiTo99u79B_mh0OqtLR8a8zILig.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: 'PT Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/ptsans/v17/jizfRExUiTo99u79B_mh0OCtLR8a8zILig.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'PT Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/ptsans/v17/jizfRExUiTo99u79B_mh0O6tLR8a8zI.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
#custom-html-3n #jackpot-capital-bonuses {
  font-family: 'PT Sans', sans-serif;
  box-sizing: border-box;
}
#custom-html-3n #jackpot-capital-bonuses * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
#custom-html-3n #jackpot-capital-bonuses .jc-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
}
#custom-html-3n #jackpot-capital-bonuses .jc-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(15, 67, 183, 0.15);
  flex: 1 1 300px;
  max-width: 380px;
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid #0f43b7;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
}
#custom-html-3n #jackpot-capital-bonuses .jc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(15, 67, 183, 0.25);
}
#custom-html-3n #jackpot-capital-bonuses .jc-content {
  padding: 30px 24px 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
  /* Make content take full height */
}
#custom-html-3n #jackpot-capital-bonuses .jc-ribbon-container {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  overflow: hidden;
  width: 150px;
  height: 150px;
}
#custom-html-3n #jackpot-capital-bonuses .jc-ribbon-text {
  position: absolute;
  top: 35px;
  right: -35px;
  background-color: #f15f27;
  color: white;
  padding: 7px;
  width: 200px;
  text-align: center;
  font-family: 'Kumbh Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  transform: rotate(45deg);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  letter-spacing: 1px;
}
#custom-html-3n #jackpot-capital-bonuses .jc-title {
  color: #0f43b7;
  font-size: 24px;
  font-weight: bold;
  margin: 20px 0 16px;
  text-align: center;
  font-family: 'Kumbh Sans', sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
#custom-html-3n #jackpot-capital-bonuses .jc-subtitle {
  color: #0f43b7;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 16px;
  text-align: center;
  font-family: 'Kumbh Sans', sans-serif;
  letter-spacing: 0.5px;
}
#custom-html-3n #jackpot-capital-bonuses .jc-description {
  color: #333;
  font-size: 18px;
  margin-bottom: 20px;
  text-align: center;
  font-style: italic;
  font-family: 'PT Sans', sans-serif;
  line-height: 1.5;
}
#custom-html-3n #jackpot-capital-bonuses .jc-bonus-code {
  margin: 20px 0;
  background-color: #f0f4ff;
  border: 2px dashed #0f43b7;
  border-radius: 8px;
  padding: 14px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}
#custom-html-3n #jackpot-capital-bonuses .jc-card:nth-child(2) .jc-description {
  margin-bottom: 10px;
  /* Reduced margin to save space */
}
#custom-html-3n #jackpot-capital-bonuses .jc-card:nth-child(2) .jc-bonus-code {
  margin: 10px 0;
  /* Reduced margin to save space */
}
#custom-html-3n #jackpot-capital-bonuses .jc-highlight {
  display: inline-block;
  padding: 6px 12px;
  background-color: #f15f27;
  color: white;
  border-radius: 6px;
  margin: 5px 0;
  font-family: 'Kumbh Sans', sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 5px rgba(241, 95, 39, 0.3);
}
#custom-html-3n #jackpot-capital-bonuses .jc-bonus-code:hover {
  background-color: #e0eaff;
  border-color: #0f43b7;
  transform: scale(1.02);
}
#custom-html-3n #jackpot-capital-bonuses .jc-code-text {
  font-family: 'PT Sans', monospace;
  font-size: 20px;
  font-weight: bold;
  color: #f15f27;
  letter-spacing: 1px;
  display: block;
}
#custom-html-3n #jackpot-capital-bonuses .jc-copy-msg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(15, 67, 183, 0.9);
  color: white;
  padding: 8px 16px;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-family: 'Kumbh Sans', sans-serif;
  font-weight: 500;
  pointer-events: none;
}
#custom-html-3n #jackpot-capital-bonuses .jc-bonus-code:hover .jc-copy-msg {
  opacity: 0.95;
}
#custom-html-3n #jackpot-capital-bonuses .jc-copied {
  opacity: 1 !important;
}
#custom-html-3n #jackpot-capital-bonuses .jc-button {
  display: block !important;
  background: linear-gradient(to right, #0f43b7, #1a56d6);
  color: white !important;
  text-decoration: none !important;
  text-align: center;
  padding: 14px;
  border-radius: 8px;
  margin-top: auto;
  /* Changed to auto to push to bottom */
  font-family: 'Kumbh Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(15, 67, 183, 0.3);
  border: none;
  width: 100%;
  opacity: 1 !important;
  visibility: visible !important;
}
#custom-html-3n #jackpot-capital-bonuses .jc-button:hover {
  background: linear-gradient(to right, #1a56d6, #0f43b7);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(15, 67, 183, 0.4);
}
@media (max-width: 1200px) {
  #custom-html-3n #jackpot-capital-bonuses .jc-card {
    flex: 1 1 300px;
  }
}
@media (max-width: 1000px) {
  #custom-html-3n #jackpot-capital-bonuses .jc-container {
    flex-direction: column;
    align-items: center;
  }
  #custom-html-3n #jackpot-capital-bonuses .jc-card {
    width: 100%;
    max-width: 480px;
    margin-bottom: 30px;
    /* Increased bottom margin */
  }
  #custom-html-3n #jackpot-capital-bonuses .jc-button {
    padding: 16px;
    font-size: 18px;
    display: block !important;
    width: 100% !important;
    margin-top: 30px;
    /* Increased top margin */
  }
}
@media (max-width: 480px) {
  #custom-html-3n {
    /* Adjusted ribbon for mobile */
    /* More space saving for the second and third cards on mobile */
  }
  #custom-html-3n #jackpot-capital-bonuses .jc-content {
    padding: 25px 20px 24px;
    min-height: 380px;
    /* Minimum height to ensure consistent card size */
  }
  #custom-html-3n #jackpot-capital-bonuses .jc-subtitle {
    font-size: 28px;
    margin-bottom: 12px;
  }
  #custom-html-3n #jackpot-capital-bonuses .jc-description {
    font-size: 15px;
    line-height: 1.4;
  }
  #custom-html-3n #jackpot-capital-bonuses .jc-code-text {
    font-size: 16px;
  }
  #custom-html-3n #jackpot-capital-bonuses .jc-ribbon-text {
    font-size: 12px;
    top: 30px;
    right: -40px;
    width: 180px;
  }
  #custom-html-3n #jackpot-capital-bonuses .jc-button {
    margin-top: auto;
    padding: 12px;
    font-size: 15px;
  }
  #custom-html-3n #jackpot-capital-bonuses .jc-card:nth-child(2) .jc-description,
  #custom-html-3n #jackpot-capital-bonuses .jc-card:nth-child(3) .jc-description {
    margin-bottom: 8px;
  }
  #custom-html-3n #jackpot-capital-bonuses .jc-card:nth-child(2) .jc-bonus-code,
  #custom-html-3n #jackpot-capital-bonuses .jc-card:nth-child(3) .jc-bonus-code {
    margin: 8px 0;
    padding: 10px;
  }
  #custom-html-3n #jackpot-capital-bonuses .jc-card:nth-child(2) .jc-highlight,
  #custom-html-3n #jackpot-capital-bonuses .jc-card:nth-child(3) .jc-highlight {
    padding: 4px 8px;
    margin: 3px 0;
  }
}
.cid-tY3o1dvLae {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tY3o1dvLae .mbr-fallback-image.disabled {
  display: none;
}
.cid-tY3o1dvLae .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tY3o1dvLae .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-tY3o1dvLae .card {
    margin-bottom: 2rem!important;
  }
  .cid-tY3o1dvLae .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tY3o1dvLae .link-wrap {
    align-items: center;
  }
}
.cid-tY3o1dvLae .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tY3o1dvLae .card-title,
.cid-tY3o1dvLae .card-box {
  color: #000000;
}
.cid-tY3o1dvLae .mbr-text,
.cid-tY3o1dvLae .link-wrap,
.cid-tY3o1dvLae .mbr-section-btn {
  color: #232323;
}
.cid-tY3pdZnQTl {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tY3pdZnQTl img,
.cid-tY3pdZnQTl .item-img {
  width: 100%;
}
.cid-tY3pdZnQTl .item:focus,
.cid-tY3pdZnQTl span:focus {
  outline: none;
}
.cid-tY3pdZnQTl .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tY3pdZnQTl .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tY3pdZnQTl .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tY3pdZnQTl .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tY3pdZnQTl .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tY3pdZnQTl .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tY3pdZnQTl .mbr-text,
.cid-tY3pdZnQTl .mbr-section-btn {
  text-align: left;
}
.cid-tY3pdZnQTl .item-title {
  text-align: left;
}
.cid-tY3pdZnQTl .item-subtitle {
  text-align: center;
}
.cid-tY3pdZnQTl .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tY3qJNTui4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tY3qJNTui4 img,
.cid-tY3qJNTui4 .item-img {
  width: 100%;
}
.cid-tY3qJNTui4 .item:focus,
.cid-tY3qJNTui4 span:focus {
  outline: none;
}
.cid-tY3qJNTui4 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tY3qJNTui4 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tY3qJNTui4 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tY3qJNTui4 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tY3qJNTui4 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tY3qJNTui4 .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tY3qJNTui4 .mbr-text,
.cid-tY3qJNTui4 .mbr-section-btn {
  text-align: left;
}
.cid-tY3qJNTui4 .item-title {
  text-align: left;
}
.cid-tY3qJNTui4 .item-subtitle {
  text-align: center;
}
.cid-tY3qJNTui4 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uAX5R3jW8i {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uAX5R3jW8i img,
.cid-uAX5R3jW8i .item-img {
  width: 100%;
}
.cid-uAX5R3jW8i .item:focus,
.cid-uAX5R3jW8i span:focus {
  outline: none;
}
.cid-uAX5R3jW8i .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uAX5R3jW8i .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #100549;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uAX5R3jW8i .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAX5R3jW8i .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uAX5R3jW8i .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uAX5R3jW8i .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-uAX5R3jW8i .mbr-text,
.cid-uAX5R3jW8i .mbr-section-btn {
  text-align: left;
}
.cid-uAX5R3jW8i .item-title {
  text-align: left;
}
.cid-uAX5R3jW8i .item-subtitle {
  text-align: center;
}
.cid-uAX5R3jW8i .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tY7xDXMKki {
  padding-top: 45px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tY7xDXMKki .mbr-section-title {
  font-weight: 900;
  letter-spacing: 0.1em;
}
.cid-tY7xDXMKki .mbr-section-subtitle {
  color: #444444;
  letter-spacing: 0.03em;
}
.cid-tY7xDXMKki .form-control {
  padding: 8px 15px 8px 15px;
  border-color: #bbbbbb;
  border-radius: 0px !important;
  background-color: #ffffff;
}
.cid-tY7xDXMKki .container-table {
  margin: 0 auto;
}
.cid-tY7xDXMKki .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-tY7xDXMKki .dataTables_wrapper {
  display: block;
}
.cid-tY7xDXMKki .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-tY7xDXMKki .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-tY7xDXMKki table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #bbbbbb;
  margin-bottom: 0;
}
.cid-tY7xDXMKki table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-tY7xDXMKki table th:hover {
  background: #bbbbbb;
  color: #000000;
}
.cid-tY7xDXMKki table td {
  border-top: 1px solid #bbbbbb;
}
.cid-tY7xDXMKki table.table {
  background: #ffffff;
}
.cid-tY7xDXMKki .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-tY7xDXMKki .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-tY7xDXMKki .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-tY7xDXMKki .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
}
@media (max-width: 992px) {
  .cid-tY7xDXMKki .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-tY7xDXMKki .dataTables_filter {
    text-align: center;
  }
  .cid-tY7xDXMKki .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-tY7xDXMKki .mbr-fallback-image.disabled {
  display: none;
}
.cid-tY7xDXMKki .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tY3ydCoRKf {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tY3ydCoRKf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tY3ydCoRKf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tY3ydCoRKf .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-tY3ydCoRKf .icon-box {
  background: #100549;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tY3ydCoRKf .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tY3ydCoRKf .card {
    margin-bottom: 2rem;
  }
  .cid-tY3ydCoRKf .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tY3ydCoRKf .icon-title {
  color: #111111;
}
.cid-tY3w2NBsJm {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-tY3w2NBsJm .mbr-section-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-tY3w2NBsJm .mbr-text {
  color: #ffffff;
}
.cid-tY3CLesjL1 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tY3CLesjL1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tY3CLesjL1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tY3CLesjL1 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tY3CLesjL1 .row {
    flex-direction: column-reverse;
  }
  .cid-tY3CLesjL1 .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-tY3CLesjL1 .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tY3CLesjL1 .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-tY3CLesjL1 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tY3BZlnLHd {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tY3BZlnLHd .mbr-section-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-tY3BZlnLHd .mbr-text {
  color: #ffffff;
}
.cid-tY3C0szo9r {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-tY3C0szo9r .mbr-section-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-tY3C0szo9r .mbr-text {
  color: #ffffff;
}
.cid-tY3FcAxx1S {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tY3FcAxx1S .mbr-fallback-image.disabled {
  display: none;
}
.cid-tY3FcAxx1S .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tY3FcAxx1S .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tY3FcAxx1S .row {
    flex-direction: column-reverse;
  }
  .cid-tY3FcAxx1S .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-tY3FcAxx1S .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tY3FcAxx1S .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-tY3FcAxx1S .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tY3DzFbXWs {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tY3DzFbXWs .mbr-section-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-tY3DzFbXWs .mbr-text {
  color: #ffffff;
}
.cid-tY3sBKOglz {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-tY3sBKOglz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tY3sBKOglz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tY3sBKOglz .item {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.cid-tY3sBKOglz .item .icon-wrap {
  text-align: center;
}
.cid-tY3sBKOglz .item span {
  font-size: 2rem;
  color: #ffffff;
  line-height: 60px;
}
.cid-tY3sBKOglz .item::before {
  content: "\e96b";
  font-family: Moririse2 !important;
  position: absolute;
  font-size: 32px;
  left: -15px;
  top: 12%;
  color: #0f2a4b;
}
.cid-tY3sBKOglz .item.first:before {
  display: none;
}
.cid-tY3sBKOglz .item.five:before {
  display: none;
}
.cid-tY3sBKOglz .icon-box {
  background: #0f2a4b;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
}
.cid-tY3sBKOglz .text-box {
  margin-top: 1rem;
  text-align: center;
}
.cid-tY3sBKOglz .mbr-iconfont {
  color: #f96714 !important;
  position: absolute;
  top: 50%;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-tY3sBKOglz .item:before {
    display: none;
  }
  .cid-tY3sBKOglz .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tY7vnVBoBp {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tY7vnVBoBp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tY7vnVBoBp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tY7vnVBoBp .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tY7vnVBoBp .image-wrap img {
    display: block;
    margin: auto;
    width: 40%;
  }
}
.cid-tY7vnVBoBp .mbr-section-title {
  color: #ffffff;
}
.cid-tY7vnVBoBp .mbr-text,
.cid-tY7vnVBoBp .mbr-section-btn {
  color: #ffffff;
}
.cid-tY7AojXK1V {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tY7ABuI11H {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tY7ABuI11H .mbr-fallback-image.disabled {
  display: none;
}
.cid-tY7ABuI11H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tY7ABuI11H .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tY7ABuI11H .image-wrap img {
    display: block;
    margin: auto;
    width: 40%;
  }
}
.cid-uEo4mb4y09 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uEo4mb4y09 .mbr-section-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-uEo4mb4y09 .mbr-text {
  color: #ffffff;
}
.cid-uEo4nkvM8M {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uEo4nkvM8M .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEo4nkvM8M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uEo4nkvM8M .mbr-section-title {
  color: #ffffff;
}
.cid-tY7BF8p2Ri {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tY7BF8p2Ri .mbr-fallback-image.disabled {
  display: none;
}
.cid-tY7BF8p2Ri .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tY7BF8p2Ri .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #f96714;
  margin-left: 1rem;
}
.cid-tY7BF8p2Ri .panel-group {
  border: none;
}
.cid-tY7BF8p2Ri .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tY7BF8p2Ri .panel-body,
.cid-tY7BF8p2Ri .card-header {
  padding: 1rem 0;
}
.cid-tY7BF8p2Ri .panel-title-edit {
  color: #000000;
}
.cid-tY7BF8p2Ri .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tY7BF8p2Ri H3 {
  color: #000000;
}
.cid-tY7BF8p2Ri .panel-text {
  color: #000000;
}
.cid-uAXQ5PVcQP {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-uAXQ5PVcQP .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uAXQ5PVcQP .mbr-text {
  color: #767676;
}
.cid-uAXQ5PVcQP .links {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uAXQ5PVcQP .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-uAXQ5PVcQP .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uAXQ5PVcQP .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-uAXQ5PVcQP .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uAXQ5PVcQP .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uAXQ5PVcQP .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uAXQ5PVcQP .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uAXQ5PVcQP .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uAXQ5PVcQP .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uAXQ5PVcQP .copyright > p {
  color: #fafafa;
}
.cid-tY3gkki2WC .navbar-dropdown {
  position: relative !important;
}
.cid-tY3gkki2WC .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-tY3gkki2WC .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tY3gkki2WC .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tY3gkki2WC .dropdown-item:hover,
.cid-tY3gkki2WC .dropdown-item:focus {
  background: #f96714 !important;
  color: white !important;
}
.cid-tY3gkki2WC .dropdown-item:hover span {
  color: white;
}
.cid-tY3gkki2WC .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tY3gkki2WC .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tY3gkki2WC .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tY3gkki2WC .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tY3gkki2WC .nav-link {
  position: relative;
}
.cid-tY3gkki2WC .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tY3gkki2WC .container {
    flex-wrap: wrap;
  }
}
.cid-tY3gkki2WC .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tY3gkki2WC .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tY3gkki2WC .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tY3gkki2WC .dropdown-menu,
.cid-tY3gkki2WC .navbar.opened {
  background: #000000 !important;
}
.cid-tY3gkki2WC .nav-item:focus,
.cid-tY3gkki2WC .nav-link:focus {
  outline: none;
}
.cid-tY3gkki2WC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tY3gkki2WC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tY3gkki2WC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tY3gkki2WC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tY3gkki2WC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tY3gkki2WC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tY3gkki2WC .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tY3gkki2WC .navbar.opened {
  transition: all 0.3s;
}
.cid-tY3gkki2WC .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tY3gkki2WC .navbar .navbar-logo img {
  width: auto;
}
.cid-tY3gkki2WC .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tY3gkki2WC .navbar.collapsed {
  justify-content: center;
}
.cid-tY3gkki2WC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tY3gkki2WC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tY3gkki2WC .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-tY3gkki2WC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tY3gkki2WC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tY3gkki2WC .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-tY3gkki2WC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tY3gkki2WC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tY3gkki2WC .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tY3gkki2WC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tY3gkki2WC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tY3gkki2WC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tY3gkki2WC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tY3gkki2WC .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-tY3gkki2WC .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tY3gkki2WC .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tY3gkki2WC .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tY3gkki2WC .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tY3gkki2WC .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tY3gkki2WC .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tY3gkki2WC .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tY3gkki2WC .navbar.navbar-short {
  min-height: 60px;
}
.cid-tY3gkki2WC .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tY3gkki2WC .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tY3gkki2WC .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tY3gkki2WC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tY3gkki2WC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tY3gkki2WC .dropdown-item.active,
.cid-tY3gkki2WC .dropdown-item:active {
  background-color: transparent;
}
.cid-tY3gkki2WC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tY3gkki2WC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tY3gkki2WC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tY3gkki2WC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tY3gkki2WC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tY3gkki2WC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tY3gkki2WC ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tY3gkki2WC .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tY3gkki2WC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tY3gkki2WC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tY3gkki2WC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tY3gkki2WC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tY3gkki2WC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tY3gkki2WC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tY3gkki2WC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tY3gkki2WC nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tY3gkki2WC nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tY3gkki2WC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tY3gkki2WC .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tY3gkki2WC a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tY3gkki2WC .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-tY3gkki2WC .navbar {
    height: 70px;
  }
  .cid-tY3gkki2WC .navbar.opened {
    height: auto;
  }
  .cid-tY3gkki2WC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tYAKigDfzL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uAXQ5PVcQP {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-uAXQ5PVcQP .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uAXQ5PVcQP .mbr-text {
  color: #767676;
}
.cid-uAXQ5PVcQP .links {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uAXQ5PVcQP .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-uAXQ5PVcQP .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uAXQ5PVcQP .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-uAXQ5PVcQP .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uAXQ5PVcQP .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uAXQ5PVcQP .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uAXQ5PVcQP .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uAXQ5PVcQP .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uAXQ5PVcQP .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uAXQ5PVcQP .copyright > p {
  color: #fafafa;
}
.cid-tY3gkki2WC .navbar-dropdown {
  position: relative !important;
}
.cid-tY3gkki2WC .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-tY3gkki2WC .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tY3gkki2WC .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tY3gkki2WC .dropdown-item:hover,
.cid-tY3gkki2WC .dropdown-item:focus {
  background: #f96714 !important;
  color: white !important;
}
.cid-tY3gkki2WC .dropdown-item:hover span {
  color: white;
}
.cid-tY3gkki2WC .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tY3gkki2WC .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tY3gkki2WC .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tY3gkki2WC .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tY3gkki2WC .nav-link {
  position: relative;
}
.cid-tY3gkki2WC .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tY3gkki2WC .container {
    flex-wrap: wrap;
  }
}
.cid-tY3gkki2WC .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tY3gkki2WC .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tY3gkki2WC .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tY3gkki2WC .dropdown-menu,
.cid-tY3gkki2WC .navbar.opened {
  background: #000000 !important;
}
.cid-tY3gkki2WC .nav-item:focus,
.cid-tY3gkki2WC .nav-link:focus {
  outline: none;
}
.cid-tY3gkki2WC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tY3gkki2WC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tY3gkki2WC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tY3gkki2WC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tY3gkki2WC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tY3gkki2WC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tY3gkki2WC .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tY3gkki2WC .navbar.opened {
  transition: all 0.3s;
}
.cid-tY3gkki2WC .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tY3gkki2WC .navbar .navbar-logo img {
  width: auto;
}
.cid-tY3gkki2WC .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tY3gkki2WC .navbar.collapsed {
  justify-content: center;
}
.cid-tY3gkki2WC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tY3gkki2WC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tY3gkki2WC .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-tY3gkki2WC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tY3gkki2WC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tY3gkki2WC .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-tY3gkki2WC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tY3gkki2WC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tY3gkki2WC .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tY3gkki2WC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tY3gkki2WC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tY3gkki2WC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tY3gkki2WC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tY3gkki2WC .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-tY3gkki2WC .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tY3gkki2WC .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tY3gkki2WC .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tY3gkki2WC .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tY3gkki2WC .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tY3gkki2WC .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tY3gkki2WC .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tY3gkki2WC .navbar.navbar-short {
  min-height: 60px;
}
.cid-tY3gkki2WC .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tY3gkki2WC .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tY3gkki2WC .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tY3gkki2WC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tY3gkki2WC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tY3gkki2WC .dropdown-item.active,
.cid-tY3gkki2WC .dropdown-item:active {
  background-color: transparent;
}
.cid-tY3gkki2WC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tY3gkki2WC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tY3gkki2WC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tY3gkki2WC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tY3gkki2WC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tY3gkki2WC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tY3gkki2WC ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tY3gkki2WC .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tY3gkki2WC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tY3gkki2WC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tY3gkki2WC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tY3gkki2WC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tY3gkki2WC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tY3gkki2WC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tY3gkki2WC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tY3gkki2WC nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tY3gkki2WC nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tY3gkki2WC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tY3gkki2WC .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tY3gkki2WC a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tY3gkki2WC .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-tY3gkki2WC .navbar {
    height: 70px;
  }
  .cid-tY3gkki2WC .navbar.opened {
    height: auto;
  }
  .cid-tY3gkki2WC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tYAKbRGxP1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uAXQ5PVcQP {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-uAXQ5PVcQP .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uAXQ5PVcQP .mbr-text {
  color: #767676;
}
.cid-uAXQ5PVcQP .links {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uAXQ5PVcQP .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-uAXQ5PVcQP .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uAXQ5PVcQP .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-uAXQ5PVcQP .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uAXQ5PVcQP .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uAXQ5PVcQP .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uAXQ5PVcQP .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uAXQ5PVcQP .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uAXQ5PVcQP .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uAXQ5PVcQP .copyright > p {
  color: #fafafa;
}
