body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', 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.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.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.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.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: #ffffff !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary: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-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.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-primary.disabled,
.btn-primary:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !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: #47b5ed !important;
  border-color: #47b5ed !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: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !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: #ff9966 !important;
  border-color: #ff9966 !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: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !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: #ffffff;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !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: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: 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: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: 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: #ffffff !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #cccccc !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: #1283bc !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: #ff5500 !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: #ffffff;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #8c8c8c;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ffffff;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', 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: #ffffff !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', 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: #ffffff;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ffffff;
}
.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: #ffffff;
  border-bottom-color: #ffffff;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #ffffff !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='%23ffffff' %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-uQUGoHoGmD {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uQUGoHoGmD nav.navbar {
  position: fixed;
}
.cid-uQUGoHoGmD .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-uQUGoHoGmD .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uQUGoHoGmD .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uQUGoHoGmD .dropdown-item:hover,
.cid-uQUGoHoGmD .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-uQUGoHoGmD .dropdown-item:hover span {
  color: white;
}
.cid-uQUGoHoGmD .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uQUGoHoGmD .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uQUGoHoGmD .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uQUGoHoGmD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uQUGoHoGmD .nav-link {
  position: relative;
}
.cid-uQUGoHoGmD .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uQUGoHoGmD .container {
    flex-wrap: nowrap;
  }
}
.cid-uQUGoHoGmD .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uQUGoHoGmD .dropdown-menu,
.cid-uQUGoHoGmD .navbar.opened {
  background: #ffffff !important;
}
.cid-uQUGoHoGmD .nav-item:focus,
.cid-uQUGoHoGmD .nav-link:focus {
  outline: none;
}
.cid-uQUGoHoGmD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uQUGoHoGmD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uQUGoHoGmD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uQUGoHoGmD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uQUGoHoGmD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uQUGoHoGmD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uQUGoHoGmD .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: #ffffff;
}
.cid-uQUGoHoGmD .navbar.opened {
  transition: all 0.3s;
}
.cid-uQUGoHoGmD .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uQUGoHoGmD .navbar .navbar-logo img {
  width: auto;
}
.cid-uQUGoHoGmD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uQUGoHoGmD .navbar.collapsed {
  justify-content: center;
}
.cid-uQUGoHoGmD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uQUGoHoGmD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uQUGoHoGmD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uQUGoHoGmD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uQUGoHoGmD .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-uQUGoHoGmD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uQUGoHoGmD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uQUGoHoGmD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uQUGoHoGmD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uQUGoHoGmD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uQUGoHoGmD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uQUGoHoGmD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uQUGoHoGmD .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-uQUGoHoGmD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uQUGoHoGmD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uQUGoHoGmD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uQUGoHoGmD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uQUGoHoGmD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uQUGoHoGmD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uQUGoHoGmD .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uQUGoHoGmD .navbar.navbar-short {
  min-height: 60px;
}
.cid-uQUGoHoGmD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uQUGoHoGmD .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uQUGoHoGmD .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-uQUGoHoGmD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uQUGoHoGmD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uQUGoHoGmD .dropdown-item.active,
.cid-uQUGoHoGmD .dropdown-item:active {
  background-color: transparent;
}
.cid-uQUGoHoGmD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uQUGoHoGmD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uQUGoHoGmD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uQUGoHoGmD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uQUGoHoGmD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uQUGoHoGmD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uQUGoHoGmD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uQUGoHoGmD .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uQUGoHoGmD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uQUGoHoGmD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uQUGoHoGmD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uQUGoHoGmD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uQUGoHoGmD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uQUGoHoGmD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uQUGoHoGmD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uQUGoHoGmD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uQUGoHoGmD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uQUGoHoGmD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uQUGoHoGmD .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uQUGoHoGmD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uQUGoHoGmD .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-uQUGoHoGmD .navbar {
    height: 70px;
  }
  .cid-uQUGoHoGmD .navbar.opened {
    height: auto;
  }
  .cid-uQUGoHoGmD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uQUHceNa0V {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7f5f0;
}
.cid-uQUHceNa0V .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQUHceNa0V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQUHceNa0V .content-wrapper .mbr-section-title {
  margin-bottom: 42px;
}
@media (max-width: 992px) {
  .cid-uQUHceNa0V .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uQUHceNa0V .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .cid-uQUHceNa0V .content-wrapper .text-wrapper .mbr-text {
    width: 60%;
  }
}
@media (max-width: 992px) {
  .cid-uQUHceNa0V .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uQUHceNa0V .content-wrapper .image-wrapper {
  margin-top: 64px;
}
@media (max-width: 992px) {
  .cid-uQUHceNa0V .content-wrapper .image-wrapper {
    margin-top: 32px;
  }
}
.cid-uQUHceNa0V .content-wrapper .image-wrapper img {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uQUHceNa0V .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-uQUHceNa0V .content-wrapper .mbr-desc {
  margin-top: 32px;
  margin-bottom: 0;
}
.cid-uQUHceNa0V .content-wrapper .mbr-section-btn {
  margin-top: 32px;
}
.cid-uQUHceNa0V .mbr-section-title {
  color: #c10b02;
}
.cid-uQUHceNa0V .mbr-text,
.cid-uQUHceNa0V .text-wrapper {
  color: #4b4949;
  text-align: center;
}
.cid-uQUHceNa0V .mbr-desc {
  color: #4b4949;
  text-align: center;
}
.cid-uQUHceNa0V .mbr-section-title,
.cid-uQUHceNa0V .mbr-section-btn {
  text-align: center;
}
.cid-uQURpxQsR2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uQURpxQsR2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQURpxQsR2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQURpxQsR2 .card {
  justify-content: center;
}
.cid-uQURpxQsR2 .image-wrapper {
  padding-right: 80px;
}
@media (max-width: 1440px) {
  .cid-uQURpxQsR2 .image-wrapper {
    padding-right: 60px;
  }
}
@media (max-width: 992px) {
  .cid-uQURpxQsR2 .image-wrapper {
    padding-right: 0;
    margin-bottom: 30px;
  }
}
.cid-uQURpxQsR2 .image-wrapper img {
  width: 100%;
  height: 700px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uQURpxQsR2 .image-wrapper img {
    height: 300px;
  }
}
.cid-uQURpxQsR2 .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uQURpxQsR2 .content-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-uQURpxQsR2 .content-wrapper .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uQURpxQsR2 .content-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 15px;
  }
}
.cid-uQURpxQsR2 .mbr-section-title {
  color: #000000;
}
.cid-uQURpxQsR2 .mbr-text {
  color: #000000;
}
.cid-uQURpxQsR2 .mbr-section-title,
.cid-uQURpxQsR2 .mbr-section-btn,
.cid-uQURpxQsR2 .title-wrapper {
  color: #ff6666;
}
.cid-uQUSdX5bgt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uQUSdX5bgt .mbr-section-subtitle {
  color: #ff6666;
}
.cid-uQUSdX5bgt .reward-table th {
  border: 2px solid #ff6666;
  padding: 15px;
}
.cid-uQUSdX5bgt .reward-table td {
  border: 2px solid #ff6666;
  padding: 15px;
}
.cid-uQUWF5q9JH {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uQUWF5q9JH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQUWF5q9JH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uQUWF5q9JH .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uQUWF5q9JH .row {
  flex-direction: row-reverse;
}
.cid-uQUWF5q9JH img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uQUWF5q9JH .text-wrapper {
    padding: 2rem;
  }
}
.cid-uQUWF5q9JH .mbr-section-title {
  color: #ff6666;
}
.cid-uQUXr6NntE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uQUXr6NntE .mbr-section-subtitle {
  color: #ff6666;
}
.cid-uQV0O7ZSJQ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uQV0O7ZSJQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQV0O7ZSJQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQV0O7ZSJQ .row {
  justify-content: center;
}
.cid-uQV0O7ZSJQ .card {
  justify-content: center;
}
.cid-uQV0O7ZSJQ .mbr-copy {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uQV0O7ZSJQ .nav-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uQV0O7ZSJQ .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uQV0O7ZSJQ .nav-wrapper .list .item-wrap {
  padding: 5px 32px;
  margin-bottom: 0;
  transition: all .3s ease;
  cursor: pointer;
}
.cid-uQV0O7ZSJQ .nav-wrapper .list .item-wrap:hover,
.cid-uQV0O7ZSJQ .nav-wrapper .list .item-wrap:focus {
  color: #cbff5b;
}
.cid-uQV0O7ZSJQ .list,
.cid-uQV0O7ZSJQ .nav-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uQV8YsFT3s {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uQV8YsFT3s nav.navbar {
  position: fixed;
}
.cid-uQV8YsFT3s .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-uQV8YsFT3s .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uQV8YsFT3s .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uQV8YsFT3s .dropdown-item:hover,
.cid-uQV8YsFT3s .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-uQV8YsFT3s .dropdown-item:hover span {
  color: white;
}
.cid-uQV8YsFT3s .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uQV8YsFT3s .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uQV8YsFT3s .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uQV8YsFT3s .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uQV8YsFT3s .nav-link {
  position: relative;
}
.cid-uQV8YsFT3s .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uQV8YsFT3s .container {
    flex-wrap: nowrap;
  }
}
.cid-uQV8YsFT3s .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uQV8YsFT3s .dropdown-menu,
.cid-uQV8YsFT3s .navbar.opened {
  background: #ffffff !important;
}
.cid-uQV8YsFT3s .nav-item:focus,
.cid-uQV8YsFT3s .nav-link:focus {
  outline: none;
}
.cid-uQV8YsFT3s .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uQV8YsFT3s .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uQV8YsFT3s .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uQV8YsFT3s .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uQV8YsFT3s .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uQV8YsFT3s .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uQV8YsFT3s .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: #ffffff;
}
.cid-uQV8YsFT3s .navbar.opened {
  transition: all 0.3s;
}
.cid-uQV8YsFT3s .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uQV8YsFT3s .navbar .navbar-logo img {
  width: auto;
}
.cid-uQV8YsFT3s .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uQV8YsFT3s .navbar.collapsed {
  justify-content: center;
}
.cid-uQV8YsFT3s .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uQV8YsFT3s .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uQV8YsFT3s .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uQV8YsFT3s .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uQV8YsFT3s .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-uQV8YsFT3s .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uQV8YsFT3s .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uQV8YsFT3s .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uQV8YsFT3s .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uQV8YsFT3s .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uQV8YsFT3s .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uQV8YsFT3s .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uQV8YsFT3s .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-uQV8YsFT3s .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uQV8YsFT3s .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uQV8YsFT3s .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uQV8YsFT3s .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uQV8YsFT3s .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uQV8YsFT3s .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uQV8YsFT3s .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uQV8YsFT3s .navbar.navbar-short {
  min-height: 60px;
}
.cid-uQV8YsFT3s .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uQV8YsFT3s .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uQV8YsFT3s .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-uQV8YsFT3s .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uQV8YsFT3s .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uQV8YsFT3s .dropdown-item.active,
.cid-uQV8YsFT3s .dropdown-item:active {
  background-color: transparent;
}
.cid-uQV8YsFT3s .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uQV8YsFT3s .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uQV8YsFT3s .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uQV8YsFT3s .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uQV8YsFT3s .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uQV8YsFT3s .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uQV8YsFT3s ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uQV8YsFT3s .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uQV8YsFT3s button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uQV8YsFT3s button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uQV8YsFT3s button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uQV8YsFT3s button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uQV8YsFT3s button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uQV8YsFT3s button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uQV8YsFT3s nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uQV8YsFT3s nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uQV8YsFT3s nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uQV8YsFT3s nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uQV8YsFT3s .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uQV8YsFT3s a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uQV8YsFT3s .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-uQV8YsFT3s .navbar {
    height: 70px;
  }
  .cid-uQV8YsFT3s .navbar.opened {
    height: auto;
  }
  .cid-uQV8YsFT3s .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uQV8YtJaqr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7f5f0;
}
.cid-uQV8YtJaqr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQV8YtJaqr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQV8YtJaqr .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uQV8YtJaqr .content-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uQV8YtJaqr .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .cid-uQV8YtJaqr .content-wrapper .text-wrapper .mbr-text {
    width: 60%;
  }
}
@media (max-width: 992px) {
  .cid-uQV8YtJaqr .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uQV8YtJaqr .content-wrapper .image-wrapper {
  margin-top: 64px;
}
@media (max-width: 992px) {
  .cid-uQV8YtJaqr .content-wrapper .image-wrapper {
    margin-top: 32px;
  }
}
.cid-uQV8YtJaqr .content-wrapper .image-wrapper img {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uQV8YtJaqr .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-uQV8YtJaqr .content-wrapper .mbr-desc {
  margin-top: 25px;
  margin-bottom: 0;
}
.cid-uQV8YtJaqr .content-wrapper .mbr-section-btn {
  margin-top: 32px;
}
.cid-uQV8YtJaqr .mbr-section-title {
  color: #c10b02;
}
.cid-uQV8YtJaqr .mbr-text,
.cid-uQV8YtJaqr .text-wrapper {
  color: #4b4949;
  text-align: center;
}
.cid-uQV8YtJaqr .mbr-desc {
  color: #4b4949;
  text-align: center;
}
.cid-uQV8YtJaqr .mbr-section-title,
.cid-uQV8YtJaqr .mbr-section-btn {
  text-align: center;
}
.cid-uQV8YtJaqr .track-menu li {
  font-size: 19px;
  color: #4b4949;
  line-height: 28px;
}
.cid-uQVmWKes0j {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uQVmWKes0j .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQVmWKes0j .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQVmWKes0j .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uQVmWKes0j .row {
    flex-direction: column-reverse;
  }
  .cid-uQVmWKes0j .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-uQVmWKes0j .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uQVmWKes0j .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-uQVmWKes0j .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uQVmWKes0j .card-title {
  color: #ff6666;
}
.cid-uQVoaiuLto {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uQVoaiuLto .mbr-section-subtitle {
  color: #ff6666;
}
.cid-uQVric3Z8j {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uQVric3Z8j p {
  color: #767676;
}
.cid-uQVric3Z8j .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-uQVric3Z8j .row-element,
.cid-uQVric3Z8j .image-element {
  padding: 0;
}
.cid-uQVric3Z8j .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uQVric3Z8j .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-uQVric3Z8j .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-uQVric3Z8j .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #ffffff, #ff6666);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-uQVric3Z8j .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-uQVric3Z8j .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uQVric3Z8j .text-content {
    padding: 2rem 1rem;
  }
  .cid-uQVric3Z8j .underline .line {
    height: 2px;
  }
  .cid-uQVric3Z8j .mbr-title,
  .cid-uQVric3Z8j .underline,
  .cid-uQVric3Z8j .mbr-text,
  .cid-uQVric3Z8j .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-uQVric3Z8j .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQVric3Z8j .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQVric3Z8j .mbr-title,
.cid-uQVric3Z8j .underline {
  color: #ff6666;
}
.cid-uQVtAE9pEg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uQVtAE9pEg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQVtAE9pEg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQVtAE9pEg .content-wrapper .mbr-label {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uQVtAE9pEg .content-wrapper .mbr-label {
    margin-bottom: 15px;
  }
}
.cid-uQVtAE9pEg .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 70%;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uQVtAE9pEg .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 30px;
  }
}
.cid-uQVtAE9pEg .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 70%;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uQVtAE9pEg .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 15px;
  }
}
.cid-uQVtAE9pEg .mbr-label {
  color: #000000;
}
.cid-uQVtAE9pEg .mbr-section-title {
  color: #000000;
}
.cid-uQVtAE9pEg .mbr-text {
  color: #000000;
}
.cid-uQVtAE9pEg .mbr-section-title,
.cid-uQVtAE9pEg .mbr-section-btn,
.cid-uQVtAE9pEg .title-wrapper {
  color: #ff6666;
}
.cid-uQVtAE9pEg .final-table th {
  border: 1px solid #000;
  padding: 15px;
}
.cid-uQVtAE9pEg .final-table td {
  border: 1px solid #000;
  padding: 15px;
  font-size: 18px;
}
.cid-uQV8YDA7Xd {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uQV8YDA7Xd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQV8YDA7Xd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQV8YDA7Xd .row {
  justify-content: center;
}
.cid-uQV8YDA7Xd .card {
  justify-content: center;
}
.cid-uQV8YDA7Xd .mbr-copy {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uQV8YDA7Xd .nav-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uQV8YDA7Xd .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uQV8YDA7Xd .nav-wrapper .list .item-wrap {
  padding: 5px 32px;
  margin-bottom: 0;
  transition: all .3s ease;
  cursor: pointer;
}
.cid-uQV8YDA7Xd .nav-wrapper .list .item-wrap:hover,
.cid-uQV8YDA7Xd .nav-wrapper .list .item-wrap:focus {
  color: #cbff5b;
}
.cid-uQV8YDA7Xd .list,
.cid-uQV8YDA7Xd .nav-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uQW8Eg5bay {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uQW8Eg5bay nav.navbar {
  position: fixed;
}
.cid-uQW8Eg5bay .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-uQW8Eg5bay .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uQW8Eg5bay .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uQW8Eg5bay .dropdown-item:hover,
.cid-uQW8Eg5bay .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-uQW8Eg5bay .dropdown-item:hover span {
  color: white;
}
.cid-uQW8Eg5bay .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uQW8Eg5bay .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uQW8Eg5bay .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uQW8Eg5bay .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uQW8Eg5bay .nav-link {
  position: relative;
}
.cid-uQW8Eg5bay .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uQW8Eg5bay .container {
    flex-wrap: nowrap;
  }
}
.cid-uQW8Eg5bay .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uQW8Eg5bay .dropdown-menu,
.cid-uQW8Eg5bay .navbar.opened {
  background: #ffffff !important;
}
.cid-uQW8Eg5bay .nav-item:focus,
.cid-uQW8Eg5bay .nav-link:focus {
  outline: none;
}
.cid-uQW8Eg5bay .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uQW8Eg5bay .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uQW8Eg5bay .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uQW8Eg5bay .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uQW8Eg5bay .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uQW8Eg5bay .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uQW8Eg5bay .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: #ffffff;
}
.cid-uQW8Eg5bay .navbar.opened {
  transition: all 0.3s;
}
.cid-uQW8Eg5bay .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uQW8Eg5bay .navbar .navbar-logo img {
  width: auto;
}
.cid-uQW8Eg5bay .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uQW8Eg5bay .navbar.collapsed {
  justify-content: center;
}
.cid-uQW8Eg5bay .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uQW8Eg5bay .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uQW8Eg5bay .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uQW8Eg5bay .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uQW8Eg5bay .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-uQW8Eg5bay .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uQW8Eg5bay .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uQW8Eg5bay .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uQW8Eg5bay .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uQW8Eg5bay .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uQW8Eg5bay .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uQW8Eg5bay .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uQW8Eg5bay .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-uQW8Eg5bay .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uQW8Eg5bay .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uQW8Eg5bay .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uQW8Eg5bay .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uQW8Eg5bay .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uQW8Eg5bay .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uQW8Eg5bay .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uQW8Eg5bay .navbar.navbar-short {
  min-height: 60px;
}
.cid-uQW8Eg5bay .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uQW8Eg5bay .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uQW8Eg5bay .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-uQW8Eg5bay .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uQW8Eg5bay .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uQW8Eg5bay .dropdown-item.active,
.cid-uQW8Eg5bay .dropdown-item:active {
  background-color: transparent;
}
.cid-uQW8Eg5bay .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uQW8Eg5bay .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uQW8Eg5bay .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uQW8Eg5bay .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uQW8Eg5bay .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uQW8Eg5bay .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uQW8Eg5bay ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uQW8Eg5bay .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uQW8Eg5bay button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uQW8Eg5bay button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uQW8Eg5bay button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uQW8Eg5bay button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uQW8Eg5bay button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uQW8Eg5bay button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uQW8Eg5bay nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uQW8Eg5bay nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uQW8Eg5bay nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uQW8Eg5bay nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uQW8Eg5bay .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uQW8Eg5bay a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uQW8Eg5bay .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-uQW8Eg5bay .navbar {
    height: 70px;
  }
  .cid-uQW8Eg5bay .navbar.opened {
    height: auto;
  }
  .cid-uQW8Eg5bay .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uQW8EgWeNf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7f5f0;
}
.cid-uQW8EgWeNf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQW8EgWeNf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQW8EgWeNf .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uQW8EgWeNf .content-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uQW8EgWeNf .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .cid-uQW8EgWeNf .content-wrapper .text-wrapper .mbr-text {
    width: 60%;
  }
}
@media (max-width: 992px) {
  .cid-uQW8EgWeNf .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uQW8EgWeNf .content-wrapper .image-wrapper {
  margin-top: 64px;
}
@media (max-width: 992px) {
  .cid-uQW8EgWeNf .content-wrapper .image-wrapper {
    margin-top: 32px;
  }
}
.cid-uQW8EgWeNf .content-wrapper .image-wrapper img {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uQW8EgWeNf .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-uQW8EgWeNf .content-wrapper .mbr-desc {
  margin-top: 25px;
  margin-bottom: 0;
}
.cid-uQW8EgWeNf .content-wrapper .mbr-section-btn {
  margin-top: 32px;
}
.cid-uQW8EgWeNf .mbr-section-title {
  color: #c10b02;
}
.cid-uQW8EgWeNf .mbr-text,
.cid-uQW8EgWeNf .text-wrapper {
  color: #4b4949;
  text-align: center;
}
.cid-uQW8EgWeNf .mbr-desc {
  color: #4b4949;
  text-align: center;
}
.cid-uQW8EgWeNf .mbr-section-title,
.cid-uQW8EgWeNf .mbr-section-btn {
  text-align: center;
  color: #ff6666;
}
.cid-uQW8EgWeNf .track-menu li {
  font-size: 19px;
  color: #4b4949;
  line-height: 28px;
}
.cid-uQW8EiqtNP {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uQW8EiqtNP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQW8EiqtNP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQW8EiqtNP .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uQW8EiqtNP .row {
    flex-direction: column-reverse;
  }
  .cid-uQW8EiqtNP .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-uQW8EiqtNP .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uQW8EiqtNP .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-uQW8EiqtNP .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uQW8EiqtNP .card-title {
  color: #ff6666;
}
.cid-uQW8EjkD9j {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uQW8EjkD9j .mbr-section-subtitle {
  color: #ff6666;
}
.cid-uQW8Ek6VaF {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uQW8Ek6VaF p {
  color: #767676;
}
.cid-uQW8Ek6VaF .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-uQW8Ek6VaF .row-element,
.cid-uQW8Ek6VaF .image-element {
  padding: 0;
}
.cid-uQW8Ek6VaF .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uQW8Ek6VaF .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-uQW8Ek6VaF .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-uQW8Ek6VaF .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #ffffff, #ff6666);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-uQW8Ek6VaF .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-uQW8Ek6VaF .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uQW8Ek6VaF .text-content {
    padding: 2rem 1rem;
  }
  .cid-uQW8Ek6VaF .underline .line {
    height: 2px;
  }
  .cid-uQW8Ek6VaF .mbr-title,
  .cid-uQW8Ek6VaF .underline,
  .cid-uQW8Ek6VaF .mbr-text,
  .cid-uQW8Ek6VaF .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-uQW8Ek6VaF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQW8Ek6VaF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQW8Ek6VaF .mbr-title,
.cid-uQW8Ek6VaF .underline {
  color: #ff6666;
}
.cid-uQW8El6CiG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uQW8El6CiG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQW8El6CiG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQW8El6CiG .content-wrapper .mbr-label {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uQW8El6CiG .content-wrapper .mbr-label {
    margin-bottom: 15px;
  }
}
.cid-uQW8El6CiG .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 70%;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uQW8El6CiG .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 30px;
  }
}
.cid-uQW8El6CiG .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 70%;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uQW8El6CiG .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 15px;
  }
}
.cid-uQW8El6CiG .mbr-label {
  color: #000000;
}
.cid-uQW8El6CiG .mbr-section-title {
  color: #000000;
}
.cid-uQW8El6CiG .mbr-text {
  color: #000000;
}
.cid-uQW8El6CiG .mbr-section-title,
.cid-uQW8El6CiG .mbr-section-btn,
.cid-uQW8El6CiG .title-wrapper {
  color: #ff6666;
}
.cid-uQW8El6CiG .final-table th {
  border: 1px solid #000;
  padding: 15px;
  font-size: 20px;
}
.cid-uQW8El6CiG .final-table td {
  border: 1px solid #000;
  padding: 15px;
  font-size: 18px;
}
.cid-uQW8El6CiG .break-table th {
  border: 1px solid #000;
  padding: 15px;
  font-size: 20px;
}
.cid-uQW8El6CiG .break-table td {
  border: 1px solid #000;
  font-size: 17px;
  padding: 15px;
}
.cid-uQW8El6CiG table.break-table {
  margin: 0 auto;
  margin-bottom: 25px;
}
.cid-uQW8El6CiG .step-men li {
  color: #000;
  font-size: 18px;
  line-height: 27px;
}
.cid-uQW8Em7jGr {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uQW8Em7jGr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQW8Em7jGr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQW8Em7jGr .row {
  justify-content: center;
}
.cid-uQW8Em7jGr .card {
  justify-content: center;
}
.cid-uQW8Em7jGr .mbr-copy {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uQW8Em7jGr .nav-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uQW8Em7jGr .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uQW8Em7jGr .nav-wrapper .list .item-wrap {
  padding: 5px 32px;
  margin-bottom: 0;
  transition: all .3s ease;
  cursor: pointer;
}
.cid-uQW8Em7jGr .nav-wrapper .list .item-wrap:hover,
.cid-uQW8Em7jGr .nav-wrapper .list .item-wrap:focus {
  color: #cbff5b;
}
.cid-uQW8Em7jGr .list,
.cid-uQW8Em7jGr .nav-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uQWmO1qP5R {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uQWmO1qP5R nav.navbar {
  position: fixed;
}
.cid-uQWmO1qP5R .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-uQWmO1qP5R .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uQWmO1qP5R .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uQWmO1qP5R .dropdown-item:hover,
.cid-uQWmO1qP5R .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-uQWmO1qP5R .dropdown-item:hover span {
  color: white;
}
.cid-uQWmO1qP5R .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uQWmO1qP5R .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uQWmO1qP5R .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uQWmO1qP5R .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uQWmO1qP5R .nav-link {
  position: relative;
}
.cid-uQWmO1qP5R .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uQWmO1qP5R .container {
    flex-wrap: nowrap;
  }
}
.cid-uQWmO1qP5R .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uQWmO1qP5R .dropdown-menu,
.cid-uQWmO1qP5R .navbar.opened {
  background: #ffffff !important;
}
.cid-uQWmO1qP5R .nav-item:focus,
.cid-uQWmO1qP5R .nav-link:focus {
  outline: none;
}
.cid-uQWmO1qP5R .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uQWmO1qP5R .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uQWmO1qP5R .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uQWmO1qP5R .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uQWmO1qP5R .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uQWmO1qP5R .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uQWmO1qP5R .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: #ffffff;
}
.cid-uQWmO1qP5R .navbar.opened {
  transition: all 0.3s;
}
.cid-uQWmO1qP5R .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uQWmO1qP5R .navbar .navbar-logo img {
  width: auto;
}
.cid-uQWmO1qP5R .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uQWmO1qP5R .navbar.collapsed {
  justify-content: center;
}
.cid-uQWmO1qP5R .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uQWmO1qP5R .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uQWmO1qP5R .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uQWmO1qP5R .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uQWmO1qP5R .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-uQWmO1qP5R .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uQWmO1qP5R .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uQWmO1qP5R .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uQWmO1qP5R .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uQWmO1qP5R .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uQWmO1qP5R .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uQWmO1qP5R .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uQWmO1qP5R .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-uQWmO1qP5R .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uQWmO1qP5R .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uQWmO1qP5R .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uQWmO1qP5R .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uQWmO1qP5R .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uQWmO1qP5R .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uQWmO1qP5R .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uQWmO1qP5R .navbar.navbar-short {
  min-height: 60px;
}
.cid-uQWmO1qP5R .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uQWmO1qP5R .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uQWmO1qP5R .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-uQWmO1qP5R .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uQWmO1qP5R .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uQWmO1qP5R .dropdown-item.active,
.cid-uQWmO1qP5R .dropdown-item:active {
  background-color: transparent;
}
.cid-uQWmO1qP5R .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uQWmO1qP5R .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uQWmO1qP5R .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uQWmO1qP5R .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uQWmO1qP5R .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uQWmO1qP5R .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uQWmO1qP5R ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uQWmO1qP5R .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uQWmO1qP5R button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uQWmO1qP5R button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uQWmO1qP5R button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uQWmO1qP5R button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uQWmO1qP5R button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uQWmO1qP5R button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uQWmO1qP5R nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uQWmO1qP5R nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uQWmO1qP5R nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uQWmO1qP5R nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uQWmO1qP5R .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uQWmO1qP5R a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uQWmO1qP5R .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-uQWmO1qP5R .navbar {
    height: 70px;
  }
  .cid-uQWmO1qP5R .navbar.opened {
    height: auto;
  }
  .cid-uQWmO1qP5R .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uQWmO2ltoK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7f5f0;
}
.cid-uQWmO2ltoK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQWmO2ltoK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQWmO2ltoK .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uQWmO2ltoK .content-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uQWmO2ltoK .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .cid-uQWmO2ltoK .content-wrapper .text-wrapper .mbr-text {
    width: 60%;
  }
}
@media (max-width: 992px) {
  .cid-uQWmO2ltoK .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uQWmO2ltoK .content-wrapper .image-wrapper {
  margin-top: 64px;
}
@media (max-width: 992px) {
  .cid-uQWmO2ltoK .content-wrapper .image-wrapper {
    margin-top: 32px;
  }
}
.cid-uQWmO2ltoK .content-wrapper .image-wrapper img {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uQWmO2ltoK .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-uQWmO2ltoK .content-wrapper .mbr-desc {
  margin-top: 25px;
  margin-bottom: 0;
}
.cid-uQWmO2ltoK .content-wrapper .mbr-section-btn {
  margin-top: 32px;
}
.cid-uQWmO2ltoK .mbr-section-title {
  color: #c10b02;
}
.cid-uQWmO2ltoK .mbr-text,
.cid-uQWmO2ltoK .text-wrapper {
  color: #4b4949;
  text-align: center;
}
.cid-uQWmO2ltoK .mbr-desc {
  color: #4b4949;
  text-align: center;
}
.cid-uQWmO2ltoK .mbr-section-title,
.cid-uQWmO2ltoK .mbr-section-btn {
  text-align: center;
  color: #ff6666;
}
.cid-uQWmO2ltoK .track-menu li {
  font-size: 19px;
  color: #4b4949;
  line-height: 28px;
}
.cid-uQWmO3o3Dl {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uQWmO3o3Dl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQWmO3o3Dl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQWmO3o3Dl .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uQWmO3o3Dl .row {
    flex-direction: column-reverse;
  }
  .cid-uQWmO3o3Dl .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-uQWmO3o3Dl .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uQWmO3o3Dl .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-uQWmO3o3Dl .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uQWmO3o3Dl .card-title {
  color: #ff6666;
}
.cid-uQWmO4bZuc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uQWmO4bZuc .mbr-section-subtitle {
  color: #ff6666;
}
.cid-uQWmO4VxcD {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uQWmO4VxcD p {
  color: #767676;
}
.cid-uQWmO4VxcD .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-uQWmO4VxcD .row-element,
.cid-uQWmO4VxcD .image-element {
  padding: 0;
}
.cid-uQWmO4VxcD .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uQWmO4VxcD .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-uQWmO4VxcD .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-uQWmO4VxcD .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #ffffff, #ff6666);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-uQWmO4VxcD .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-uQWmO4VxcD .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uQWmO4VxcD .text-content {
    padding: 2rem 1rem;
  }
  .cid-uQWmO4VxcD .underline .line {
    height: 2px;
  }
  .cid-uQWmO4VxcD .mbr-title,
  .cid-uQWmO4VxcD .underline,
  .cid-uQWmO4VxcD .mbr-text,
  .cid-uQWmO4VxcD .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-uQWmO4VxcD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQWmO4VxcD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQWmO4VxcD .mbr-title,
.cid-uQWmO4VxcD .underline {
  color: #ff6666;
}
.cid-uQWmO5JI5T {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uQWmO5JI5T .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQWmO5JI5T .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQWmO5JI5T .content-wrapper .mbr-label {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uQWmO5JI5T .content-wrapper .mbr-label {
    margin-bottom: 15px;
  }
}
.cid-uQWmO5JI5T .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 70%;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uQWmO5JI5T .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 30px;
  }
}
.cid-uQWmO5JI5T .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 70%;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uQWmO5JI5T .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 15px;
  }
}
.cid-uQWmO5JI5T .mbr-label {
  color: #000000;
}
.cid-uQWmO5JI5T .mbr-section-title {
  color: #000000;
}
.cid-uQWmO5JI5T .mbr-text {
  color: #000000;
}
.cid-uQWmO5JI5T .mbr-section-title,
.cid-uQWmO5JI5T .mbr-section-btn,
.cid-uQWmO5JI5T .title-wrapper {
  color: #ff6666;
}
.cid-uQWmO5JI5T .final-table th {
  border: 1px solid #000;
  padding: 15px;
  font-size: 20px;
}
.cid-uQWmO5JI5T .final-table td {
  border: 1px solid #000;
  padding: 15px;
  font-size: 18px;
}
.cid-uQWmO5JI5T .break-table th {
  border: 1px solid #000;
  padding: 15px;
  font-size: 20px;
}
.cid-uQWmO5JI5T .break-table td {
  border: 1px solid #000;
  font-size: 17px;
  padding: 15px;
}
.cid-uQWmO5JI5T table.break-table {
  margin: 0 auto;
  margin-bottom: 25px;
}
.cid-uQWmO5JI5T .step-men li {
  color: #000;
  font-size: 18px;
  line-height: 27px;
}
.cid-uQWFio0knB {
  display: flex;
  background-image: url("../../../assets/images/gascard12-1344x768.jpeg");
}
.cid-uQWFio0knB .mbr-overlay {
  background-color: #000000;
  opacity: 0.5;
}
@media (min-width: 768px) {
  .cid-uQWFio0knB {
    align-items: flex-end;
  }
  .cid-uQWFio0knB .row {
    justify-content: center;
  }
  .cid-uQWFio0knB .content-wrap {
    padding: 1rem 3rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uQWFio0knB .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uQWFio0knB {
    -webkit-align-items: center;
    align-items: flex-end;
  }
  .cid-uQWFio0knB .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uQWFio0knB .content-wrap {
    width: 100%;
  }
}
.cid-uQWFio0knB .mbr-section-title,
.cid-uQWFio0knB .mbr-section-subtitle {
  text-align: center;
}
.cid-uQWFio0knB .mbr-text,
.cid-uQWFio0knB .mbr-section-btn {
  text-align: center;
}
.cid-uQWGhaqI6w {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uQWGhaqI6w .mbr-section-subtitle {
  color: #ff6666;
}
.cid-uQWGhaqI6w ul.right-menu {
  margin-left: 40px;
}
.cid-uQWGhaqI6w .right-menu li {
  font-size: 20px;
}
.cid-uQWmO6UA8u {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uQWmO6UA8u .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQWmO6UA8u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQWmO6UA8u .row {
  justify-content: center;
}
.cid-uQWmO6UA8u .card {
  justify-content: center;
}
.cid-uQWmO6UA8u .mbr-copy {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uQWmO6UA8u .nav-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uQWmO6UA8u .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uQWmO6UA8u .nav-wrapper .list .item-wrap {
  padding: 5px 32px;
  margin-bottom: 0;
  transition: all .3s ease;
  cursor: pointer;
}
.cid-uQWmO6UA8u .nav-wrapper .list .item-wrap:hover,
.cid-uQWmO6UA8u .nav-wrapper .list .item-wrap:focus {
  color: #cbff5b;
}
.cid-uQWmO6UA8u .list,
.cid-uQWmO6UA8u .nav-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uQWITklsKh {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uQWITklsKh nav.navbar {
  position: fixed;
}
.cid-uQWITklsKh .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-uQWITklsKh .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uQWITklsKh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uQWITklsKh .dropdown-item:hover,
.cid-uQWITklsKh .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-uQWITklsKh .dropdown-item:hover span {
  color: white;
}
.cid-uQWITklsKh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uQWITklsKh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uQWITklsKh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uQWITklsKh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uQWITklsKh .nav-link {
  position: relative;
}
.cid-uQWITklsKh .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uQWITklsKh .container {
    flex-wrap: nowrap;
  }
}
.cid-uQWITklsKh .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uQWITklsKh .dropdown-menu,
.cid-uQWITklsKh .navbar.opened {
  background: #ffffff !important;
}
.cid-uQWITklsKh .nav-item:focus,
.cid-uQWITklsKh .nav-link:focus {
  outline: none;
}
.cid-uQWITklsKh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uQWITklsKh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uQWITklsKh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uQWITklsKh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uQWITklsKh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uQWITklsKh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uQWITklsKh .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: #ffffff;
}
.cid-uQWITklsKh .navbar.opened {
  transition: all 0.3s;
}
.cid-uQWITklsKh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uQWITklsKh .navbar .navbar-logo img {
  width: auto;
}
.cid-uQWITklsKh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uQWITklsKh .navbar.collapsed {
  justify-content: center;
}
.cid-uQWITklsKh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uQWITklsKh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uQWITklsKh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uQWITklsKh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uQWITklsKh .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-uQWITklsKh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uQWITklsKh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uQWITklsKh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uQWITklsKh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uQWITklsKh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uQWITklsKh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uQWITklsKh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uQWITklsKh .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-uQWITklsKh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uQWITklsKh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uQWITklsKh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uQWITklsKh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uQWITklsKh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uQWITklsKh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uQWITklsKh .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uQWITklsKh .navbar.navbar-short {
  min-height: 60px;
}
.cid-uQWITklsKh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uQWITklsKh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uQWITklsKh .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-uQWITklsKh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uQWITklsKh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uQWITklsKh .dropdown-item.active,
.cid-uQWITklsKh .dropdown-item:active {
  background-color: transparent;
}
.cid-uQWITklsKh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uQWITklsKh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uQWITklsKh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uQWITklsKh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uQWITklsKh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uQWITklsKh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uQWITklsKh ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uQWITklsKh .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uQWITklsKh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uQWITklsKh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uQWITklsKh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uQWITklsKh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uQWITklsKh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uQWITklsKh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uQWITklsKh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uQWITklsKh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uQWITklsKh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uQWITklsKh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uQWITklsKh .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uQWITklsKh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uQWITklsKh .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-uQWITklsKh .navbar {
    height: 70px;
  }
  .cid-uQWITklsKh .navbar.opened {
    height: auto;
  }
  .cid-uQWITklsKh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uQWIToY18g {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f7f5f0;
}
.cid-uQWIToY18g .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQWIToY18g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQWIToY18g .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uQWIToY18g .content-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uQWIToY18g .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .cid-uQWIToY18g .content-wrapper .text-wrapper .mbr-text {
    width: 60%;
  }
}
@media (max-width: 992px) {
  .cid-uQWIToY18g .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uQWIToY18g .content-wrapper .image-wrapper {
  margin-top: 64px;
}
@media (max-width: 992px) {
  .cid-uQWIToY18g .content-wrapper .image-wrapper {
    margin-top: 32px;
  }
}
.cid-uQWIToY18g .content-wrapper .image-wrapper img {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uQWIToY18g .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-uQWIToY18g .content-wrapper .mbr-desc {
  margin-top: 25px;
  margin-bottom: 0;
}
.cid-uQWIToY18g .content-wrapper .mbr-section-btn {
  margin-top: 32px;
}
.cid-uQWIToY18g .mbr-section-title {
  color: #c10b02;
}
.cid-uQWIToY18g .mbr-text,
.cid-uQWIToY18g .text-wrapper {
  color: #4b4949;
  text-align: center;
}
.cid-uQWIToY18g .mbr-desc {
  color: #4b4949;
  text-align: center;
}
.cid-uQWIToY18g .mbr-section-title,
.cid-uQWIToY18g .mbr-section-btn {
  text-align: center;
  color: #ff6666;
}
.cid-uQWIToY18g .track-menu li {
  font-size: 19px;
  color: #4b4949;
  line-height: 28px;
}
.cid-uQWIToY18g .fees-table td {
  border: 2px solid #ff6666;
  padding: 15px;
  font-size: 18px;
}
.cid-uQWIToY18g .fees-table th {
  border: 2px solid #ff6666;
  padding: 15px;
  font-size: 19px;
}
.cid-uQWIToY18g table.fees-table {
  margin: 0 auto;
  margin-top: 11px;
}
.cid-uQWITqgo5I {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uQWITqgo5I .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQWITqgo5I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQWITqgo5I .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uQWITqgo5I .row {
    flex-direction: column-reverse;
  }
  .cid-uQWITqgo5I .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-uQWITqgo5I .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uQWITqgo5I .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-uQWITqgo5I .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uQWITqgo5I .card-title {
  color: #ff6666;
}
.cid-uQWITraCDK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uQWITraCDK .mbr-section-subtitle {
  color: #ff6666;
}
.cid-uQWITsdCNh {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uQWITsdCNh p {
  color: #767676;
}
.cid-uQWITsdCNh .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-uQWITsdCNh .row-element,
.cid-uQWITsdCNh .image-element {
  padding: 0;
}
.cid-uQWITsdCNh .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uQWITsdCNh .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-uQWITsdCNh .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-uQWITsdCNh .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #ffffff, #ff6666);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-uQWITsdCNh .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-uQWITsdCNh .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uQWITsdCNh .text-content {
    padding: 2rem 1rem;
  }
  .cid-uQWITsdCNh .underline .line {
    height: 2px;
  }
  .cid-uQWITsdCNh .mbr-title,
  .cid-uQWITsdCNh .underline,
  .cid-uQWITsdCNh .mbr-text,
  .cid-uQWITsdCNh .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-uQWITsdCNh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQWITsdCNh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQWITsdCNh .mbr-title,
.cid-uQWITsdCNh .underline {
  color: #ff6666;
}
.cid-uQWITtbaOO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uQWITtbaOO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQWITtbaOO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQWITtbaOO .content-wrapper .mbr-label {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uQWITtbaOO .content-wrapper .mbr-label {
    margin-bottom: 15px;
  }
}
.cid-uQWITtbaOO .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 70%;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uQWITtbaOO .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 30px;
  }
}
.cid-uQWITtbaOO .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 70%;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uQWITtbaOO .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 15px;
  }
}
.cid-uQWITtbaOO .mbr-label {
  color: #000000;
}
.cid-uQWITtbaOO .mbr-section-title {
  color: #000000;
}
.cid-uQWITtbaOO .mbr-text {
  color: #000000;
}
.cid-uQWITtbaOO .mbr-section-title,
.cid-uQWITtbaOO .mbr-section-btn,
.cid-uQWITtbaOO .title-wrapper {
  color: #ff6666;
}
.cid-uQWITtbaOO .final-table th {
  border: 1px solid #000;
  padding: 15px;
}
.cid-uQWITtbaOO .final-table td {
  border: 1px solid #000;
  padding: 15px;
  font-size: 18px;
}
.cid-uQWITuEKSQ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uQWITuEKSQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQWITuEKSQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQWITuEKSQ .row {
  justify-content: center;
}
.cid-uQWITuEKSQ .card {
  justify-content: center;
}
.cid-uQWITuEKSQ .mbr-copy {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uQWITuEKSQ .nav-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uQWITuEKSQ .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uQWITuEKSQ .nav-wrapper .list .item-wrap {
  padding: 5px 32px;
  margin-bottom: 0;
  transition: all .3s ease;
  cursor: pointer;
}
.cid-uQWITuEKSQ .nav-wrapper .list .item-wrap:hover,
.cid-uQWITuEKSQ .nav-wrapper .list .item-wrap:focus {
  color: #cbff5b;
}
.cid-uQWITuEKSQ .list,
.cid-uQWITuEKSQ .nav-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uQWITklsKh {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uQWITklsKh nav.navbar {
  position: fixed;
}
.cid-uQWITklsKh .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-uQWITklsKh .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uQWITklsKh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uQWITklsKh .dropdown-item:hover,
.cid-uQWITklsKh .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-uQWITklsKh .dropdown-item:hover span {
  color: white;
}
.cid-uQWITklsKh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uQWITklsKh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uQWITklsKh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uQWITklsKh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uQWITklsKh .nav-link {
  position: relative;
}
.cid-uQWITklsKh .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uQWITklsKh .container {
    flex-wrap: nowrap;
  }
}
.cid-uQWITklsKh .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uQWITklsKh .dropdown-menu,
.cid-uQWITklsKh .navbar.opened {
  background: #ffffff !important;
}
.cid-uQWITklsKh .nav-item:focus,
.cid-uQWITklsKh .nav-link:focus {
  outline: none;
}
.cid-uQWITklsKh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uQWITklsKh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uQWITklsKh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uQWITklsKh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uQWITklsKh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uQWITklsKh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uQWITklsKh .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: #ffffff;
}
.cid-uQWITklsKh .navbar.opened {
  transition: all 0.3s;
}
.cid-uQWITklsKh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uQWITklsKh .navbar .navbar-logo img {
  width: auto;
}
.cid-uQWITklsKh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uQWITklsKh .navbar.collapsed {
  justify-content: center;
}
.cid-uQWITklsKh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uQWITklsKh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uQWITklsKh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uQWITklsKh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uQWITklsKh .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-uQWITklsKh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uQWITklsKh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uQWITklsKh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uQWITklsKh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uQWITklsKh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uQWITklsKh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uQWITklsKh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uQWITklsKh .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-uQWITklsKh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uQWITklsKh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uQWITklsKh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uQWITklsKh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uQWITklsKh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uQWITklsKh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uQWITklsKh .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uQWITklsKh .navbar.navbar-short {
  min-height: 60px;
}
.cid-uQWITklsKh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uQWITklsKh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uQWITklsKh .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-uQWITklsKh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uQWITklsKh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uQWITklsKh .dropdown-item.active,
.cid-uQWITklsKh .dropdown-item:active {
  background-color: transparent;
}
.cid-uQWITklsKh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uQWITklsKh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uQWITklsKh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uQWITklsKh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uQWITklsKh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uQWITklsKh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uQWITklsKh ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uQWITklsKh .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uQWITklsKh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uQWITklsKh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uQWITklsKh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uQWITklsKh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uQWITklsKh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uQWITklsKh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uQWITklsKh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uQWITklsKh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uQWITklsKh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uQWITklsKh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uQWITklsKh .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uQWITklsKh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uQWITklsKh .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-uQWITklsKh .navbar {
    height: 70px;
  }
  .cid-uQWITklsKh .navbar.opened {
    height: auto;
  }
  .cid-uQWITklsKh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uQWUaog6uj {
  background-image: url("../../../assets/images/gascard10-1-1344x768.jpeg");
}
.cid-uQWUaog6uj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQWUaog6uj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQWUaog6uj .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-uQWUaog6uj .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-uQWUaog6uj .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-uQWUaog6uj .mbr-section-title {
  color: #ff6666;
}
.cid-uQWUaog6uj .mbr-text,
.cid-uQWUaog6uj .mbr-section-btn,
.cid-uQWUaog6uj .social-row {
  color: #e43f3f;
}
.cid-uQWU1dwCVp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uQWU1dwCVp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQWU1dwCVp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQWU1dwCVp .mbr-section-title {
  color: #ff6666;
}
.cid-uQWITuEKSQ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uQWITuEKSQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQWITuEKSQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQWITuEKSQ .row {
  justify-content: center;
}
.cid-uQWITuEKSQ .card {
  justify-content: center;
}
.cid-uQWITuEKSQ .mbr-copy {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uQWITuEKSQ .nav-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uQWITuEKSQ .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uQWITuEKSQ .nav-wrapper .list .item-wrap {
  padding: 5px 32px;
  margin-bottom: 0;
  transition: all .3s ease;
  cursor: pointer;
}
.cid-uQWITuEKSQ .nav-wrapper .list .item-wrap:hover,
.cid-uQWITuEKSQ .nav-wrapper .list .item-wrap:focus {
  color: #cbff5b;
}
.cid-uQWITuEKSQ .list,
.cid-uQWITuEKSQ .nav-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uRMd7ey0AB {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uRMd7ey0AB nav.navbar {
  position: fixed;
}
.cid-uRMd7ey0AB .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-uRMd7ey0AB .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uRMd7ey0AB .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uRMd7ey0AB .dropdown-item:hover,
.cid-uRMd7ey0AB .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-uRMd7ey0AB .dropdown-item:hover span {
  color: white;
}
.cid-uRMd7ey0AB .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uRMd7ey0AB .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uRMd7ey0AB .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uRMd7ey0AB .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uRMd7ey0AB .nav-link {
  position: relative;
}
.cid-uRMd7ey0AB .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uRMd7ey0AB .container {
    flex-wrap: nowrap;
  }
}
.cid-uRMd7ey0AB .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uRMd7ey0AB .dropdown-menu,
.cid-uRMd7ey0AB .navbar.opened {
  background: #ffffff !important;
}
.cid-uRMd7ey0AB .nav-item:focus,
.cid-uRMd7ey0AB .nav-link:focus {
  outline: none;
}
.cid-uRMd7ey0AB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uRMd7ey0AB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uRMd7ey0AB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uRMd7ey0AB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uRMd7ey0AB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uRMd7ey0AB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uRMd7ey0AB .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: #ffffff;
}
.cid-uRMd7ey0AB .navbar.opened {
  transition: all 0.3s;
}
.cid-uRMd7ey0AB .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uRMd7ey0AB .navbar .navbar-logo img {
  width: auto;
}
.cid-uRMd7ey0AB .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uRMd7ey0AB .navbar.collapsed {
  justify-content: center;
}
.cid-uRMd7ey0AB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uRMd7ey0AB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uRMd7ey0AB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uRMd7ey0AB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uRMd7ey0AB .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-uRMd7ey0AB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uRMd7ey0AB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uRMd7ey0AB .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uRMd7ey0AB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uRMd7ey0AB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uRMd7ey0AB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uRMd7ey0AB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uRMd7ey0AB .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-uRMd7ey0AB .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uRMd7ey0AB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uRMd7ey0AB .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uRMd7ey0AB .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uRMd7ey0AB .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uRMd7ey0AB .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uRMd7ey0AB .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uRMd7ey0AB .navbar.navbar-short {
  min-height: 60px;
}
.cid-uRMd7ey0AB .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uRMd7ey0AB .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uRMd7ey0AB .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-uRMd7ey0AB .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uRMd7ey0AB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uRMd7ey0AB .dropdown-item.active,
.cid-uRMd7ey0AB .dropdown-item:active {
  background-color: transparent;
}
.cid-uRMd7ey0AB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uRMd7ey0AB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uRMd7ey0AB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uRMd7ey0AB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uRMd7ey0AB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uRMd7ey0AB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uRMd7ey0AB ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uRMd7ey0AB .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uRMd7ey0AB button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uRMd7ey0AB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uRMd7ey0AB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uRMd7ey0AB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uRMd7ey0AB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uRMd7ey0AB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uRMd7ey0AB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uRMd7ey0AB nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uRMd7ey0AB nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uRMd7ey0AB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uRMd7ey0AB .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uRMd7ey0AB a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uRMd7ey0AB .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-uRMd7ey0AB .navbar {
    height: 70px;
  }
  .cid-uRMd7ey0AB .navbar.opened {
    height: auto;
  }
  .cid-uRMd7ey0AB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uRMd7fB2GH {
  background-image: url("../../../assets/images/gascard10-1-1344x768.jpeg");
}
.cid-uRMd7fB2GH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRMd7fB2GH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRMd7fB2GH .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-uRMd7fB2GH .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-uRMd7fB2GH .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-uRMd7fB2GH .mbr-section-title {
  color: #ff6666;
}
.cid-uRMd7fB2GH .mbr-text,
.cid-uRMd7fB2GH .mbr-section-btn,
.cid-uRMd7fB2GH .social-row {
  color: #e43f3f;
}
.cid-uRMd7gIEvX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uRMd7gIEvX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRMd7gIEvX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRMd7gIEvX .mbr-section-title {
  color: #ff6666;
}
.cid-uRMd7hvezq {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uRMd7hvezq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRMd7hvezq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRMd7hvezq .row {
  justify-content: center;
}
.cid-uRMd7hvezq .card {
  justify-content: center;
}
.cid-uRMd7hvezq .mbr-copy {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uRMd7hvezq .nav-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uRMd7hvezq .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uRMd7hvezq .nav-wrapper .list .item-wrap {
  padding: 5px 32px;
  margin-bottom: 0;
  transition: all .3s ease;
  cursor: pointer;
}
.cid-uRMd7hvezq .nav-wrapper .list .item-wrap:hover,
.cid-uRMd7hvezq .nav-wrapper .list .item-wrap:focus {
  color: #cbff5b;
}
.cid-uRMd7hvezq .list,
.cid-uRMd7hvezq .nav-wrapper {
  color: #ffffff;
  text-align: center;
}
