.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 3.8rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 4.75rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.625rem;
}
.display-5 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.8rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.25rem;
}
.display-7 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.625rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 3.04rem;
    font-size: calc( 1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((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: #2299aa !important;
}
.bg-info {
  background-color: #4479d9 !important;
}
.bg-warning {
  background-color: #f3cd31 !important;
}
.bg-danger {
  background-color: #38ac0e !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: #e43f3f !important;
  border-color: #e43f3f !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: #b31919 !important;
  border-color: #b31919 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #b31919 !important;
  border-color: #b31919 !important;
}
.btn-info,
.btn-info:active {
  background-color: #4479d9 !important;
  border-color: #4479d9 !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: #2150a5 !important;
  border-color: #2150a5 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #2150a5 !important;
  border-color: #2150a5 !important;
}
.btn-success,
.btn-success:active {
  background-color: #2299aa !important;
  border-color: #2299aa !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: #145862 !important;
  border-color: #145862 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #145862 !important;
  border-color: #145862 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #f3cd31 !important;
  border-color: #f3cd31 !important;
  color: #231d02 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #c29e0b !important;
  border-color: #c29e0b !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #231d02 !important;
  background-color: #c29e0b !important;
  border-color: #c29e0b !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #38ac0e !important;
  border-color: #38ac0e !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: #1e5c07 !important;
  border-color: #1e5c07 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #1e5c07 !important;
  border-color: #1e5c07 !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: #ffffff;
  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: #d4d4d4 !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: #e43f3f;
  color: #e43f3f;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #b31919 !important;
  background-color: transparent!important;
  border-color: #b31919 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #e43f3f !important;
  border-color: #e43f3f !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #4479d9;
  color: #4479d9;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #2150a5 !important;
  background-color: transparent!important;
  border-color: #2150a5 !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #4479d9 !important;
  border-color: #4479d9 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #2299aa;
  color: #2299aa;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #145862 !important;
  background-color: transparent!important;
  border-color: #145862 !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #2299aa !important;
  border-color: #2299aa !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #f3cd31;
  color: #f3cd31;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #c29e0b !important;
  background-color: transparent!important;
  border-color: #c29e0b !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #231d02 !important;
  background-color: #f3cd31 !important;
  border-color: #f3cd31 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #38ac0e;
  color: #38ac0e;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #1e5c07 !important;
  background-color: transparent!important;
  border-color: #1e5c07 !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #38ac0e !important;
  border-color: #38ac0e !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #ffffff !important;
}
.text-secondary {
  color: #e43f3f !important;
}
.text-success {
  color: #2299aa !important;
}
.text-info {
  color: #4479d9 !important;
}
.text-warning {
  color: #f3cd31 !important;
}
.text-danger {
  color: #38ac0e !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: #a61717 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #114c55 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1f4a98 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #b4920a !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #194e06 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  transition: 0.2s;
  position: relative;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0 1.2em;
}
.nav-tabs .nav-link.active {
  color: #ffffff;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #4479d9;
}
.alert-warning {
  background-color: #f3cd31;
}
.alert-danger {
  background-color: #38ac0e;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #8c8c8c;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
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: #6ad2e1;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #eef2fb;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #fefcf2;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #76f049;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.625rem;
}
.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: 'Poppins', sans-serif;
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.625rem;
}
blockquote {
  border-color: #ffffff;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #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: #ffffff !important;
  background: #e43f3f !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;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-tGAaBRqjNV .navbar-dropdown {
  position: relative !important;
}
.cid-tGAaBRqjNV .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-tGAaBRqjNV .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tGAaBRqjNV .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tGAaBRqjNV .dropdown-item:hover,
.cid-tGAaBRqjNV .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-tGAaBRqjNV .dropdown-item:hover span {
  color: white;
}
.cid-tGAaBRqjNV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tGAaBRqjNV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tGAaBRqjNV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tGAaBRqjNV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tGAaBRqjNV .nav-link {
  position: relative;
}
.cid-tGAaBRqjNV .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tGAaBRqjNV .container {
    flex-wrap: wrap;
  }
}
.cid-tGAaBRqjNV .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tGAaBRqjNV .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tGAaBRqjNV .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tGAaBRqjNV .dropdown-menu,
.cid-tGAaBRqjNV .navbar.opened {
  background:#303F81!important;
}
.cid-tGAaBRqjNV .nav-item:focus,
.cid-tGAaBRqjNV .nav-link:focus {
  outline: none;
}
.cid-tGAaBRqjNV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tGAaBRqjNV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tGAaBRqjNV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tGAaBRqjNV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tGAaBRqjNV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tGAaBRqjNV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tGAaBRqjNV .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: #e53f3e;
}
.cid-tGAaBRqjNV .navbar.opened {
  transition: all 0.3s;
}
.cid-tGAaBRqjNV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tGAaBRqjNV .navbar .navbar-logo img {
  width: auto;
}
.cid-tGAaBRqjNV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tGAaBRqjNV .navbar.collapsed {
  justify-content: center;
}
.cid-tGAaBRqjNV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tGAaBRqjNV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tGAaBRqjNV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tGAaBRqjNV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tGAaBRqjNV .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-tGAaBRqjNV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tGAaBRqjNV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tGAaBRqjNV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tGAaBRqjNV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tGAaBRqjNV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tGAaBRqjNV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tGAaBRqjNV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tGAaBRqjNV .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-tGAaBRqjNV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tGAaBRqjNV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tGAaBRqjNV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tGAaBRqjNV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tGAaBRqjNV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tGAaBRqjNV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tGAaBRqjNV .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tGAaBRqjNV .navbar.navbar-short {
  min-height: 60px;
}
.cid-tGAaBRqjNV .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tGAaBRqjNV .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tGAaBRqjNV .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-tGAaBRqjNV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tGAaBRqjNV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tGAaBRqjNV .dropdown-item.active,
.cid-tGAaBRqjNV .dropdown-item:active {
  background-color: transparent;
}
.cid-tGAaBRqjNV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tGAaBRqjNV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tGAaBRqjNV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tGAaBRqjNV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e53f3e;
}
.cid-tGAaBRqjNV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tGAaBRqjNV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tGAaBRqjNV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tGAaBRqjNV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tGAaBRqjNV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tGAaBRqjNV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tGAaBRqjNV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tGAaBRqjNV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGAaBRqjNV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGAaBRqjNV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tGAaBRqjNV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGAaBRqjNV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tGAaBRqjNV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tGAaBRqjNV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGAaBRqjNV .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tGAaBRqjNV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tGAaBRqjNV .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-tGAaBRqjNV .navbar {
    height: 70px;
  }
  .cid-tGAaBRqjNV .navbar.opened {
    height: auto;
  }
  .cid-tGAaBRqjNV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uPOcf43wWe {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uPOcf43wWe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPOcf43wWe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPOcf43wWe .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-uPOcf43wWe .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uPOcf43wWe .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uPOcf43wWe .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uPOcf43wWe .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-uPOcf43wWe .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-uPOcf43wWe .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uPOcf43wWe .card-title {
  text-align: left;
  color: #232323;
}
.cid-uPOcf43wWe .mbr-text,
.cid-uPOcf43wWe .mbr-section-btn {
  color: #232323;
  text-align: left;
}
.cid-uPOcf43wWe H2 {
  color: #e6c63b;
}
.cid-uPOcf43wWe P {
  text-align: center;
  color: #ffe161;
}
.cid-u6wtOOGj8a {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #e53f3e;
}
.cid-u6wtOOGj8a .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6wtOOGj8a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u6wtOOGj8a .mbr-section-title {
  color: #ffffff;
}
.cid-uvxrREGG1V {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uvxrREGG1V .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvxrREGG1V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvxrREGG1V .item {
  padding-bottom: 2rem;
}
.cid-uvxrREGG1V .item-wrapper {
  position: relative;
}
.cid-uvxrREGG1V .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uvxrREGG1V .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uvxrREGG1V .carousel-control,
.cid-uvxrREGG1V .close {
  background: #1b1b1b;
}
.cid-uvxrREGG1V .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uvxrREGG1V .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uvxrREGG1V .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uvxrREGG1V .carousel-control-next span {
  margin-left: 5px;
}
.cid-uvxrREGG1V .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uvxrREGG1V .close::before {
  content: '\e91a';
}
.cid-uvxrREGG1V .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uvxrREGG1V .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uvxrREGG1V .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uvxrREGG1V .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uvxrREGG1V .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uvxrREGG1V .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uvxrREGG1V .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uvxrREGG1V .carousel-indicators li.active,
.cid-uvxrREGG1V .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uvxrREGG1V .carousel-indicators li::after,
.cid-uvxrREGG1V .carousel-indicators li::before {
  content: none;
}
.cid-uvxrREGG1V .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uvxrREGG1V .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uvxrREGG1V .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uvxrREGG1V .carousel-indicators {
    display: none;
  }
}
.cid-uvxrREGG1V .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uvxrREGG1V .carousel-inner > .active {
  display: block;
}
.cid-uvxrREGG1V .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uvxrREGG1V .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uvxrREGG1V .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uvxrREGG1V .carousel-control,
  .cid-uvxrREGG1V .carousel-indicators,
  .cid-uvxrREGG1V .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uvxrREGG1V .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uvxrREGG1V .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uvxrREGG1V .carousel-indicators .active,
.cid-uvxrREGG1V .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uvxrREGG1V .carousel-indicators .active {
  background: #fff;
}
.cid-uvxrREGG1V .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uvxrREGG1V .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uvxrREGG1V .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uvxrREGG1V .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uvxrREGG1V .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uvxrREGG1V .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uvxrREGG1V .carousel {
  width: 100%;
}
.cid-uvxrREGG1V .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uvxrREGG1V .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uvxrREGG1V .modal.fade .modal-dialog,
.cid-uvxrREGG1V .modal.in .modal-dialog {
  transform: none;
}
.cid-uvxrREGG1V .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uvxrREGG1V H6 {
  text-align: center;
}
.cid-u5Gk4yMDL8 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u5Gk4yMDL8 .item:focus,
.cid-u5Gk4yMDL8 span:focus {
  outline: none;
}
.cid-u5Gk4yMDL8 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u5Gk4yMDL8 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u5Gk4yMDL8 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u5Gk4yMDL8 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-u5Gk4yMDL8 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u5Gk4yMDL8 .mbr-section-title {
  color: #232323;
}
.cid-u5Gk4yMDL8 .mbr-text,
.cid-u5Gk4yMDL8 .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-u5Gk4yMDL8 .item-title {
  text-align: center;
}
.cid-u5Gk4yMDL8 .item-subtitle {
  text-align: center;
  color: #950210;
}
.cid-uNviAvBjbG {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #e53f3e;
}
.cid-uNviAvBjbG .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uNviAvBjbG .counter-container ul li {
  margin-bottom: 1rem;
  position: relative;
}
.cid-uNviAvBjbG .counter-container ul li:before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #1d55b4;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
  line-height: 1.2;
}
.cid-uNviAvBjbG .mbr-text {
  color: #ffffff;
}
.cid-uNviAvBjbG .mbr-text UL {
  text-align: center;
}
.cid-uNvjrQAKMd {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uNvjrQAKMd img,
.cid-uNvjrQAKMd .item-img {
  width: 100%;
}
.cid-uNvjrQAKMd .item:focus,
.cid-uNvjrQAKMd span:focus {
  outline: none;
}
.cid-uNvjrQAKMd .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uNvjrQAKMd .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uNvjrQAKMd .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uNvjrQAKMd .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uNvjrQAKMd .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uNvjrQAKMd .mbr-section-title {
  color: #232323;
}
.cid-uNvjrQAKMd .mbr-text,
.cid-uNvjrQAKMd .mbr-section-btn {
  text-align: left;
}
.cid-uNvjrQAKMd .item-title {
  text-align: left;
}
.cid-uNvjrQAKMd .item-subtitle {
  text-align: center;
}
.cid-uPPIy50S6A {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uPPIy50S6A .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPPIy50S6A .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-uPPIy50S6A .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPPIy50S6A .row {
  flex-direction: row-reverse;
}
.cid-uPPIy50S6A img {
  width: 100%;
}
.cid-uPRLIChO0v {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uPRLIChO0v .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPRLIChO0v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u6BIaA2kPI {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #e53f3e;
}
.cid-u6BIaA2kPI .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6BIaA2kPI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u6BIaA2kPI .mbr-section-title {
  color: #ffffff;
}
.cid-uvAmXBuqxr {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uvAmXBuqxr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvAmXBuqxr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvAmXBuqxr .oldcost {
  text-decoration: line-through;
  color: #ffffff;
}
.cid-uvAmXBuqxr .currentcost {
  color: #ffffff;
}
.cid-uvAmXBuqxr .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uvAmXBuqxr .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uvAmXBuqxr .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uvAmXBuqxr .text-box {
    padding: 1rem;
  }
}
.cid-uvAmXBuqxr .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uvAmXBuqxr .mbr-text,
.cid-uvAmXBuqxr .cost,
.cid-uvAmXBuqxr .mbr-section-btn {
  color: #232323;
  text-align: left;
}
.cid-uvxoTbfhYq {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #e53f3e;
}
.cid-uvxoTbfhYq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvxoTbfhYq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvxoTbfhYq .mbr-section-title {
  color: #ffffff;
}
.cid-uvAsXdkTa2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uvAsXdkTa2 .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uvAsXdkTa2 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-uvAsXdkTa2 .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #1d55b4;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-uvAsXdkTa2 .mbr-text P {
  text-align: left;
}
.cid-v0ZwqIpNLw {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v0ZwqIpNLw .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0ZwqIpNLw .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-v0ZwqIpNLw .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v0ZwqIpNLw .row {
  flex-direction: row-reverse;
}
.cid-v0ZwqIpNLw img {
  width: 100%;
}
.cid-uNvmZyT1J5 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #e53f3e;
}
.cid-uNvmZyT1J5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNvmZyT1J5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNvmZyT1J5 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uNvmZyT1J5 .row {
    flex-direction: column-reverse;
  }
  .cid-uNvmZyT1J5 .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-uNvmZyT1J5 .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uNvmZyT1J5 .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-uNvmZyT1J5 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uNvmZyT1J5 .card-title {
  color: #ffffff;
  text-align: center;
}
.cid-uNvmZyT1J5 .mbr-text,
.cid-uNvmZyT1J5 .mbr-section-btn {
  color: #fafafa;
  text-align: left;
}
.cid-u6pJR6p3FY {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-u6pJR6p3FY .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6pJR6p3FY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u6pJR6p3FY .mbr-section-title {
  color: #e53f3e;
}
.cid-u6pIsCpF1L {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-u6pIsCpF1L .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6pIsCpF1L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u6pIsCpF1L .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
@media (min-width: 991px) {
  .cid-u6pIsCpF1L .item {
    margin-bottom: 4rem;
  }
}
.cid-u6pIsCpF1L .item:last-child .icon-box:before {
  display: none;
}
.cid-u6pIsCpF1L .item.last .icon-box:before {
  display: none;
}
.cid-u6pIsCpF1L .icon-box {
  background: #e53f3e;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .cid-u6pIsCpF1L .icon-box {
    margin-right: 1rem;
  }
}
.cid-u6pIsCpF1L .icon-box::before {
  content: "\e925";
  font-family: Moririse2 !important;
  position: absolute;
  font-size: 32px;
  left: 50%;
  top: 120%;
  color: #e53f3e;
  transform: translate(-50%, 0);
}
.cid-u6pIsCpF1L span {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u6pIsCpF1L .card {
    margin-bottom: 2rem;
  }
  .cid-u6pIsCpF1L .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-u6pIsCpF1L .icon-box::before {
    top: 141%;
  }
}
@media (max-width: 768px) {
  .cid-u6pIsCpF1L .icon-box::before {
    top: 114%;
  }
}
.cid-u6pIsCpF1L .mbr-text,
.cid-u6pIsCpF1L .mbr-section-btn {
  text-align: left;
}
.cid-tH53RCbEgL {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #e53f3e;
}
.cid-tH53RCbEgL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tH53RCbEgL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tH53RCbEgL .mbr-section-title {
  color: #ffffff;
}
.cid-tHgEr6zx8B {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-tHgEr6zx8B .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tHgEr6zx8B .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tHgEr6zx8B .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #e53f3e;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-tHgEr6zx8B .mbr-text {
  color: #232323;
}
.cid-tHgEr6zx8B .mbr-text UL {
  text-align: left;
}
.cid-tH4YFAUB3V {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #e53f3e;
}
.cid-tH4YFAUB3V .mbr-fallback-image.disabled {
  display: none;
}
.cid-tH4YFAUB3V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tH4YFAUB3V .mbr-section-title {
  color: #ffffff;
}
.cid-tH4YFAUB3V .mbr-section-subtitle {
  color: #e6c63b;
}
.cid-v0ZwS02iPv {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v0ZwS02iPv img,
.cid-v0ZwS02iPv .item-img {
  width: 100%;
}
.cid-v0ZwS02iPv .item:focus,
.cid-v0ZwS02iPv span:focus {
  outline: none;
}
.cid-v0ZwS02iPv .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v0ZwS02iPv .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v0ZwS02iPv .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v0ZwS02iPv .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v0ZwS02iPv .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v0ZwS02iPv .mbr-section-title {
  color: #232323;
}
.cid-v0ZwS02iPv .mbr-text,
.cid-v0ZwS02iPv .mbr-section-btn {
  text-align: left;
}
.cid-v0ZwS02iPv .item-title {
  text-align: left;
}
.cid-v0ZwS02iPv .item-subtitle {
  text-align: center;
}
.cid-uPRUMlTca7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uPRUMlTca7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPRUMlTca7 .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-uPRUMlTca7 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPRUMlTca7 .row {
  flex-direction: row-reverse;
}
.cid-uPRUMlTca7 img {
  width: 100%;
}
.cid-uPRVlofDu0 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uPRVlofDu0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPRVlofDu0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNvohR1fJe {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #e53f3e;
}
.cid-uNvohR1fJe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNvohR1fJe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNvohR1fJe .mbr-section-title {
  color: #ffffff;
}
.cid-uNvpi2phGH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-uNvpi2phGH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNvpi2phGH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNvpi2phGH .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-uNvpi2phGH .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uNvpi2phGH .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uNvpi2phGH .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uNvpi2phGH .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-uNvpi2phGH .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-uNvpi2phGH .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uNvpi2phGH .mbr-text,
.cid-uNvpi2phGH .mbr-section-btn {
  color: #000000;
}
.cid-uPPsvXsZki {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #e53f3e;
}
.cid-uPPsvXsZki .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPPsvXsZki .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPPsvXsZki .mbr-section-title {
  color: #ffffff;
}
.cid-uPPsTOI9dG {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uPPsTOI9dG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPPsTOI9dG .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-uPPsTOI9dG .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPPsTOI9dG .row {
  flex-direction: row-reverse;
}
.cid-uPPsTOI9dG img {
  width: 100%;
}
.cid-uPPvFXwzM2 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uPPvFXwzM2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPPvFXwzM2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPPtveRL2r {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uPPtveRL2r .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPPtveRL2r .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPPtMdsWjl {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uPPtMdsWjl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPPtMdsWjl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPPtMdsWjl .mbr-text,
.cid-uPPtMdsWjl .mbr-section-btn {
  color: #232323;
}
.cid-uPPtMdsWjl .card-title,
.cid-uPPtMdsWjl .card-box {
  color: #ffffff;
}
.cid-uPPtMdsWjl .mbr-text,
.cid-uPPtMdsWjl .link-wrap {
  color: #ffffff;
}
.cid-uvxwi0GyIg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #e53f3e;
}
.cid-uvxwi0GyIg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvxwi0GyIg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvxwi0GyIg .mbr-section-title {
  color: #ffffff;
}
.cid-u6SoiXF0tp {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-u6SoiXF0tp .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6SoiXF0tp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u6SoiXF0tp .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #ffffff;
  margin-left: 1rem;
}
.cid-u6SoiXF0tp .panel-group {
  border: none;
}
.cid-u6SoiXF0tp .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-u6SoiXF0tp .panel-body,
.cid-u6SoiXF0tp .card-header {
  padding: 1rem 0;
}
.cid-u6SoiXF0tp .panel-title-edit {
  color: #000000;
}
.cid-u6SoiXF0tp .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tH7MaLTwFo {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tH7MaLTwFo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tH7MaLTwFo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tH7MaLTwFo .mbr-text,
.cid-tH7MaLTwFo .link {
  text-align: center;
  color: #ffffff;
}
.cid-tH7LwXnEz6 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tH7LwXnEz6 .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-tGAaBRqjNV .navbar-dropdown {
  position: relative !important;
}
.cid-tGAaBRqjNV .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-tGAaBRqjNV .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tGAaBRqjNV .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tGAaBRqjNV .dropdown-item:hover,
.cid-tGAaBRqjNV .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-tGAaBRqjNV .dropdown-item:hover span {
  color: white;
}
.cid-tGAaBRqjNV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tGAaBRqjNV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tGAaBRqjNV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tGAaBRqjNV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tGAaBRqjNV .nav-link {
  position: relative;
}
.cid-tGAaBRqjNV .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tGAaBRqjNV .container {
    flex-wrap: wrap;
  }
}
.cid-tGAaBRqjNV .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tGAaBRqjNV .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tGAaBRqjNV .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tGAaBRqjNV .dropdown-menu,
.cid-tGAaBRqjNV .navbar.opened {
  background:#303F81!important;
}
.cid-tGAaBRqjNV .nav-item:focus,
.cid-tGAaBRqjNV .nav-link:focus {
  outline: none;
}
.cid-tGAaBRqjNV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tGAaBRqjNV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tGAaBRqjNV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tGAaBRqjNV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tGAaBRqjNV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tGAaBRqjNV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tGAaBRqjNV .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: #e53f3e;
}
.cid-tGAaBRqjNV .navbar.opened {
  transition: all 0.3s;
}
.cid-tGAaBRqjNV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tGAaBRqjNV .navbar .navbar-logo img {
  width: auto;
}
.cid-tGAaBRqjNV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tGAaBRqjNV .navbar.collapsed {
  justify-content: center;
}
.cid-tGAaBRqjNV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tGAaBRqjNV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tGAaBRqjNV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tGAaBRqjNV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tGAaBRqjNV .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-tGAaBRqjNV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tGAaBRqjNV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tGAaBRqjNV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tGAaBRqjNV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tGAaBRqjNV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tGAaBRqjNV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tGAaBRqjNV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tGAaBRqjNV .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-tGAaBRqjNV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tGAaBRqjNV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tGAaBRqjNV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tGAaBRqjNV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tGAaBRqjNV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tGAaBRqjNV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tGAaBRqjNV .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tGAaBRqjNV .navbar.navbar-short {
  min-height: 60px;
}
.cid-tGAaBRqjNV .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tGAaBRqjNV .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tGAaBRqjNV .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-tGAaBRqjNV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tGAaBRqjNV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tGAaBRqjNV .dropdown-item.active,
.cid-tGAaBRqjNV .dropdown-item:active {
  background-color: transparent;
}
.cid-tGAaBRqjNV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tGAaBRqjNV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tGAaBRqjNV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tGAaBRqjNV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e53f3e;
}
.cid-tGAaBRqjNV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tGAaBRqjNV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tGAaBRqjNV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tGAaBRqjNV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tGAaBRqjNV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tGAaBRqjNV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tGAaBRqjNV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tGAaBRqjNV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGAaBRqjNV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGAaBRqjNV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tGAaBRqjNV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGAaBRqjNV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tGAaBRqjNV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tGAaBRqjNV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGAaBRqjNV .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tGAaBRqjNV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tGAaBRqjNV .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-tGAaBRqjNV .navbar {
    height: 70px;
  }
  .cid-tGAaBRqjNV .navbar.opened {
    height: auto;
  }
  .cid-tGAaBRqjNV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tH8OHd8cEA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tH8OHd8cEA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tH8OHd8cEA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tH8OHd8cEA .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tH8OHd8cEA .mbr-section-subtitle {
  text-align: left;
}
.cid-tGAaBRqjNV .navbar-dropdown {
  position: relative !important;
}
.cid-tGAaBRqjNV .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-tGAaBRqjNV .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tGAaBRqjNV .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tGAaBRqjNV .dropdown-item:hover,
.cid-tGAaBRqjNV .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-tGAaBRqjNV .dropdown-item:hover span {
  color: white;
}
.cid-tGAaBRqjNV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tGAaBRqjNV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tGAaBRqjNV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tGAaBRqjNV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tGAaBRqjNV .nav-link {
  position: relative;
}
.cid-tGAaBRqjNV .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tGAaBRqjNV .container {
    flex-wrap: wrap;
  }
}
.cid-tGAaBRqjNV .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tGAaBRqjNV .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tGAaBRqjNV .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tGAaBRqjNV .dropdown-menu,
.cid-tGAaBRqjNV .navbar.opened {
  background:#303F81!important;
}
.cid-tGAaBRqjNV .nav-item:focus,
.cid-tGAaBRqjNV .nav-link:focus {
  outline: none;
}
.cid-tGAaBRqjNV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tGAaBRqjNV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tGAaBRqjNV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tGAaBRqjNV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tGAaBRqjNV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tGAaBRqjNV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tGAaBRqjNV .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: #e53f3e;
}
.cid-tGAaBRqjNV .navbar.opened {
  transition: all 0.3s;
}
.cid-tGAaBRqjNV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tGAaBRqjNV .navbar .navbar-logo img {
  width: auto;
}
.cid-tGAaBRqjNV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tGAaBRqjNV .navbar.collapsed {
  justify-content: center;
}
.cid-tGAaBRqjNV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tGAaBRqjNV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tGAaBRqjNV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tGAaBRqjNV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tGAaBRqjNV .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-tGAaBRqjNV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tGAaBRqjNV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tGAaBRqjNV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tGAaBRqjNV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tGAaBRqjNV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tGAaBRqjNV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tGAaBRqjNV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tGAaBRqjNV .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-tGAaBRqjNV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tGAaBRqjNV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tGAaBRqjNV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tGAaBRqjNV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tGAaBRqjNV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tGAaBRqjNV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tGAaBRqjNV .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tGAaBRqjNV .navbar.navbar-short {
  min-height: 60px;
}
.cid-tGAaBRqjNV .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tGAaBRqjNV .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tGAaBRqjNV .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-tGAaBRqjNV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tGAaBRqjNV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tGAaBRqjNV .dropdown-item.active,
.cid-tGAaBRqjNV .dropdown-item:active {
  background-color: transparent;
}
.cid-tGAaBRqjNV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tGAaBRqjNV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tGAaBRqjNV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tGAaBRqjNV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e53f3e;
}
.cid-tGAaBRqjNV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tGAaBRqjNV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tGAaBRqjNV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tGAaBRqjNV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tGAaBRqjNV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tGAaBRqjNV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tGAaBRqjNV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tGAaBRqjNV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGAaBRqjNV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGAaBRqjNV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tGAaBRqjNV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGAaBRqjNV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tGAaBRqjNV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tGAaBRqjNV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGAaBRqjNV .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tGAaBRqjNV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tGAaBRqjNV .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-tGAaBRqjNV .navbar {
    height: 70px;
  }
  .cid-tGAaBRqjNV .navbar.opened {
    height: auto;
  }
  .cid-tGAaBRqjNV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tH8P2OckkG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tH8P2OckkG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tH8P2OckkG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tH8P2OckkG .mbr-section-subtitle {
  text-align: left;
}
.cid-tGAaBRqjNV .navbar-dropdown {
  position: relative !important;
}
.cid-tGAaBRqjNV .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-tGAaBRqjNV .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tGAaBRqjNV .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tGAaBRqjNV .dropdown-item:hover,
.cid-tGAaBRqjNV .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-tGAaBRqjNV .dropdown-item:hover span {
  color: white;
}
.cid-tGAaBRqjNV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tGAaBRqjNV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tGAaBRqjNV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tGAaBRqjNV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tGAaBRqjNV .nav-link {
  position: relative;
}
.cid-tGAaBRqjNV .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tGAaBRqjNV .container {
    flex-wrap: wrap;
  }
}
.cid-tGAaBRqjNV .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tGAaBRqjNV .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tGAaBRqjNV .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tGAaBRqjNV .dropdown-menu,
.cid-tGAaBRqjNV .navbar.opened {
  background:#303F81!important;
}
.cid-tGAaBRqjNV .nav-item:focus,
.cid-tGAaBRqjNV .nav-link:focus {
  outline: none;
}
.cid-tGAaBRqjNV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tGAaBRqjNV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tGAaBRqjNV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tGAaBRqjNV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tGAaBRqjNV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tGAaBRqjNV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tGAaBRqjNV .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: #e53f3e;
}
.cid-tGAaBRqjNV .navbar.opened {
  transition: all 0.3s;
}
.cid-tGAaBRqjNV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tGAaBRqjNV .navbar .navbar-logo img {
  width: auto;
}
.cid-tGAaBRqjNV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tGAaBRqjNV .navbar.collapsed {
  justify-content: center;
}
.cid-tGAaBRqjNV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tGAaBRqjNV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tGAaBRqjNV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tGAaBRqjNV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tGAaBRqjNV .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-tGAaBRqjNV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tGAaBRqjNV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tGAaBRqjNV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tGAaBRqjNV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tGAaBRqjNV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tGAaBRqjNV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tGAaBRqjNV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tGAaBRqjNV .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-tGAaBRqjNV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tGAaBRqjNV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tGAaBRqjNV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tGAaBRqjNV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tGAaBRqjNV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tGAaBRqjNV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tGAaBRqjNV .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tGAaBRqjNV .navbar.navbar-short {
  min-height: 60px;
}
.cid-tGAaBRqjNV .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tGAaBRqjNV .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tGAaBRqjNV .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-tGAaBRqjNV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tGAaBRqjNV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tGAaBRqjNV .dropdown-item.active,
.cid-tGAaBRqjNV .dropdown-item:active {
  background-color: transparent;
}
.cid-tGAaBRqjNV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tGAaBRqjNV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tGAaBRqjNV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tGAaBRqjNV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e53f3e;
}
.cid-tGAaBRqjNV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tGAaBRqjNV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tGAaBRqjNV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tGAaBRqjNV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tGAaBRqjNV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tGAaBRqjNV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tGAaBRqjNV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tGAaBRqjNV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGAaBRqjNV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGAaBRqjNV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tGAaBRqjNV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGAaBRqjNV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tGAaBRqjNV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tGAaBRqjNV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGAaBRqjNV .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tGAaBRqjNV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tGAaBRqjNV .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-tGAaBRqjNV .navbar {
    height: 70px;
  }
  .cid-tGAaBRqjNV .navbar.opened {
    height: auto;
  }
  .cid-tGAaBRqjNV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tH8Na6upHl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tH8Na6upHl .mbr-fallback-image.disabled {
  display: none;
}
.cid-tH8Na6upHl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tH8Na6upHl .mbr-section-subtitle {
  text-align: left;
}
<style>
.weight-section{
  background:#fff;
  padding:35px 15px;   /* ⬇ 60 → 35 */
  font-family:'Poppins',sans-serif;
}

.weight-inner{
  max-width:1200px;
  margin:auto;
  display:flex;
  gap:35px;           /* ⬇ 60 → 35 */
  align-items:center;
}

/* LEFT */
.weight-left{
  flex:1;
  text-align:center;
}

.bottle-img{
  max-width:340px;    /* thoda compact */
}

.rating{
  color:gold;
  font-size:30px;
  margin:8px 0;       /* ⬇ 15 → 8 */
}

/* RIGHT */
.weight-right{
  flex:1.2;
}

.weight-heading{
  background:#6b1a16;
  color:#fff;
  font-size:25px;
  font-weight:800;
  padding:14px 18px;  /* ⬇ */
  border-radius:4px;
  margin-bottom:15px; /* ⬇ 25 → 15 */
}

.weight-desc{
  font-size:25px;
  line-height:1.6;
  color:#222;
  margin-bottom:15px; /* ⬇ */
}

.weight-points{
  list-style:none;
  padding:0;
  margin-bottom:15px; /* ⬇ 30 → 15 */
}

.weight-points li{
  font-size:20px;
  margin-bottom:10px; /* ⬇ 20 → 10 */
  font-weight:600;
}

/* PRICE */
.weight-price{
  font-size:26px;
  font-weight:900;
  color:#d60000;
  margin-bottom:15px; /* ⬇ */
}

.weight-price span{
  color:#b00000;
}

/* BUTTON */
.order-btn{
  background:linear-gradient(#ffe55c,#ffcc00);
  color:#0033cc;
  font-size:22px;
  font-weight:900;
  padding:14px 36px;  /* ⬇ */
  display:inline-block;
  border-radius:10px;
  text-decoration:none;
  box-shadow:0 4px 0 #caa500;
}

.order-btn:hover{
  transform:scale(1.04);
}

/* MOBILE */
@media(max-width:900px){
  .weight-inner{
    flex-direction:column;
    gap:25px;         /* ⬇ */
    text-align:center;
  }

  .weight-heading{
    font-size:20px;
    padding:12px 16px;
  }

  .weight-desc,
  .weight-points li{
    font-size:18px;
  }
}

/* MOBILE */
@media(max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-right h1 {
    font-size: 30px;
  }
}
.top-offer-bar {
  width: 100%;
  background: #f1f1f1;
  color: #5b140f;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 32px;        /* TEXT SIZE */
  padding: 18px 10px;
  border-bottom: 3px solid #5b140f;
  letter-spacing: 0.5px;
}

/* MOBILE */
@media (max-width: 768px) {
  .top-offer-bar {
    font-size: 22px;
    padding: 14px 8px;
  }
}
.top-navbar {
  width: 100%;
  background: #6b1a16; /* GingerFit maroon */
  border-bottom: 1px solid #4a0f0c;
}

.nav-inner {
  max-width: 1200px;
  margin: auto;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  font-family: 'Poppins', sans-serif;
}

/* LOGO */
.nav-logo {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* MENU */
.nav-menu a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 14px;
  font-size: 16px;
  font-weight: 600;
}

.nav-menu a:hover {
  text-decoration: underline;
}

/* CTA BUTTON */
.nav-cta {
  background: #ff0000;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  border: 4px solid #ffd200; /* yellow border */
}

.nav-cta:hover {
  background: #cc0000;
}

/* MOBILE */
@media (max-width: 900px) {
  .nav-menu {
    display: none;
  }

  .nav-logo {
    font-size: 26px;
  }

  .nav-cta {
    font-size: 16px;
    padding: 8px 18px;
  }
}
/* SECTION */
.why-choose {
  background: #ffffff;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

/* FULL WIDTH HEADING */
.why-choose h2 {
  background: #6b1a16;
  color: #ffffff;
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  padding: 26px 15px;
  margin: 0 0 20px 0;

  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

/* CONTENT BOX */
.why-box {
  max-width: 1200px;
  margin: auto;
  background: #6b1a16;
  border: 6px solid #ffd200;
  border-radius: 40px;
  padding: 45px 30px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

/* ITEMS */
.why-item img {
  max-width: 110px;
  margin-bottom: 16px;
}

.why-item h3 {
  color: #ffd200;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
}

.why-item p {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.5;
}

/* MOBILE */
@media (max-width: 900px) {

  .why-choose h2 {
    font-size: 26px;
    padding: 22px 12px;
  }

  .why-box {
    grid-template-columns: 1fr;
    padding: 35px 20px;
    border-radius: 25px;
  }

  .why-item img {
    max-width: 90px;
  }

  .why-item h3 {
    font-size: 20px;
  }

  .why-item p {
    font-size: 16px;
  }
}

/* MAIN SECTION */
.reviews-section{
  background:#ffffff;
  padding:0 20px 80px;
  font-family:'Poppins',sans-serif;
}

/* HEADING BAR */
.review-heading{
  width:100%;
  background:#6b1a16;
  color:#ffffff;
  text-align:center;
  font-size:40px;
  font-weight:900;
  padding:24px 10px;
  letter-spacing:0.6px;
  border-bottom:4px solid #ffd200;
  margin-bottom:40px;
}

/* REVIEW CARD */
.review-card{
  max-width:1000px;
  margin:25px auto;
  display:flex;
  gap:25px;
  border:4px solid #ff0000;
  border-radius:22px;
  padding:30px;
  background:#ffffff;
}

/* IMAGE */
.review-card img{
  width:95px;
  height:95px;
  border-radius:50%;
  object-fit:cover;
}

/* CONTENT */
.review-content{
  flex:1;
}

.review-stars{
  font-size:20px;
  margin-bottom:8px;
}

/* VERIFIED */
.verified{
  color:#1bbf00;
  font-weight:800;
  margin-left:8px;
}

/* TEXT */
.review-content p{
  font-size:19px;
  line-height:1.65;
  color:#222;
  font-weight:500;
}

/* NAME */
.review-name{
  display:block;
  margin-top:10px;
  color:#cc0000;
  font-size:18px;
  font-weight:800;
}

/* MOBILE */
@media(max-width:768px){
  .review-heading{
    font-size:26px;
    padding:16px 8px;
  }

  .review-card{
    flex-direction:column;
    text-align:center;
  }

  .review-card img{
    margin:auto;
  }

  .review-content p{
    font-size:17px;
  }
}
.order-section {
  font-family: 'Poppins', sans-serif;
  background: #fff;
  padding-bottom: 80px;
}

/* CURVED YELLOW TOP */
.order-top {
  background: #6b1a16;
  text-align: center;
  padding: 50px 20px 90px;
  color: #fff;
  clip-path: ellipse(120% 100% at 50% 0%);
}

.order-top h2 {
  font-size: 34px;
  font-weight: 800;
}

.order-top p {
  font-size: 16px;
  margin-top: 8px;
}

/* CARDS */
.order-wrap {
  max-width: 1200px;
  margin: -120px auto 0;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.order-card {
  width: 320px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,.18);
  text-align: center;
  padding-bottom: 30px;
  border: 2px solid #f1d400;
  position: relative;
}

.order-head {
  background: #6b1a16;
  color: #fff;
  padding: 18px;
  border-radius: 20px 20px 0 0;
}

.order-head h3 {
  font-size: 20px;
  font-weight: 800;
}

.order-head span {
  font-size: 14px;
}

/* BEST VALUE */
.best {
  transform: scale(1.08);
  border: 2px solid #ff4d4d;
}

.best-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: #ff4d4d;
  color: #fff;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 700;
}

.order-card img {
  max-width: 200px;
  margin: 25px auto;
}

.price-line {
  font-size: 16px;
}

.price-line strong {
  color: #00a86b;
  font-size: 18px;
}

/* BUTTONS */
.order-btn {
  display: inline-block;
  padding: 14px 38px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 800;
  margin: 14px 0;
  text-decoration: none;
  color: #fff;
}

.order-btn.yellow {
  background: #ffb400;
}

.order-btn.green {
  background: #00a86b;
}

.total {
  font-size: 16px;
}

/* MOBILE */
@media (max-width: 900px) {
  .order-wrap {
    flex-direction: column;
    align-items: center;
    margin-top: -80px;
  }
  .best {
    transform: none;
  }
}
.about-gingerfit {
  font-family: 'Poppins', sans-serif;
  background: #fff;
}

/* TOP MAROON BAR */
.about-head {
  background: #6b1a16;
  padding: 30px 20px;
  text-align: center;
}

.about-head h2 {
  color: #fff;
  font-size: 34px;
  font-weight: 800;
}

/* INNER */
.about-inner {
  max-width: 1200px;
  margin: 60px auto;
  display: flex;
  gap: 50px;
  align-items: center;
  padding: 0 20px;
}

/* LEFT */
.about-left {
  flex: 1;
  text-align: center;
}

.about-left img {
  max-width: 340px;
}

.order-btn-big {
  display: inline-block;
  margin-top: 25px;
  background: #ffd800;
  color: #000;
  font-size: 22px;
  font-weight: 800;
  padding: 14px 40px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 0 #c9a900;
}

.payments img {
  height: 26px;
  margin: 14px 6px 0;
}

/* RIGHT */
.about-right {
  flex: 1.3;
}

.about-right p {
  font-size: 22px;
  line-height: 1.6;
  color: #111;
  margin-bottom: 18px;
}

/* MOBILE */
@media (max-width: 900px) {
  .about-inner {
    flex-direction: column;
    text-align: center;
  }
  .about-right p {
    font-size: 17px;
  }
}
.how-gingerfit-works {
  font-family: 'Poppins', sans-serif;
  background: #fff;
}

/* TOP MAROON BAR */
.how-head {
  background: #6b1a16;
  padding: 30px 20px;
  text-align: center;
}

.how-head h2 {
  color: #fff;
  font-size: 34px;
  font-weight: 800;
}

/* CONTENT AREA */
.how-inner {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
}

.how-content p {
  font-size: 22px;
  line-height: 1.7;
  color: #111;
  margin-bottom: 22px;
}

.gf-guarantee {
  width: 100%;
  background: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
}

/* TOP MAROON BAR */
.gf-header {
  background: #6b1a16;
  color: #ffffff;
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  padding: 20px 10px;
}

/* GREEN BORDER BOX */
.gf-wrapper {
  padding: 30px;
}

.gf-inner {
  border: 4px solid #0aa36a;
  padding: 30px 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* BADGE IMAGE */
.gf-badge img {
  width: 260px;   /* 🔥 EXACT badge size */
  height: auto;
}

/* TEXT AREA */
.gf-text h3 {
  color: #d10000;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 18px;
}

.gf-text p {
  font-size: 18px;
  line-height: 1.7;
  color: #000000;
  margin-bottom: 14px;
}
.gf-ingredients {
  width: 100%;
  background: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
}

/* TOP MAROON BAR */
.gf-ing-header {
  background: #6b1a16;
  color: #ffffff;
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  padding: 20px 10px;
}

/* WRAPPER */
.gf-ing-wrap {
  max-width: 1100px;
  margin: 30px auto;
  padding: 0 15px;
}

/* INGREDIENT BOX */
.gf-ing-box {
  border: 3px solid #ffd400;
  background: #ffffff;
  padding: 22px 28px;
  margin-bottom: 22px;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}

/* HEADING */
.gf-ing-box h3 {
  font-size: 24px;
  font-weight: 700;
  color: #ff0000;
  margin-bottom: 10px;
}

/* TEXT */
.gf-ing-box p {
  font-size: 20px;
  line-height: 1.6;
  color: #000000;
  margin: 0;
}
.gf-benefits {
  width: 100%;
  background: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
}

/* TOP MAROON BAR */
.gf-ben-header {
  background: #6b1a16;
  color: #ffffff;
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  padding: 20px 10px;
}

/* WRAPPER */
.gf-ben-wrap {
  max-width: 1100px;
  margin: 30px auto;
  padding: 0 15px;
}

/* BENEFIT BOX */
.gf-ben-box {
  border: 3px solid #ffd400;
  background: #ffffff;
  padding: 22px 28px;
  margin-bottom: 22px;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}

/* HEADING */
.gf-ben-box h3 {
  font-size: 24px;
  font-weight: 700;
  color: #ff0000;
  margin-bottom: 10px;
}

/* TEXT */
.gf-ben-box p {
  font-size: 20px;
  line-height: 1.6;
  color: #000000;
  margin: 0;
}
.gf-faq {
  width: 100%;
  background: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
}

/* MAROON TOP BAR */
.gf-faq-header {
  background: #6b1a16;
  color: #ffffff;
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  padding: 20px 10px;
}

/* GREEN BORDER BOX */
.gf-faq-box {
  max-width: 1100px;
  margin: 30px auto;
  padding: 30px 35px;
  border: 4px solid #1aa36f;
  background: #ffffff;
}

/* FAQ ITEM */
.faq-item {
  margin-bottom: 35px;
}

/* QUESTION */
.faq-item h3 {
  font-size: 24px;
  color: #ff0000;
  font-weight: 700;
  margin-bottom: 10px;
}

/* ANSWER */
.faq-item p {
  font-size: 20px;
  line-height: 1.6;
  color: #000000;
  margin: 0;
}
/* GingerFit Buy Now Section */
.gf-buy-section{
  background:#ffffff;
  width:100%;
  font-family: Arial, Helvetica, sans-serif;
}

.gf-top-bar{
  background:#6b1a16;
  padding:18px 10px;
  text-align:center;
}

.gf-top-bar h2{
  color:#fff;
  margin:0;
  font-size:26px;
  font-weight:700;
}

.gf-container{
  max-width:1100px;
  margin:auto;
  padding:0 15px;
}

.gf-intro{
  text-align:center;
  margin:35px 0;
  font-size:22px;
  color:#222;
  line-height:1.6;
}

.gf-images{
  display:flex;
  justify-content:center;
  align-items:flex-start;
  gap:40px;
  flex-wrap:wrap;
  margin:40px 0;
}

.gf-images img{
  max-width:260px;
  width:100%;
}

.gf-content h3{
  color:#cc0000;
  font-size:22px;
  margin-bottom:10px;
}

.gf-content p{
  font-size:20px;
  color:#222;
  line-height:1.6;
}

.gf-remark{
  margin-top:25px;
  font-size:16px;
}

.gf-remark span{
  color:#cc0000;
  font-weight:700;
}

/* Mobile Fix */
@media(max-width:768px){
  .gf-top-bar h2{
    font-size:20px;
  }
  .gf-images{
    gap:25px;
  }
}
.order-section{
  background:#fff;
  font-family:'Poppins',sans-serif;
  text-align:center;
  padding-bottom:60px;
}

.top-strip{
  background:#6b1a16;
  color:#fff;
  font-size:20px;
  font-weight:800;
  padding:15px;
}

.order-content{
  margin-top:40px;
}

/* IMAGE */
.bottles-img{
  max-width:380px;
  width:100%;
  display:block;
  margin:0 auto 20px;
}

/* PRICES */
.regular-price{
  font-size:18px;
  font-weight:600;
  color:#333;
}

.regular-price span{
  text-decoration:line-through;
  color:#777;
}

.today-price{
  font-size:24px;
  font-weight:900;
  color:#e60000;
  margin:10px 0 25px;
}

/* BUTTON */
.order-btn{
  display:inline-block;
  background:linear-gradient(#ffe066,#ffd200);
  color:#0033cc;
  font-size:26px;
  font-weight:900;
  padding:16px 45px;
  border-radius:12px;
  text-decoration:none;
  box-shadow:0 5px 0 #c9a900;
  transition:0.3s;
}

.order-btn:hover{
  transform:scale(1.05);
}

/* PAYMENTS */
.payments{
  display:block;
  margin:20px auto 0;
  max-width:280px;
}

/* MOBILE */
@media(max-width:768px){
  .top-strip{font-size:16px;}
  .order-btn{font-size:22px;}
}
/* FOOTER TOP LINKS */
.footer-top{
  background:#000;
  padding:20px;
  display:flex;
  justify-content:center;
  gap:50px;
  flex-wrap:wrap;
}

.footer-top a{
  color:#fff;
  font-weight:700;
  text-decoration:none;
  font-size:22px;
  letter-spacing:0.5px;
}

.footer-top a:hover{
  text-decoration:underline;
}

/* FDA SECTION */
.fda-section{
  background:#f2f2f2;
  padding:50px 20px;
  text-align:center;
  font-family:'Poppins',sans-serif;
}

.fda-section h2{
  font-size:28px;
  font-weight:800;
  margin-bottom:25px;
  color:#000;
}

.fda-section p{
  max-width:1000px;
  margin:0 auto 18px;
  font-size:14.5px;
  line-height:1.8;
  color:#333;
}

/* COPYRIGHT */
.footer-bottom{
  background:#000;
  color:#fff;
  text-align:center;
  padding:25px 15px;
  font-size:20px;
  font-weight:600;
}

/* MOBILE */
@media(max-width:768px){
  .footer-top{
    gap:20px;
  }
  .fda-section h2{
    font-size:22px;
  }
}

</style>