body {
  font-family: Rubik;
}
.display-1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 3.2rem;
  font-display: swap;
}
.display-1 > .mbr-iconfont {
  font-size: 5.12rem;
}
.display-2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.6rem;
  font-display: swap;
}
.display-2 > .mbr-iconfont {
  font-size: 2.56rem;
}
.display-4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-display: swap;
}
.display-4 > .mbr-iconfont {
  font-size: 1.28rem;
}
.display-5 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.5rem;
  font-display: swap;
}
.display-5 > .mbr-iconfont {
  font-size: 2.4rem;
}
.display-7 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  font-display: swap;
}
.display-7 > .mbr-iconfont {
  font-size: 1.6rem;
}
/* ---- 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: 768px) {
  .display-1 {
    font-size: 2.56rem;
    font-size: calc( 1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #ffffff !important;
}
.bg-success {
  background-color: #cc3300 !important;
}
.bg-info {
  background-color: #82786e !important;
}
.bg-warning {
  background-color: #02c100 !important;
}
.bg-danger {
  background-color: #f7ed4a !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #cc3300 !important;
  border-color: #cc3300 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #802000 !important;
  border-color: #802000 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #802000 !important;
  border-color: #802000 !important;
}
.btn-info,
.btn-info:active {
  background-color: #82786e !important;
  border-color: #82786e !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-success,
.btn-success:active {
  background-color: #cc3300 !important;
  border-color: #cc3300 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #802000 !important;
  border-color: #802000 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #802000 !important;
  border-color: #802000 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #02c100 !important;
  border-color: #02c100 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #017500 !important;
  border-color: #017500 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #017500 !important;
  border-color: #017500 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
  color: #3f3c03 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #cccccc;
  color: #cccccc;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #808080;
  background-color: #ffffff;
  border-color: #ffffff;
}
.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: none;
  border-color: #661a00;
  color: #661a00;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #cc3300;
  border-color: #cc3300;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #cc3300 !important;
  border-color: #cc3300 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #4b453f;
  color: #4b453f;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #82786e;
  border-color: #82786e;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #82786e !important;
  border-color: #82786e !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #661a00;
  color: #661a00;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff;
  background-color: #cc3300;
  border-color: #cc3300;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #cc3300 !important;
  border-color: #cc3300 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #015b00;
  color: #015b00;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #02c100;
  border-color: #02c100;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #02c100 !important;
  border-color: #02c100 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #d2c609;
  color: #d2c609;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #3f3c03;
  background-color: #f7ed4a;
  border-color: #f7ed4a;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #3f3c03 !important;
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #ffffff !important;
}
.text-secondary {
  color: #cc3300 !important;
}
.text-success {
  color: #cc3300 !important;
}
.text-info {
  color: #82786e !important;
}
.text-warning {
  color: #02c100 !important;
}
.text-danger {
  color: #f7ed4a !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #cccccc !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #661a00 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #661a00 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #4b453f !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #015b00 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #d2c609 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #82786e;
}
.alert-warning {
  background-color: #02c100;
}
.alert-danger {
  background-color: #f7ed4a;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.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: #ffb399;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #beb8b2;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #43ff42;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  font-display: swap;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
blockquote {
  border-color: #ffffff;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.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);
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #ffffff;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #ffffff;
}
.footer3 input[type="email"],
.footer4 input[type="email"] {
  border-radius: 100px !important;
}
.footer3 .input-group-btn a.btn,
.footer4 .input-group-btn a.btn {
  border-radius: 100px !important;
}
.footer3 .input-group-btn button[type="submit"],
.footer4 .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
}
/* Headers*/
.header13 .form-inline input[type="email"],
.header14 .form-inline input[type="email"] {
  border-radius: 100px;
}
.header13 .form-inline input[type="text"],
.header14 .form-inline input[type="text"] {
  border-radius: 100px;
}
.header13 .form-inline input[type="tel"],
.header14 .form-inline input[type="tel"] {
  border-radius: 100px;
}
.header13 .form-inline a.btn,
.header14 .form-inline a.btn {
  border-radius: 100px;
}
.header13 .form-inline button,
.header14 .form-inline button {
  border-radius: 100px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .card-wrapper {
    flex: auto !important;
  }
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.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: #cc3300 !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%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  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.3;
}
.cid-sRX6LQ2GcL .navbar-dropdown {
  position: relative !important;
}
.cid-sRX6LQ2GcL .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-sRX6LQ2GcL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sRX6LQ2GcL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sRX6LQ2GcL .dropdown-item:hover,
.cid-sRX6LQ2GcL .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-sRX6LQ2GcL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sRX6LQ2GcL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sRX6LQ2GcL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sRX6LQ2GcL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sRX6LQ2GcL .nav-link {
  position: relative;
}
.cid-sRX6LQ2GcL .container {
  display: flex;
  margin: auto;
}
.cid-sRX6LQ2GcL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sRX6LQ2GcL .dropdown-menu,
.cid-sRX6LQ2GcL .navbar.opened {
  background: #cc3300 !important;
}
.cid-sRX6LQ2GcL .nav-item:focus,
.cid-sRX6LQ2GcL .nav-link:focus {
  outline: none;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sRX6LQ2GcL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sRX6LQ2GcL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sRX6LQ2GcL .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: #cc3300;
}
.cid-sRX6LQ2GcL .navbar.opened {
  transition: all 0.3s;
}
.cid-sRX6LQ2GcL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sRX6LQ2GcL .navbar .navbar-logo img {
  width: auto;
}
.cid-sRX6LQ2GcL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sRX6LQ2GcL .navbar.collapsed {
  justify-content: center;
}
.cid-sRX6LQ2GcL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sRX6LQ2GcL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sRX6LQ2GcL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.2rem);
  }
}
.cid-sRX6LQ2GcL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sRX6LQ2GcL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sRX6LQ2GcL .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-sRX6LQ2GcL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sRX6LQ2GcL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sRX6LQ2GcL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sRX6LQ2GcL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sRX6LQ2GcL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sRX6LQ2GcL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sRX6LQ2GcL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sRX6LQ2GcL .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-sRX6LQ2GcL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sRX6LQ2GcL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sRX6LQ2GcL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sRX6LQ2GcL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sRX6LQ2GcL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sRX6LQ2GcL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sRX6LQ2GcL .navbar.navbar-short {
  min-height: 60px;
}
.cid-sRX6LQ2GcL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sRX6LQ2GcL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sRX6LQ2GcL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sRX6LQ2GcL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sRX6LQ2GcL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sRX6LQ2GcL .dropdown-item.active,
.cid-sRX6LQ2GcL .dropdown-item:active {
  background-color: transparent;
}
.cid-sRX6LQ2GcL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sRX6LQ2GcL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sRX6LQ2GcL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sRX6LQ2GcL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cc3300;
}
.cid-sRX6LQ2GcL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sRX6LQ2GcL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sRX6LQ2GcL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sRX6LQ2GcL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sRX6LQ2GcL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sRX6LQ2GcL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sRX6LQ2GcL .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-sRX6LQ2GcL .navbar {
    height: 70px;
  }
  .cid-sRX6LQ2GcL .navbar.opened {
    height: auto;
  }
  .cid-sRX6LQ2GcL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sRWZFB7FcU {
  padding-top: 10rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/hitachi-machine-for-sale-2000x1500.webp");
}
.cid-sRWZFB7FcU .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-sRWZFB7FcU .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-sRWZFB7FcU .mbr-text,
.cid-sRWZFB7FcU .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uXwR1zmo6E {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f11919;
  background: linear-gradient(45deg, #f11919, #ffc71e);
}
.cid-uXwR1zmo6E .media-container-row {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-uXwR1zmo6E .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uXwR1zmo6E .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uXwR1zmo6E .mbr-text {
    text-align: center;
  }
}
.cid-tn8g9bgzqW {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tn8g9bgzqW .mbr-section-subtitle {
  color: #cc3300;
  text-align: center;
}
.cid-tn8g9bgzqW H2 {
  color: #cc3300;
}
.cid-uQW1hqV7lC {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uQW1hqV7lC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQW1hqV7lC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQW1hqV7lC .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-uQW1hqV7lC .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-uQW1hqV7lC .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uQW1hqV7lC .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uQW1hqV7lC .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uQW1hqV7lC .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-uQW1hqV7lC .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-uQW1hqV7lC .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uQW1hqV7lC .card-title {
  color: #cc3300;
}
.cid-tDmY8psFLX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tDmY8psFLX img,
.cid-tDmY8psFLX .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tDmY8psFLX .item:focus,
.cid-tDmY8psFLX span:focus {
  outline: none;
}
.cid-tDmY8psFLX .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tDmY8psFLX .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #cc3300;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tDmY8psFLX .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tDmY8psFLX .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tDmY8psFLX .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tDmY8psFLX .mbr-section-title {
  color: #232323;
}
.cid-tDmY8psFLX .mbr-text,
.cid-tDmY8psFLX .mbr-section-btn {
  text-align: left;
}
.cid-tDmY8psFLX .item-title {
  text-align: left;
}
.cid-tDmY8psFLX .item-subtitle {
  text-align: center;
}
.cid-tDmZwx9hc9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tDmZwx9hc9 img,
.cid-tDmZwx9hc9 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tDmZwx9hc9 .item:focus,
.cid-tDmZwx9hc9 span:focus {
  outline: none;
}
.cid-tDmZwx9hc9 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tDmZwx9hc9 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #cc3300;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tDmZwx9hc9 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tDmZwx9hc9 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tDmZwx9hc9 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tDmZwx9hc9 .mbr-section-title {
  color: #232323;
}
.cid-tDmZwx9hc9 .mbr-text,
.cid-tDmZwx9hc9 .mbr-section-btn {
  text-align: left;
}
.cid-tDmZwx9hc9 .item-title {
  text-align: left;
  color: #232323;
}
.cid-tDmZwx9hc9 .item-subtitle {
  text-align: center;
}
.cid-tDn0JSFep0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tDn0JSFep0 img,
.cid-tDn0JSFep0 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tDn0JSFep0 .item:focus,
.cid-tDn0JSFep0 span:focus {
  outline: none;
}
.cid-tDn0JSFep0 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tDn0JSFep0 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #cc3300;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tDn0JSFep0 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tDn0JSFep0 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tDn0JSFep0 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tDn0JSFep0 .mbr-section-title {
  color: #232323;
}
.cid-tDn0JSFep0 .mbr-text,
.cid-tDn0JSFep0 .mbr-section-btn {
  text-align: left;
}
.cid-tDn0JSFep0 .item-title {
  text-align: left;
  color: #232323;
}
.cid-tDn0JSFep0 .item-subtitle {
  text-align: center;
}
.cid-tDn0ZBn9kr {
  padding-top: 0rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-tDn0ZBn9kr img,
.cid-tDn0ZBn9kr .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tDn0ZBn9kr .item:focus,
.cid-tDn0ZBn9kr span:focus {
  outline: none;
}
.cid-tDn0ZBn9kr .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tDn0ZBn9kr .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tDn0ZBn9kr .item {
  padding: 0;
  margin: 0;
}
.cid-tDn0ZBn9kr .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #cc3300;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tDn0ZBn9kr .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tDn0ZBn9kr .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tDn0ZBn9kr .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tDn0ZBn9kr .mbr-section-title {
  color: #232323;
}
.cid-tDn0ZBn9kr .mbr-text,
.cid-tDn0ZBn9kr .mbr-section-btn {
  text-align: left;
}
.cid-tDn0ZBn9kr .item-title {
  text-align: left;
}
.cid-tDn0ZBn9kr .item-subtitle {
  text-align: center;
}
.cid-rJMAPfIE5v {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #cc3300;
}
@media (max-width: 767px) {
  .cid-rJMAPfIE5v .content {
    text-align: center;
  }
  .cid-rJMAPfIE5v .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-rJMAPfIE5v .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rJMAPfIE5v .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rJMAPfIE5v .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rJMAPfIE5v .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rJMAPfIE5v .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-rJMAPfIE5v .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rJMAPfIE5v .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-rJMAPfIE5v .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rJMAPfIE5v .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rJMAPfIE5v .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rJMAPfIE5v .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rJMAPfIE5v P {
  color: #ffffff;
}
.cid-rJMAPfIE5v H5 {
  color: #ffffff;
}
.cid-xD79YnMtIz .whatsapp-wrapper {
  position: fixed;
  bottom: 250px;
  right: 23px;
  z-index: 9999;
}
.cid-xD79YnMtIz .whatsapp-button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  position: relative;
  text-decoration: none;
  transition: transform 0.2s ease;
  width: auto;
  height: auto;
  min-width: calc(50px);
  min-height: calc(50px);
}
.cid-xD79YnMtIz .whatsapp-button:hover {
  transform: scale(1.1);
}
.cid-xD79YnMtIz .whatsapp-button::after {
  content: attr(data-tooltip);
  position: absolute;
  background-color: rgba(0, 0, 0, 0.85);
  color: white;
  padding: 6px 10px;
  border-radius: 4px;
  white-space: nowrap;
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
}
.cid-xD79YnMtIz .whatsapp-button:hover::after {
  opacity: 1;
}
.cid-xD79YnMtIz .tooltip-top::after {
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
}
.cid-xD79YnMtIz .tooltip-bottom::after {
  top: 120%;
  left: 50%;
  transform: translateX(-50%);
}
.cid-xD79YnMtIz .tooltip-left::after {
  top: 50%;
  right: 120%;
  transform: translateY(-50%);
}
.cid-xD79YnMtIz .tooltip-right::after {
  top: 50%;
  left: 120%;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .cid-xD79YnMtIz .whatsapp-button::after {
    display: none;
  }
}
.cid-xD79YnMtIz DIV {
  color: #ffffff;
}
.cid-xD79YnMtIz p {
  color: #000;
}
.cid-xD79YnMtIz .hidden {
  display: none;
}
.cid-sRX6LQ2GcL .navbar-dropdown {
  position: relative !important;
}
.cid-sRX6LQ2GcL .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-sRX6LQ2GcL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sRX6LQ2GcL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sRX6LQ2GcL .dropdown-item:hover,
.cid-sRX6LQ2GcL .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-sRX6LQ2GcL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sRX6LQ2GcL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sRX6LQ2GcL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sRX6LQ2GcL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sRX6LQ2GcL .nav-link {
  position: relative;
}
.cid-sRX6LQ2GcL .container {
  display: flex;
  margin: auto;
}
.cid-sRX6LQ2GcL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sRX6LQ2GcL .dropdown-menu,
.cid-sRX6LQ2GcL .navbar.opened {
  background: #cc3300 !important;
}
.cid-sRX6LQ2GcL .nav-item:focus,
.cid-sRX6LQ2GcL .nav-link:focus {
  outline: none;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sRX6LQ2GcL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sRX6LQ2GcL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sRX6LQ2GcL .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: #cc3300;
}
.cid-sRX6LQ2GcL .navbar.opened {
  transition: all 0.3s;
}
.cid-sRX6LQ2GcL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sRX6LQ2GcL .navbar .navbar-logo img {
  width: auto;
}
.cid-sRX6LQ2GcL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sRX6LQ2GcL .navbar.collapsed {
  justify-content: center;
}
.cid-sRX6LQ2GcL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sRX6LQ2GcL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sRX6LQ2GcL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.2rem);
  }
}
.cid-sRX6LQ2GcL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sRX6LQ2GcL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sRX6LQ2GcL .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-sRX6LQ2GcL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sRX6LQ2GcL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sRX6LQ2GcL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sRX6LQ2GcL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sRX6LQ2GcL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sRX6LQ2GcL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sRX6LQ2GcL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sRX6LQ2GcL .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-sRX6LQ2GcL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sRX6LQ2GcL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sRX6LQ2GcL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sRX6LQ2GcL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sRX6LQ2GcL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sRX6LQ2GcL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sRX6LQ2GcL .navbar.navbar-short {
  min-height: 60px;
}
.cid-sRX6LQ2GcL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sRX6LQ2GcL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sRX6LQ2GcL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sRX6LQ2GcL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sRX6LQ2GcL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sRX6LQ2GcL .dropdown-item.active,
.cid-sRX6LQ2GcL .dropdown-item:active {
  background-color: transparent;
}
.cid-sRX6LQ2GcL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sRX6LQ2GcL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sRX6LQ2GcL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sRX6LQ2GcL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cc3300;
}
.cid-sRX6LQ2GcL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sRX6LQ2GcL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sRX6LQ2GcL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sRX6LQ2GcL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sRX6LQ2GcL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sRX6LQ2GcL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sRX6LQ2GcL .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-sRX6LQ2GcL .navbar {
    height: 70px;
  }
  .cid-sRX6LQ2GcL .navbar.opened {
    height: auto;
  }
  .cid-sRX6LQ2GcL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rJN5s0Vwxa {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-1920x1280.webp");
}
.cid-srlkjoO5Ps {
  padding-top: 30px;
  padding-bottom: 90px;
  background-color: #cc3300;
}
.cid-srlkjoO5Ps .rowflexrev {
  display: -webkit-flex;
}
.cid-srlkjoO5Ps .title {
  margin-bottom: 2rem;
}
.cid-srlkjoO5Ps .mbr-section-subtitle {
  color: #ffffff;
}
.cid-srlkjoO5Ps textarea.form-control {
  min-height: 188px;
}
.cid-srlkjoO5Ps LABEL {
  color: #232323;
}
.cid-srlkjoO5Ps .mbr-section-terms {
  text-align: center;
  color: #232323;
  margin-bottom: 0px;
}
.cid-srlkjoO5Ps .mbr-section-labels {
  color: #ffffff;
  padding: 0;
  margin-bottom: .357em;
  text-align: left;
}
.cid-srlkjoO5Ps .mbr-section-autorespond {
  text-align: center;
  color: #232323;
  margin-bottom: 0px;
}
.cid-srlkjoO5Ps .alert {
  margin-bottom: 0;
}
.cid-srlkjoO5Ps .alert-success {
  background-color: #70c770;
  color: #ffffff;
}
.cid-srlkjoO5Ps .alert-danger {
  background-color: #ff4a52;
  color: #ffffff;
}
.cid-srlkjoO5Ps .btn {
  display: inline-flex;
}
.cid-srlkjoO5Ps .hidden {
  display: none;
}
.cid-srlkjoO5Ps H2 {
  color: #ffffff;
}
.cid-uPYC7lq48Z {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sdR8uPC5U4 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #cc3300;
}
@media (max-width: 767px) {
  .cid-sdR8uPC5U4 .content {
    text-align: center;
  }
  .cid-sdR8uPC5U4 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sdR8uPC5U4 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-sdR8uPC5U4 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sdR8uPC5U4 .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-sdR8uPC5U4 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sdR8uPC5U4 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-sdR8uPC5U4 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sdR8uPC5U4 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-sdR8uPC5U4 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sdR8uPC5U4 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sdR8uPC5U4 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sdR8uPC5U4 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sdR8uPC5U4 P {
  color: #ffffff;
}
.cid-sRX6LQ2GcL .navbar-dropdown {
  position: relative !important;
}
.cid-sRX6LQ2GcL .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-sRX6LQ2GcL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sRX6LQ2GcL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sRX6LQ2GcL .dropdown-item:hover,
.cid-sRX6LQ2GcL .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-sRX6LQ2GcL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sRX6LQ2GcL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sRX6LQ2GcL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sRX6LQ2GcL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sRX6LQ2GcL .nav-link {
  position: relative;
}
.cid-sRX6LQ2GcL .container {
  display: flex;
  margin: auto;
}
.cid-sRX6LQ2GcL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sRX6LQ2GcL .dropdown-menu,
.cid-sRX6LQ2GcL .navbar.opened {
  background: #cc3300 !important;
}
.cid-sRX6LQ2GcL .nav-item:focus,
.cid-sRX6LQ2GcL .nav-link:focus {
  outline: none;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sRX6LQ2GcL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sRX6LQ2GcL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sRX6LQ2GcL .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: #cc3300;
}
.cid-sRX6LQ2GcL .navbar.opened {
  transition: all 0.3s;
}
.cid-sRX6LQ2GcL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sRX6LQ2GcL .navbar .navbar-logo img {
  width: auto;
}
.cid-sRX6LQ2GcL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sRX6LQ2GcL .navbar.collapsed {
  justify-content: center;
}
.cid-sRX6LQ2GcL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sRX6LQ2GcL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sRX6LQ2GcL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.2rem);
  }
}
.cid-sRX6LQ2GcL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sRX6LQ2GcL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sRX6LQ2GcL .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-sRX6LQ2GcL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sRX6LQ2GcL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sRX6LQ2GcL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sRX6LQ2GcL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sRX6LQ2GcL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sRX6LQ2GcL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sRX6LQ2GcL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sRX6LQ2GcL .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-sRX6LQ2GcL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sRX6LQ2GcL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sRX6LQ2GcL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sRX6LQ2GcL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sRX6LQ2GcL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sRX6LQ2GcL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sRX6LQ2GcL .navbar.navbar-short {
  min-height: 60px;
}
.cid-sRX6LQ2GcL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sRX6LQ2GcL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sRX6LQ2GcL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sRX6LQ2GcL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sRX6LQ2GcL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sRX6LQ2GcL .dropdown-item.active,
.cid-sRX6LQ2GcL .dropdown-item:active {
  background-color: transparent;
}
.cid-sRX6LQ2GcL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sRX6LQ2GcL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sRX6LQ2GcL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sRX6LQ2GcL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cc3300;
}
.cid-sRX6LQ2GcL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sRX6LQ2GcL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sRX6LQ2GcL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sRX6LQ2GcL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sRX6LQ2GcL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sRX6LQ2GcL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sRX6LQ2GcL .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-sRX6LQ2GcL .navbar {
    height: 70px;
  }
  .cid-sRX6LQ2GcL .navbar.opened {
    height: auto;
  }
  .cid-sRX6LQ2GcL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rJN8awn9lT {
  padding-top: 135px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/whatsapp-image-2019-12-05-at-14.51.49-1152x864.webp");
}
.cid-rJN8awZgHR {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rJN8awZgHR .line {
  background-color: #cc3300;
  color: #cc3300;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-rJN8awZgHR .section-text {
  padding: 2rem 0;
}
.cid-rJN8awZgHR .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-rJN8awZgHR .inner-container {
    width: 100% !important;
  }
}
.cid-siLlMEK06H {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uTcTpVeDTR {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uTcTpVeDTR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTcTpVeDTR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTcTpVeDTR .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-uTcTpVeDTR .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-uTcTpVeDTR .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uTcTpVeDTR .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uTcTpVeDTR .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uTcTpVeDTR .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-uTcTpVeDTR .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-uTcTpVeDTR .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sUKUtR3oOl {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sUKUtR3oOl .rowflexrev {
  display: -webkit-flex;
}
.cid-sUKUtR3oOl .title {
  margin-bottom: 2rem;
}
.cid-sUKUtR3oOl .mbr-section-subtitle {
  color: #767676;
}
.cid-sUKUtR3oOl textarea.form-control {
  min-height: 188px;
}
.cid-sUKUtR3oOl LABEL {
  color: #232323;
}
.cid-sUKUtR3oOl .mbr-section-terms {
  text-align: center;
  color: #232323;
  margin-bottom: 0px;
}
.cid-sUKUtR3oOl .mbr-section-labels {
  color: #232323;
  padding: 0;
  margin-bottom: .357em;
  text-align: left;
}
.cid-sUKUtR3oOl .mbr-section-autorespond {
  text-align: center;
  color: #232323;
  margin-bottom: 0px;
}
.cid-sUKUtR3oOl .alert {
  margin-bottom: 0;
}
.cid-sUKUtR3oOl .alert-success {
  background-color: #70c770;
  color: #ffffff;
}
.cid-sUKUtR3oOl .alert-danger {
  background-color: #ff4a52;
  color: #ffffff;
}
.cid-sUKUtR3oOl .btn {
  display: inline-flex;
}
.cid-sUKUtR3oOl .hidden {
  display: none;
}
.cid-uOu4kcr7UN {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #cc3300;
}
@media (max-width: 767px) {
  .cid-uOu4kcr7UN .content {
    text-align: center;
  }
  .cid-uOu4kcr7UN .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uOu4kcr7UN .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-uOu4kcr7UN .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-uOu4kcr7UN .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-uOu4kcr7UN .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uOu4kcr7UN .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-uOu4kcr7UN .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uOu4kcr7UN .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uOu4kcr7UN .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uOu4kcr7UN .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uOu4kcr7UN .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uOu4kcr7UN .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uOu4kcr7UN P {
  color: #ffffff;
}
.cid-uOu4kcr7UN H5 {
  color: #ffffff;
}
.cid-sRX6LQ2GcL .navbar-dropdown {
  position: relative !important;
}
.cid-sRX6LQ2GcL .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-sRX6LQ2GcL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sRX6LQ2GcL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sRX6LQ2GcL .dropdown-item:hover,
.cid-sRX6LQ2GcL .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-sRX6LQ2GcL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sRX6LQ2GcL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sRX6LQ2GcL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sRX6LQ2GcL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sRX6LQ2GcL .nav-link {
  position: relative;
}
.cid-sRX6LQ2GcL .container {
  display: flex;
  margin: auto;
}
.cid-sRX6LQ2GcL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sRX6LQ2GcL .dropdown-menu,
.cid-sRX6LQ2GcL .navbar.opened {
  background: #cc3300 !important;
}
.cid-sRX6LQ2GcL .nav-item:focus,
.cid-sRX6LQ2GcL .nav-link:focus {
  outline: none;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sRX6LQ2GcL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sRX6LQ2GcL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sRX6LQ2GcL .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: #cc3300;
}
.cid-sRX6LQ2GcL .navbar.opened {
  transition: all 0.3s;
}
.cid-sRX6LQ2GcL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sRX6LQ2GcL .navbar .navbar-logo img {
  width: auto;
}
.cid-sRX6LQ2GcL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sRX6LQ2GcL .navbar.collapsed {
  justify-content: center;
}
.cid-sRX6LQ2GcL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sRX6LQ2GcL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sRX6LQ2GcL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.2rem);
  }
}
.cid-sRX6LQ2GcL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sRX6LQ2GcL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sRX6LQ2GcL .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-sRX6LQ2GcL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sRX6LQ2GcL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sRX6LQ2GcL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sRX6LQ2GcL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sRX6LQ2GcL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sRX6LQ2GcL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sRX6LQ2GcL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sRX6LQ2GcL .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-sRX6LQ2GcL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sRX6LQ2GcL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sRX6LQ2GcL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sRX6LQ2GcL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sRX6LQ2GcL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sRX6LQ2GcL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sRX6LQ2GcL .navbar.navbar-short {
  min-height: 60px;
}
.cid-sRX6LQ2GcL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sRX6LQ2GcL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sRX6LQ2GcL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sRX6LQ2GcL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sRX6LQ2GcL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sRX6LQ2GcL .dropdown-item.active,
.cid-sRX6LQ2GcL .dropdown-item:active {
  background-color: transparent;
}
.cid-sRX6LQ2GcL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sRX6LQ2GcL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sRX6LQ2GcL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sRX6LQ2GcL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cc3300;
}
.cid-sRX6LQ2GcL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sRX6LQ2GcL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sRX6LQ2GcL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sRX6LQ2GcL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sRX6LQ2GcL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sRX6LQ2GcL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sRX6LQ2GcL .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-sRX6LQ2GcL .navbar {
    height: 70px;
  }
  .cid-sRX6LQ2GcL .navbar.opened {
    height: auto;
  }
  .cid-sRX6LQ2GcL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rK9KE9EeNl {
  padding-top: 135px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/update1-1024x768.webp");
}
.cid-rK9KEa7XN0 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rK9KEa7XN0 .line {
  background-color: #cc3300;
  color: #cc3300;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-rK9KEa7XN0 .section-text {
  padding: 2rem 0;
}
.cid-rK9KEa7XN0 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-rK9KEa7XN0 .inner-container {
    width: 100% !important;
  }
}
.cid-rK9LKImoD7 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rK9LKImoD7 .mbr-text,
.cid-rK9LKImoD7 blockquote {
  color: #767676;
}
.cid-rK9LUiMzQT {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rK9LUiMzQT .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-rK9LUiMzQT .section-text {
  padding: 2rem 0;
}
.cid-rK9LUiMzQT .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-rK9LUiMzQT .inner-container {
    width: 100% !important;
  }
}
.cid-rK9KEauP1k {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rK9KEauP1k .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rK9KEauP1k .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rK9KEauP1k .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rK9KEauP1k .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rK9KEauP1k .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-rK9KEauP1k .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-rK9KEauP1k .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-rK9KEauP1k .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-rK9KEauP1k .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-rK9KEbyL55 {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rK9KEbyL55 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rK9KEbyL55 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rK9KEbyL55 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rK9KEbyL55 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rK9KEbyL55 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-rK9KEbyL55 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-rK9KEbyL55 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-rK9KEbyL55 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-rK9KEbyL55 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-sUKVIG1m2j {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sUKVIG1m2j .rowflexrev {
  display: -webkit-flex;
}
.cid-sUKVIG1m2j .title {
  margin-bottom: 2rem;
}
.cid-sUKVIG1m2j .mbr-section-subtitle {
  color: #767676;
}
.cid-sUKVIG1m2j textarea.form-control {
  min-height: 188px;
}
.cid-sUKVIG1m2j LABEL {
  color: #232323;
}
.cid-sUKVIG1m2j .mbr-section-terms {
  text-align: center;
  color: #232323;
  margin-bottom: 0px;
}
.cid-sUKVIG1m2j .mbr-section-labels {
  color: #232323;
  padding: 0;
  margin-bottom: .357em;
  text-align: left;
}
.cid-sUKVIG1m2j .mbr-section-autorespond {
  text-align: center;
  color: #232323;
  margin-bottom: 0px;
}
.cid-sUKVIG1m2j .alert {
  margin-bottom: 0;
}
.cid-sUKVIG1m2j .alert-success {
  background-color: #70c770;
  color: #ffffff;
}
.cid-sUKVIG1m2j .alert-danger {
  background-color: #ff4a52;
  color: #ffffff;
}
.cid-sUKVIG1m2j .btn {
  display: inline-flex;
}
.cid-sUKVIG1m2j .hidden {
  display: none;
}
.cid-sdR8rx9OBi {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #232323;
}
@media (max-width: 767px) {
  .cid-sdR8rx9OBi .content {
    text-align: center;
  }
  .cid-sdR8rx9OBi .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sdR8rx9OBi .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-sdR8rx9OBi .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sdR8rx9OBi .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-sdR8rx9OBi .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sdR8rx9OBi .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-sdR8rx9OBi .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sdR8rx9OBi .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-sdR8rx9OBi .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sdR8rx9OBi .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sdR8rx9OBi .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sdR8rx9OBi .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sdR8rx9OBi P {
  color: #ffffff;
}
.cid-sRX6LQ2GcL .navbar-dropdown {
  position: relative !important;
}
.cid-sRX6LQ2GcL .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-sRX6LQ2GcL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sRX6LQ2GcL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sRX6LQ2GcL .dropdown-item:hover,
.cid-sRX6LQ2GcL .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-sRX6LQ2GcL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sRX6LQ2GcL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sRX6LQ2GcL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sRX6LQ2GcL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sRX6LQ2GcL .nav-link {
  position: relative;
}
.cid-sRX6LQ2GcL .container {
  display: flex;
  margin: auto;
}
.cid-sRX6LQ2GcL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sRX6LQ2GcL .dropdown-menu,
.cid-sRX6LQ2GcL .navbar.opened {
  background: #cc3300 !important;
}
.cid-sRX6LQ2GcL .nav-item:focus,
.cid-sRX6LQ2GcL .nav-link:focus {
  outline: none;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sRX6LQ2GcL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sRX6LQ2GcL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sRX6LQ2GcL .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: #cc3300;
}
.cid-sRX6LQ2GcL .navbar.opened {
  transition: all 0.3s;
}
.cid-sRX6LQ2GcL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sRX6LQ2GcL .navbar .navbar-logo img {
  width: auto;
}
.cid-sRX6LQ2GcL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sRX6LQ2GcL .navbar.collapsed {
  justify-content: center;
}
.cid-sRX6LQ2GcL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sRX6LQ2GcL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sRX6LQ2GcL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.2rem);
  }
}
.cid-sRX6LQ2GcL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sRX6LQ2GcL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sRX6LQ2GcL .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-sRX6LQ2GcL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sRX6LQ2GcL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sRX6LQ2GcL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sRX6LQ2GcL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sRX6LQ2GcL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sRX6LQ2GcL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sRX6LQ2GcL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sRX6LQ2GcL .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-sRX6LQ2GcL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sRX6LQ2GcL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sRX6LQ2GcL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sRX6LQ2GcL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sRX6LQ2GcL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sRX6LQ2GcL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sRX6LQ2GcL .navbar.navbar-short {
  min-height: 60px;
}
.cid-sRX6LQ2GcL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sRX6LQ2GcL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sRX6LQ2GcL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sRX6LQ2GcL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sRX6LQ2GcL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sRX6LQ2GcL .dropdown-item.active,
.cid-sRX6LQ2GcL .dropdown-item:active {
  background-color: transparent;
}
.cid-sRX6LQ2GcL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sRX6LQ2GcL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sRX6LQ2GcL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sRX6LQ2GcL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cc3300;
}
.cid-sRX6LQ2GcL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sRX6LQ2GcL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sRX6LQ2GcL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sRX6LQ2GcL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sRX6LQ2GcL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sRX6LQ2GcL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sRX6LQ2GcL .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-sRX6LQ2GcL .navbar {
    height: 70px;
  }
  .cid-sRX6LQ2GcL .navbar.opened {
    height: auto;
  }
  .cid-sRX6LQ2GcL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-se9KsmKYxe {
  padding-top: 135px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/whatsapp-image-2019-12-05-at-14.51.49-1152x864.webp");
}
.cid-se9Ksn5CJj {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-se9Ksn5CJj .line {
  background-color: #cc3300;
  color: #cc3300;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-se9Ksn5CJj .section-text {
  padding: 2rem 0;
}
.cid-se9Ksn5CJj .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-se9Ksn5CJj .inner-container {
    width: 100% !important;
  }
}
.cid-se9KspGm3I {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-se9KspGm3I .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-se9KspGm3I .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-se9KspGm3I .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-se9KspGm3I .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-se9KspGm3I .row > .row {
  display: block;
}
.cid-se9KspGm3I .mbr-gallery-item {
  width: 100%;
}
.cid-se9KspGm3I .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-se9KspGm3I .mbr-gallery-item > div {
  position: relative;
}
.cid-se9KspGm3I .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-se9KspGm3I .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-se9KspGm3I .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-se9KspGm3I .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-sUKVFrYbpK {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sUKVFrYbpK .rowflexrev {
  display: -webkit-flex;
}
.cid-sUKVFrYbpK .title {
  margin-bottom: 2rem;
}
.cid-sUKVFrYbpK .mbr-section-subtitle {
  color: #767676;
}
.cid-sUKVFrYbpK textarea.form-control {
  min-height: 188px;
}
.cid-sUKVFrYbpK LABEL {
  color: #232323;
}
.cid-sUKVFrYbpK .mbr-section-terms {
  text-align: center;
  color: #232323;
  margin-bottom: 0px;
}
.cid-sUKVFrYbpK .mbr-section-labels {
  color: #232323;
  padding: 0;
  margin-bottom: .357em;
  text-align: left;
}
.cid-sUKVFrYbpK .mbr-section-autorespond {
  text-align: center;
  color: #232323;
  margin-bottom: 0px;
}
.cid-sUKVFrYbpK .alert {
  margin-bottom: 0;
}
.cid-sUKVFrYbpK .alert-success {
  background-color: #70c770;
  color: #ffffff;
}
.cid-sUKVFrYbpK .alert-danger {
  background-color: #ff4a52;
  color: #ffffff;
}
.cid-sUKVFrYbpK .btn {
  display: inline-flex;
}
.cid-sUKVFrYbpK .hidden {
  display: none;
}
.cid-se9KsqHyU4 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #cc3300;
}
@media (max-width: 767px) {
  .cid-se9KsqHyU4 .content {
    text-align: center;
  }
  .cid-se9KsqHyU4 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-se9KsqHyU4 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-se9KsqHyU4 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-se9KsqHyU4 .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-se9KsqHyU4 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-se9KsqHyU4 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-se9KsqHyU4 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-se9KsqHyU4 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-se9KsqHyU4 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-se9KsqHyU4 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-se9KsqHyU4 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-se9KsqHyU4 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-se9KsqHyU4 P {
  color: #ffffff;
}
.cid-sRX6LQ2GcL .navbar-dropdown {
  position: relative !important;
}
.cid-sRX6LQ2GcL .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-sRX6LQ2GcL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sRX6LQ2GcL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sRX6LQ2GcL .dropdown-item:hover,
.cid-sRX6LQ2GcL .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-sRX6LQ2GcL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sRX6LQ2GcL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sRX6LQ2GcL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sRX6LQ2GcL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sRX6LQ2GcL .nav-link {
  position: relative;
}
.cid-sRX6LQ2GcL .container {
  display: flex;
  margin: auto;
}
.cid-sRX6LQ2GcL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sRX6LQ2GcL .dropdown-menu,
.cid-sRX6LQ2GcL .navbar.opened {
  background: #cc3300 !important;
}
.cid-sRX6LQ2GcL .nav-item:focus,
.cid-sRX6LQ2GcL .nav-link:focus {
  outline: none;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sRX6LQ2GcL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sRX6LQ2GcL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sRX6LQ2GcL .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: #cc3300;
}
.cid-sRX6LQ2GcL .navbar.opened {
  transition: all 0.3s;
}
.cid-sRX6LQ2GcL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sRX6LQ2GcL .navbar .navbar-logo img {
  width: auto;
}
.cid-sRX6LQ2GcL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sRX6LQ2GcL .navbar.collapsed {
  justify-content: center;
}
.cid-sRX6LQ2GcL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sRX6LQ2GcL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sRX6LQ2GcL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.2rem);
  }
}
.cid-sRX6LQ2GcL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sRX6LQ2GcL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sRX6LQ2GcL .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-sRX6LQ2GcL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sRX6LQ2GcL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sRX6LQ2GcL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sRX6LQ2GcL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sRX6LQ2GcL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sRX6LQ2GcL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sRX6LQ2GcL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sRX6LQ2GcL .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-sRX6LQ2GcL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sRX6LQ2GcL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sRX6LQ2GcL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sRX6LQ2GcL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sRX6LQ2GcL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sRX6LQ2GcL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sRX6LQ2GcL .navbar.navbar-short {
  min-height: 60px;
}
.cid-sRX6LQ2GcL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sRX6LQ2GcL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sRX6LQ2GcL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sRX6LQ2GcL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sRX6LQ2GcL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sRX6LQ2GcL .dropdown-item.active,
.cid-sRX6LQ2GcL .dropdown-item:active {
  background-color: transparent;
}
.cid-sRX6LQ2GcL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sRX6LQ2GcL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sRX6LQ2GcL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sRX6LQ2GcL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cc3300;
}
.cid-sRX6LQ2GcL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sRX6LQ2GcL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sRX6LQ2GcL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sRX6LQ2GcL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sRX6LQ2GcL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sRX6LQ2GcL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sRX6LQ2GcL .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-sRX6LQ2GcL .navbar {
    height: 70px;
  }
  .cid-sRX6LQ2GcL .navbar.opened {
    height: auto;
  }
  .cid-sRX6LQ2GcL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sjUcYLjfYw {
  padding-top: 135px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/whatsapp-image-2019-12-05-at-14.51.49-1152x864.webp");
}
.cid-sjUcYLYSiL {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sjUcYLYSiL .line {
  background-color: #cc3300;
  color: #cc3300;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sjUcYLYSiL .section-text {
  padding: 2rem 0;
}
.cid-sjUcYLYSiL .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sjUcYLYSiL .inner-container {
    width: 100% !important;
  }
}
.cid-sjUcYMeAfk {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-sjUcYMeAfk .card-img {
  background-color: #fff;
}
.cid-sjUcYMeAfk .card {
  align-self: stretch;
}
.cid-sjUcYMeAfk .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-sjUcYMeAfk h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sjUcYMeAfk p {
  text-align: left;
}
.cid-sjUcYMeAfk .mbr-text {
  color: #767676;
}
.cid-sjUcYMeAfk .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-sjUcYMeAfk .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-sjUcYMeAfk .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-sjUcYMeAfk .card-title {
  color: #cc3300;
}
.cid-sjUcYNb3sA {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-sjUcYNb3sA .card-img {
  background-color: #fff;
}
.cid-sjUcYNb3sA .card {
  align-self: stretch;
}
.cid-sjUcYNb3sA .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-sjUcYNb3sA h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sjUcYNb3sA p {
  text-align: left;
}
.cid-sjUcYNb3sA .mbr-text {
  color: #767676;
}
.cid-sjUcYNb3sA .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-sjUcYNb3sA .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-sjUcYNb3sA .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-sjUcYNb3sA .card-title {
  color: #cc3300;
}
.cid-sUKUKzjxCW {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sUKUKzjxCW .rowflexrev {
  display: -webkit-flex;
}
.cid-sUKUKzjxCW .title {
  margin-bottom: 2rem;
}
.cid-sUKUKzjxCW .mbr-section-subtitle {
  color: #767676;
}
.cid-sUKUKzjxCW textarea.form-control {
  min-height: 188px;
}
.cid-sUKUKzjxCW LABEL {
  color: #232323;
}
.cid-sUKUKzjxCW .mbr-section-terms {
  text-align: center;
  color: #232323;
  margin-bottom: 0px;
}
.cid-sUKUKzjxCW .mbr-section-labels {
  color: #232323;
  padding: 0;
  margin-bottom: .357em;
  text-align: left;
}
.cid-sUKUKzjxCW .mbr-section-autorespond {
  text-align: center;
  color: #232323;
  margin-bottom: 0px;
}
.cid-sUKUKzjxCW .alert {
  margin-bottom: 0;
}
.cid-sUKUKzjxCW .alert-success {
  background-color: #70c770;
  color: #ffffff;
}
.cid-sUKUKzjxCW .alert-danger {
  background-color: #ff4a52;
  color: #ffffff;
}
.cid-sUKUKzjxCW .btn {
  display: inline-flex;
}
.cid-sUKUKzjxCW .hidden {
  display: none;
}
.cid-sjUcYQQehm {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #cc3300;
}
.cid-sjUcYQQehm .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sjUcYQQehm .btn {
  margin: 0 0 .5rem 0;
}
.cid-sjUcYRcO0q {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #cc3300;
}
@media (max-width: 767px) {
  .cid-sjUcYRcO0q .content {
    text-align: center;
  }
  .cid-sjUcYRcO0q .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sjUcYRcO0q .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-sjUcYRcO0q .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sjUcYRcO0q .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-sjUcYRcO0q .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sjUcYRcO0q .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-sjUcYRcO0q .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sjUcYRcO0q .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-sjUcYRcO0q .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sjUcYRcO0q .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sjUcYRcO0q .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sjUcYRcO0q .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sjUcYRcO0q P {
  color: #ffffff;
}
.cid-sRX6LQ2GcL .navbar-dropdown {
  position: relative !important;
}
.cid-sRX6LQ2GcL .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-sRX6LQ2GcL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sRX6LQ2GcL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sRX6LQ2GcL .dropdown-item:hover,
.cid-sRX6LQ2GcL .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-sRX6LQ2GcL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sRX6LQ2GcL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sRX6LQ2GcL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sRX6LQ2GcL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sRX6LQ2GcL .nav-link {
  position: relative;
}
.cid-sRX6LQ2GcL .container {
  display: flex;
  margin: auto;
}
.cid-sRX6LQ2GcL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sRX6LQ2GcL .dropdown-menu,
.cid-sRX6LQ2GcL .navbar.opened {
  background: #cc3300 !important;
}
.cid-sRX6LQ2GcL .nav-item:focus,
.cid-sRX6LQ2GcL .nav-link:focus {
  outline: none;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sRX6LQ2GcL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sRX6LQ2GcL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sRX6LQ2GcL .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: #cc3300;
}
.cid-sRX6LQ2GcL .navbar.opened {
  transition: all 0.3s;
}
.cid-sRX6LQ2GcL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sRX6LQ2GcL .navbar .navbar-logo img {
  width: auto;
}
.cid-sRX6LQ2GcL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sRX6LQ2GcL .navbar.collapsed {
  justify-content: center;
}
.cid-sRX6LQ2GcL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sRX6LQ2GcL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sRX6LQ2GcL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.2rem);
  }
}
.cid-sRX6LQ2GcL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sRX6LQ2GcL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sRX6LQ2GcL .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-sRX6LQ2GcL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sRX6LQ2GcL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sRX6LQ2GcL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sRX6LQ2GcL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sRX6LQ2GcL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sRX6LQ2GcL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sRX6LQ2GcL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sRX6LQ2GcL .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-sRX6LQ2GcL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sRX6LQ2GcL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sRX6LQ2GcL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sRX6LQ2GcL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sRX6LQ2GcL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sRX6LQ2GcL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sRX6LQ2GcL .navbar.navbar-short {
  min-height: 60px;
}
.cid-sRX6LQ2GcL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sRX6LQ2GcL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sRX6LQ2GcL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sRX6LQ2GcL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sRX6LQ2GcL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sRX6LQ2GcL .dropdown-item.active,
.cid-sRX6LQ2GcL .dropdown-item:active {
  background-color: transparent;
}
.cid-sRX6LQ2GcL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sRX6LQ2GcL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sRX6LQ2GcL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sRX6LQ2GcL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cc3300;
}
.cid-sRX6LQ2GcL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sRX6LQ2GcL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sRX6LQ2GcL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sRX6LQ2GcL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sRX6LQ2GcL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sRX6LQ2GcL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sRX6LQ2GcL .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-sRX6LQ2GcL .navbar {
    height: 70px;
  }
  .cid-sRX6LQ2GcL .navbar.opened {
    height: auto;
  }
  .cid-sRX6LQ2GcL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sjUfOgyV8n {
  padding-top: 135px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/whatsapp-image-2019-12-05-at-14.51.49-1152x864.webp");
}
.cid-sjUfOgXNHl {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sjUfOgXNHl .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sjUfOgXNHl .section-text {
  padding: 2rem 0;
}
.cid-sjUfOgXNHl .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sjUfOgXNHl .inner-container {
    width: 100% !important;
  }
}
.cid-sv8mUs2IXt {
  padding-top: 75px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sv8mUs2IXt .mbr-section-subtitle {
  color: #767676;
}
.cid-sv8mUs2IXt .btn {
  margin: 0 0 .5rem 0;
}
.cid-sjUfOhcZzV {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-sjUfOhcZzV .card-img {
  background-color: #fff;
}
.cid-sjUfOhcZzV .card {
  align-self: stretch;
}
.cid-sjUfOhcZzV .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-sjUfOhcZzV h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sjUfOhcZzV p {
  text-align: left;
}
.cid-sjUfOhcZzV .mbr-text {
  color: #767676;
}
.cid-sjUfOhcZzV .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-sjUfOhcZzV .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-sjUfOhcZzV .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-sjUfOhcZzV .card-title {
  color: #cc3300;
  text-align: center;
}
.cid-sklECMBXZ1 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-sklECMBXZ1 .card-img {
  background-color: #fff;
}
.cid-sklECMBXZ1 .card {
  align-self: stretch;
}
.cid-sklECMBXZ1 .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-sklECMBXZ1 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sklECMBXZ1 p {
  text-align: left;
}
.cid-sklECMBXZ1 .mbr-text {
  color: #767676;
}
.cid-sklECMBXZ1 .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-sklECMBXZ1 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-sklECMBXZ1 .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-sklECMBXZ1 .card-title {
  color: #cc3300;
  text-align: center;
}
.cid-sklFwF04hU {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-sklFwF04hU .card-img {
  background-color: #fff;
}
.cid-sklFwF04hU .card {
  align-self: stretch;
}
.cid-sklFwF04hU .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-sklFwF04hU h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sklFwF04hU p {
  text-align: left;
}
.cid-sklFwF04hU .mbr-text {
  color: #767676;
}
.cid-sklFwF04hU .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-sklFwF04hU .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-sklFwF04hU .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-sklFwF04hU .card-title {
  color: #cc3300;
  text-align: center;
}
.cid-sklGRZA7T8 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-sklGRZA7T8 .card-img {
  background-color: #fff;
}
.cid-sklGRZA7T8 .card {
  align-self: stretch;
}
.cid-sklGRZA7T8 .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-sklGRZA7T8 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sklGRZA7T8 p {
  text-align: left;
}
.cid-sklGRZA7T8 .mbr-text {
  color: #767676;
}
.cid-sklGRZA7T8 .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-sklGRZA7T8 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-sklGRZA7T8 .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-sklGRZA7T8 .card-title {
  color: #cc3300;
  text-align: center;
}
.cid-sklHBbmGdY {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-sklHBbmGdY .card-img {
  background-color: #fff;
}
.cid-sklHBbmGdY .card {
  align-self: stretch;
}
.cid-sklHBbmGdY .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-sklHBbmGdY h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sklHBbmGdY p {
  text-align: left;
}
.cid-sklHBbmGdY .mbr-text {
  color: #767676;
}
.cid-sklHBbmGdY .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-sklHBbmGdY .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-sklHBbmGdY .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-sklHBbmGdY .card-title {
  color: #cc3300;
  text-align: center;
}
.cid-sklHBbmGdY .card-title P {
  text-align: center;
}
.cid-sUKUMNypfx {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sUKUMNypfx .rowflexrev {
  display: -webkit-flex;
}
.cid-sUKUMNypfx .title {
  margin-bottom: 2rem;
}
.cid-sUKUMNypfx .mbr-section-subtitle {
  color: #767676;
}
.cid-sUKUMNypfx textarea.form-control {
  min-height: 188px;
}
.cid-sUKUMNypfx LABEL {
  color: #232323;
}
.cid-sUKUMNypfx .mbr-section-terms {
  text-align: center;
  color: #232323;
  margin-bottom: 0px;
}
.cid-sUKUMNypfx .mbr-section-labels {
  color: #232323;
  padding: 0;
  margin-bottom: .357em;
  text-align: left;
}
.cid-sUKUMNypfx .mbr-section-autorespond {
  text-align: center;
  color: #232323;
  margin-bottom: 0px;
}
.cid-sUKUMNypfx .alert {
  margin-bottom: 0;
}
.cid-sUKUMNypfx .alert-success {
  background-color: #70c770;
  color: #ffffff;
}
.cid-sUKUMNypfx .alert-danger {
  background-color: #ff4a52;
  color: #ffffff;
}
.cid-sUKUMNypfx .btn {
  display: inline-flex;
}
.cid-sUKUMNypfx .hidden {
  display: none;
}
.cid-sv8o6eIe0i {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #cc3300;
}
.cid-sv8o6eIe0i .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sv8o6eIe0i .section-text {
  padding: 2rem 0;
}
.cid-sv8o6eIe0i .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sv8o6eIe0i .inner-container {
    width: 100% !important;
  }
}
.cid-sv8k4vZXOD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sjUfOimSSO {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #cc3300;
}
.cid-sjUfOimSSO .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sjUfOimSSO .btn {
  margin: 0 0 .5rem 0;
}
.cid-sjUfOiCNWV {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #cc3300;
}
@media (max-width: 767px) {
  .cid-sjUfOiCNWV .content {
    text-align: center;
  }
  .cid-sjUfOiCNWV .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sjUfOiCNWV .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-sjUfOiCNWV .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sjUfOiCNWV .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-sjUfOiCNWV .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sjUfOiCNWV .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-sjUfOiCNWV .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sjUfOiCNWV .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-sjUfOiCNWV .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sjUfOiCNWV .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sjUfOiCNWV .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sjUfOiCNWV .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sjUfOiCNWV P {
  color: #ffffff;
}
.cid-sRX6LQ2GcL .navbar-dropdown {
  position: relative !important;
}
.cid-sRX6LQ2GcL .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-sRX6LQ2GcL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sRX6LQ2GcL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sRX6LQ2GcL .dropdown-item:hover,
.cid-sRX6LQ2GcL .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-sRX6LQ2GcL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sRX6LQ2GcL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sRX6LQ2GcL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sRX6LQ2GcL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sRX6LQ2GcL .nav-link {
  position: relative;
}
.cid-sRX6LQ2GcL .container {
  display: flex;
  margin: auto;
}
.cid-sRX6LQ2GcL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sRX6LQ2GcL .dropdown-menu,
.cid-sRX6LQ2GcL .navbar.opened {
  background: #cc3300 !important;
}
.cid-sRX6LQ2GcL .nav-item:focus,
.cid-sRX6LQ2GcL .nav-link:focus {
  outline: none;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sRX6LQ2GcL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sRX6LQ2GcL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sRX6LQ2GcL .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: #cc3300;
}
.cid-sRX6LQ2GcL .navbar.opened {
  transition: all 0.3s;
}
.cid-sRX6LQ2GcL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sRX6LQ2GcL .navbar .navbar-logo img {
  width: auto;
}
.cid-sRX6LQ2GcL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sRX6LQ2GcL .navbar.collapsed {
  justify-content: center;
}
.cid-sRX6LQ2GcL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sRX6LQ2GcL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sRX6LQ2GcL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.2rem);
  }
}
.cid-sRX6LQ2GcL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sRX6LQ2GcL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sRX6LQ2GcL .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-sRX6LQ2GcL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sRX6LQ2GcL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sRX6LQ2GcL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sRX6LQ2GcL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sRX6LQ2GcL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sRX6LQ2GcL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sRX6LQ2GcL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sRX6LQ2GcL .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-sRX6LQ2GcL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sRX6LQ2GcL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sRX6LQ2GcL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sRX6LQ2GcL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sRX6LQ2GcL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sRX6LQ2GcL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sRX6LQ2GcL .navbar.navbar-short {
  min-height: 60px;
}
.cid-sRX6LQ2GcL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sRX6LQ2GcL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sRX6LQ2GcL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sRX6LQ2GcL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sRX6LQ2GcL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sRX6LQ2GcL .dropdown-item.active,
.cid-sRX6LQ2GcL .dropdown-item:active {
  background-color: transparent;
}
.cid-sRX6LQ2GcL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sRX6LQ2GcL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sRX6LQ2GcL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sRX6LQ2GcL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cc3300;
}
.cid-sRX6LQ2GcL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sRX6LQ2GcL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sRX6LQ2GcL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sRX6LQ2GcL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sRX6LQ2GcL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sRX6LQ2GcL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sRX6LQ2GcL .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-sRX6LQ2GcL .navbar {
    height: 70px;
  }
  .cid-sRX6LQ2GcL .navbar.opened {
    height: auto;
  }
  .cid-sRX6LQ2GcL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sklMKqWfUH {
  padding-top: 135px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/whatsapp-image-2019-12-05-at-14.51.49-1152x864.webp");
}
.cid-sklMKreX25 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sklMKreX25 .line {
  background-color: #cc3300;
  color: #cc3300;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sklMKreX25 .section-text {
  padding: 2rem 0;
}
.cid-sklMKreX25 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sklMKreX25 .inner-container {
    width: 100% !important;
  }
}
.cid-sklMKrubJK {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-sklMKrubJK .card-img {
  background-color: #fff;
}
.cid-sklMKrubJK .card {
  align-self: stretch;
}
.cid-sklMKrubJK .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-sklMKrubJK h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sklMKrubJK p {
  text-align: left;
}
.cid-sklMKrubJK .mbr-text {
  color: #767676;
}
.cid-sklMKrubJK .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-sklMKrubJK .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-sklMKrubJK .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-sklMKrubJK .card-title {
  color: #cc3300;
}
.cid-sklOFKfHm1 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-sklOFKfHm1 .card-img {
  background-color: #fff;
}
.cid-sklOFKfHm1 .card {
  align-self: stretch;
}
.cid-sklOFKfHm1 .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-sklOFKfHm1 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sklOFKfHm1 p {
  text-align: left;
}
.cid-sklOFKfHm1 .mbr-text {
  color: #767676;
}
.cid-sklOFKfHm1 .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-sklOFKfHm1 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-sklOFKfHm1 .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-sklOFKfHm1 .card-title {
  color: #cc3300;
}
.cid-sUKUT15SY2 {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sUKUT15SY2 .rowflexrev {
  display: -webkit-flex;
}
.cid-sUKUT15SY2 .title {
  margin-bottom: 2rem;
}
.cid-sUKUT15SY2 .mbr-section-subtitle {
  color: #767676;
}
.cid-sUKUT15SY2 textarea.form-control {
  min-height: 188px;
}
.cid-sUKUT15SY2 LABEL {
  color: #232323;
}
.cid-sUKUT15SY2 .mbr-section-terms {
  text-align: center;
  color: #232323;
  margin-bottom: 0px;
}
.cid-sUKUT15SY2 .mbr-section-labels {
  color: #232323;
  padding: 0;
  margin-bottom: .357em;
  text-align: left;
}
.cid-sUKUT15SY2 .mbr-section-autorespond {
  text-align: center;
  color: #232323;
  margin-bottom: 0px;
}
.cid-sUKUT15SY2 .alert {
  margin-bottom: 0;
}
.cid-sUKUT15SY2 .alert-success {
  background-color: #70c770;
  color: #ffffff;
}
.cid-sUKUT15SY2 .alert-danger {
  background-color: #ff4a52;
  color: #ffffff;
}
.cid-sUKUT15SY2 .btn {
  display: inline-flex;
}
.cid-sUKUT15SY2 .hidden {
  display: none;
}
.cid-sklMKur7JR {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #cc3300;
}
.cid-sklMKur7JR .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sklMKur7JR .btn {
  margin: 0 0 .5rem 0;
}
.cid-sklMKuI3LV {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #cc3300;
}
@media (max-width: 767px) {
  .cid-sklMKuI3LV .content {
    text-align: center;
  }
  .cid-sklMKuI3LV .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sklMKuI3LV .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-sklMKuI3LV .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sklMKuI3LV .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-sklMKuI3LV .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sklMKuI3LV .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-sklMKuI3LV .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sklMKuI3LV .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-sklMKuI3LV .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sklMKuI3LV .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sklMKuI3LV .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sklMKuI3LV .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sklMKuI3LV P {
  color: #ffffff;
}
.cid-sRX6LQ2GcL .navbar-dropdown {
  position: relative !important;
}
.cid-sRX6LQ2GcL .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-sRX6LQ2GcL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sRX6LQ2GcL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sRX6LQ2GcL .dropdown-item:hover,
.cid-sRX6LQ2GcL .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-sRX6LQ2GcL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sRX6LQ2GcL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sRX6LQ2GcL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sRX6LQ2GcL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sRX6LQ2GcL .nav-link {
  position: relative;
}
.cid-sRX6LQ2GcL .container {
  display: flex;
  margin: auto;
}
.cid-sRX6LQ2GcL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sRX6LQ2GcL .dropdown-menu,
.cid-sRX6LQ2GcL .navbar.opened {
  background: #cc3300 !important;
}
.cid-sRX6LQ2GcL .nav-item:focus,
.cid-sRX6LQ2GcL .nav-link:focus {
  outline: none;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sRX6LQ2GcL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sRX6LQ2GcL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sRX6LQ2GcL .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: #cc3300;
}
.cid-sRX6LQ2GcL .navbar.opened {
  transition: all 0.3s;
}
.cid-sRX6LQ2GcL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sRX6LQ2GcL .navbar .navbar-logo img {
  width: auto;
}
.cid-sRX6LQ2GcL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sRX6LQ2GcL .navbar.collapsed {
  justify-content: center;
}
.cid-sRX6LQ2GcL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sRX6LQ2GcL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sRX6LQ2GcL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.2rem);
  }
}
.cid-sRX6LQ2GcL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sRX6LQ2GcL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sRX6LQ2GcL .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-sRX6LQ2GcL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sRX6LQ2GcL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sRX6LQ2GcL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sRX6LQ2GcL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sRX6LQ2GcL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sRX6LQ2GcL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sRX6LQ2GcL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sRX6LQ2GcL .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-sRX6LQ2GcL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sRX6LQ2GcL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sRX6LQ2GcL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sRX6LQ2GcL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sRX6LQ2GcL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sRX6LQ2GcL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sRX6LQ2GcL .navbar.navbar-short {
  min-height: 60px;
}
.cid-sRX6LQ2GcL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sRX6LQ2GcL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sRX6LQ2GcL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sRX6LQ2GcL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sRX6LQ2GcL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sRX6LQ2GcL .dropdown-item.active,
.cid-sRX6LQ2GcL .dropdown-item:active {
  background-color: transparent;
}
.cid-sRX6LQ2GcL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sRX6LQ2GcL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sRX6LQ2GcL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sRX6LQ2GcL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cc3300;
}
.cid-sRX6LQ2GcL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sRX6LQ2GcL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sRX6LQ2GcL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sRX6LQ2GcL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sRX6LQ2GcL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sRX6LQ2GcL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sRX6LQ2GcL .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-sRX6LQ2GcL .navbar {
    height: 70px;
  }
  .cid-sRX6LQ2GcL .navbar.opened {
    height: auto;
  }
  .cid-sRX6LQ2GcL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sklR5uSa3P {
  padding-top: 135px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/whatsapp-image-2019-12-05-at-14.51.49-1152x864.webp");
}
.cid-sklR5vb104 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sklR5vb104 .line {
  background-color: #cc3300;
  color: #cc3300;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sklR5vb104 .section-text {
  padding: 2rem 0;
}
.cid-sklR5vb104 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sklR5vb104 .inner-container {
    width: 100% !important;
  }
}
.cid-sklR5vqbfO {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-sklR5vqbfO .card-img {
  background-color: #fff;
}
.cid-sklR5vqbfO .card {
  align-self: stretch;
}
.cid-sklR5vqbfO .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-sklR5vqbfO h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sklR5vqbfO p {
  text-align: left;
}
.cid-sklR5vqbfO .mbr-text {
  color: #767676;
}
.cid-sklR5vqbfO .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-sklR5vqbfO .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-sklR5vqbfO .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-sklR5vqbfO .card-title {
  color: #cc3300;
}
.cid-sklSMJfX4Q {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-sklSMJfX4Q .card-img {
  background-color: #fff;
}
.cid-sklSMJfX4Q .card {
  align-self: stretch;
}
.cid-sklSMJfX4Q .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-sklSMJfX4Q h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sklSMJfX4Q p {
  text-align: left;
}
.cid-sklSMJfX4Q .mbr-text {
  color: #767676;
}
.cid-sklSMJfX4Q .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-sklSMJfX4Q .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-sklSMJfX4Q .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-sklSMJfX4Q .card-title {
  color: #cc3300;
}
.cid-sUKUV1Fg8y {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sUKUV1Fg8y .rowflexrev {
  display: -webkit-flex;
}
.cid-sUKUV1Fg8y .title {
  margin-bottom: 2rem;
}
.cid-sUKUV1Fg8y .mbr-section-subtitle {
  color: #767676;
}
.cid-sUKUV1Fg8y textarea.form-control {
  min-height: 188px;
}
.cid-sUKUV1Fg8y LABEL {
  color: #232323;
}
.cid-sUKUV1Fg8y .mbr-section-terms {
  text-align: center;
  color: #232323;
  margin-bottom: 0px;
}
.cid-sUKUV1Fg8y .mbr-section-labels {
  color: #232323;
  padding: 0;
  margin-bottom: .357em;
  text-align: left;
}
.cid-sUKUV1Fg8y .mbr-section-autorespond {
  text-align: center;
  color: #232323;
  margin-bottom: 0px;
}
.cid-sUKUV1Fg8y .alert {
  margin-bottom: 0;
}
.cid-sUKUV1Fg8y .alert-success {
  background-color: #70c770;
  color: #ffffff;
}
.cid-sUKUV1Fg8y .alert-danger {
  background-color: #ff4a52;
  color: #ffffff;
}
.cid-sUKUV1Fg8y .btn {
  display: inline-flex;
}
.cid-sUKUV1Fg8y .hidden {
  display: none;
}
.cid-sklR5wyscz {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #cc3300;
}
.cid-sklR5wyscz .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sklR5wyscz .btn {
  margin: 0 0 .5rem 0;
}
.cid-sklR5wRSgg {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #cc3300;
}
@media (max-width: 767px) {
  .cid-sklR5wRSgg .content {
    text-align: center;
  }
  .cid-sklR5wRSgg .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sklR5wRSgg .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-sklR5wRSgg .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sklR5wRSgg .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-sklR5wRSgg .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sklR5wRSgg .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-sklR5wRSgg .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sklR5wRSgg .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-sklR5wRSgg .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sklR5wRSgg .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sklR5wRSgg .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sklR5wRSgg .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sklR5wRSgg P {
  color: #ffffff;
}
.cid-sRX6LQ2GcL .navbar-dropdown {
  position: relative !important;
}
.cid-sRX6LQ2GcL .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-sRX6LQ2GcL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sRX6LQ2GcL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sRX6LQ2GcL .dropdown-item:hover,
.cid-sRX6LQ2GcL .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-sRX6LQ2GcL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sRX6LQ2GcL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sRX6LQ2GcL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sRX6LQ2GcL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sRX6LQ2GcL .nav-link {
  position: relative;
}
.cid-sRX6LQ2GcL .container {
  display: flex;
  margin: auto;
}
.cid-sRX6LQ2GcL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sRX6LQ2GcL .dropdown-menu,
.cid-sRX6LQ2GcL .navbar.opened {
  background: #cc3300 !important;
}
.cid-sRX6LQ2GcL .nav-item:focus,
.cid-sRX6LQ2GcL .nav-link:focus {
  outline: none;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sRX6LQ2GcL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sRX6LQ2GcL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sRX6LQ2GcL .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: #cc3300;
}
.cid-sRX6LQ2GcL .navbar.opened {
  transition: all 0.3s;
}
.cid-sRX6LQ2GcL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sRX6LQ2GcL .navbar .navbar-logo img {
  width: auto;
}
.cid-sRX6LQ2GcL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sRX6LQ2GcL .navbar.collapsed {
  justify-content: center;
}
.cid-sRX6LQ2GcL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sRX6LQ2GcL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sRX6LQ2GcL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.2rem);
  }
}
.cid-sRX6LQ2GcL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sRX6LQ2GcL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sRX6LQ2GcL .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-sRX6LQ2GcL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sRX6LQ2GcL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sRX6LQ2GcL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sRX6LQ2GcL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sRX6LQ2GcL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sRX6LQ2GcL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sRX6LQ2GcL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sRX6LQ2GcL .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-sRX6LQ2GcL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sRX6LQ2GcL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sRX6LQ2GcL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sRX6LQ2GcL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sRX6LQ2GcL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sRX6LQ2GcL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sRX6LQ2GcL .navbar.navbar-short {
  min-height: 60px;
}
.cid-sRX6LQ2GcL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sRX6LQ2GcL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sRX6LQ2GcL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sRX6LQ2GcL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sRX6LQ2GcL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sRX6LQ2GcL .dropdown-item.active,
.cid-sRX6LQ2GcL .dropdown-item:active {
  background-color: transparent;
}
.cid-sRX6LQ2GcL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sRX6LQ2GcL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sRX6LQ2GcL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sRX6LQ2GcL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cc3300;
}
.cid-sRX6LQ2GcL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sRX6LQ2GcL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sRX6LQ2GcL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sRX6LQ2GcL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sRX6LQ2GcL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sRX6LQ2GcL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sRX6LQ2GcL .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-sRX6LQ2GcL .navbar {
    height: 70px;
  }
  .cid-sRX6LQ2GcL .navbar.opened {
    height: auto;
  }
  .cid-sRX6LQ2GcL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sklUk70rEW {
  padding-top: 135px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/whatsapp-image-2019-12-05-at-14.51.49-1152x864.webp");
}
.cid-sklUk7o4vS {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sklUk7o4vS .line {
  background-color: #cc3300;
  color: #cc3300;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sklUk7o4vS .section-text {
  padding: 2rem 0;
}
.cid-sklUk7o4vS .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sklUk7o4vS .inner-container {
    width: 100% !important;
  }
}
.cid-sklUk7F2cS {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-sklUk7F2cS .card-img {
  background-color: #fff;
}
.cid-sklUk7F2cS .card {
  align-self: stretch;
}
.cid-sklUk7F2cS .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-sklUk7F2cS h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sklUk7F2cS p {
  text-align: left;
}
.cid-sklUk7F2cS .mbr-text {
  color: #767676;
}
.cid-sklUk7F2cS .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-sklUk7F2cS .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-sklUk7F2cS .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-sklUk7F2cS .card-title {
  color: #cc3300;
}
.cid-sklWlj3a0M {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-sklWlj3a0M .card-img {
  background-color: #fff;
}
.cid-sklWlj3a0M .card {
  align-self: stretch;
}
.cid-sklWlj3a0M .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-sklWlj3a0M h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sklWlj3a0M p {
  text-align: left;
}
.cid-sklWlj3a0M .mbr-text {
  color: #767676;
}
.cid-sklWlj3a0M .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-sklWlj3a0M .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-sklWlj3a0M .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-sklWlj3a0M .card-title {
  color: #cc3300;
}
.cid-sklXiSmfzG {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-sklXiSmfzG .card-img {
  background-color: #fff;
}
.cid-sklXiSmfzG .card {
  align-self: stretch;
}
.cid-sklXiSmfzG .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-sklXiSmfzG h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sklXiSmfzG p {
  text-align: left;
}
.cid-sklXiSmfzG .mbr-text {
  color: #767676;
}
.cid-sklXiSmfzG .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-sklXiSmfzG .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-sklXiSmfzG .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-sklXiSmfzG .card-title {
  color: #cc3300;
}
.cid-sUKUXfYQte {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sUKUXfYQte .rowflexrev {
  display: -webkit-flex;
}
.cid-sUKUXfYQte .title {
  margin-bottom: 2rem;
}
.cid-sUKUXfYQte .mbr-section-subtitle {
  color: #767676;
}
.cid-sUKUXfYQte textarea.form-control {
  min-height: 188px;
}
.cid-sUKUXfYQte LABEL {
  color: #232323;
}
.cid-sUKUXfYQte .mbr-section-terms {
  text-align: center;
  color: #232323;
  margin-bottom: 0px;
}
.cid-sUKUXfYQte .mbr-section-labels {
  color: #232323;
  padding: 0;
  margin-bottom: .357em;
  text-align: left;
}
.cid-sUKUXfYQte .mbr-section-autorespond {
  text-align: center;
  color: #232323;
  margin-bottom: 0px;
}
.cid-sUKUXfYQte .alert {
  margin-bottom: 0;
}
.cid-sUKUXfYQte .alert-success {
  background-color: #70c770;
  color: #ffffff;
}
.cid-sUKUXfYQte .alert-danger {
  background-color: #ff4a52;
  color: #ffffff;
}
.cid-sUKUXfYQte .btn {
  display: inline-flex;
}
.cid-sUKUXfYQte .hidden {
  display: none;
}
.cid-sklUk8RlRj {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #cc3300;
}
.cid-sklUk8RlRj .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sklUk8RlRj .btn {
  margin: 0 0 .5rem 0;
}
.cid-sklUk97M3s {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #cc3300;
}
@media (max-width: 767px) {
  .cid-sklUk97M3s .content {
    text-align: center;
  }
  .cid-sklUk97M3s .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sklUk97M3s .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-sklUk97M3s .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sklUk97M3s .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-sklUk97M3s .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sklUk97M3s .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-sklUk97M3s .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sklUk97M3s .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-sklUk97M3s .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sklUk97M3s .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sklUk97M3s .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sklUk97M3s .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sklUk97M3s P {
  color: #ffffff;
}
.cid-sRX6LQ2GcL .navbar-dropdown {
  position: relative !important;
}
.cid-sRX6LQ2GcL .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-sRX6LQ2GcL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sRX6LQ2GcL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sRX6LQ2GcL .dropdown-item:hover,
.cid-sRX6LQ2GcL .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-sRX6LQ2GcL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sRX6LQ2GcL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sRX6LQ2GcL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sRX6LQ2GcL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sRX6LQ2GcL .nav-link {
  position: relative;
}
.cid-sRX6LQ2GcL .container {
  display: flex;
  margin: auto;
}
.cid-sRX6LQ2GcL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sRX6LQ2GcL .dropdown-menu,
.cid-sRX6LQ2GcL .navbar.opened {
  background: #cc3300 !important;
}
.cid-sRX6LQ2GcL .nav-item:focus,
.cid-sRX6LQ2GcL .nav-link:focus {
  outline: none;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sRX6LQ2GcL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sRX6LQ2GcL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sRX6LQ2GcL .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: #cc3300;
}
.cid-sRX6LQ2GcL .navbar.opened {
  transition: all 0.3s;
}
.cid-sRX6LQ2GcL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sRX6LQ2GcL .navbar .navbar-logo img {
  width: auto;
}
.cid-sRX6LQ2GcL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sRX6LQ2GcL .navbar.collapsed {
  justify-content: center;
}
.cid-sRX6LQ2GcL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sRX6LQ2GcL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sRX6LQ2GcL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.2rem);
  }
}
.cid-sRX6LQ2GcL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sRX6LQ2GcL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sRX6LQ2GcL .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-sRX6LQ2GcL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sRX6LQ2GcL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sRX6LQ2GcL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sRX6LQ2GcL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sRX6LQ2GcL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sRX6LQ2GcL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sRX6LQ2GcL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sRX6LQ2GcL .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-sRX6LQ2GcL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sRX6LQ2GcL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sRX6LQ2GcL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sRX6LQ2GcL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sRX6LQ2GcL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sRX6LQ2GcL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sRX6LQ2GcL .navbar.navbar-short {
  min-height: 60px;
}
.cid-sRX6LQ2GcL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sRX6LQ2GcL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sRX6LQ2GcL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sRX6LQ2GcL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sRX6LQ2GcL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sRX6LQ2GcL .dropdown-item.active,
.cid-sRX6LQ2GcL .dropdown-item:active {
  background-color: transparent;
}
.cid-sRX6LQ2GcL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sRX6LQ2GcL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sRX6LQ2GcL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sRX6LQ2GcL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cc3300;
}
.cid-sRX6LQ2GcL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sRX6LQ2GcL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sRX6LQ2GcL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sRX6LQ2GcL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sRX6LQ2GcL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sRX6LQ2GcL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sRX6LQ2GcL .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-sRX6LQ2GcL .navbar {
    height: 70px;
  }
  .cid-sRX6LQ2GcL .navbar.opened {
    height: auto;
  }
  .cid-sRX6LQ2GcL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sklZaiNkIj {
  padding-top: 135px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/whatsapp-image-2019-12-05-at-14.51.49-1152x864.webp");
}
.cid-sklZajvulf {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sklZajvulf .line {
  background-color: #cc3300;
  color: #cc3300;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sklZajvulf .section-text {
  padding: 2rem 0;
}
.cid-sklZajvulf .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sklZajvulf .inner-container {
    width: 100% !important;
  }
}
.cid-skm0vZssBs {
  background: #ffffff;
  padding-top: 60px;
  padding-bottom: 60px;
}
.cid-skm0vZssBs .image-block {
  margin: auto;
}
.cid-skm0vZssBs .mbr-figure {
  margin: 0 auto;
}
.cid-skm0vZssBs figcaption {
  position: relative;
}
.cid-skm0vZssBs figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-skm0vZssBs .image-block {
    width: 100% !important;
  }
}
.cid-sUKVu67uYY {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sUKVu67uYY .rowflexrev {
  display: -webkit-flex;
}
.cid-sUKVu67uYY .title {
  margin-bottom: 2rem;
}
.cid-sUKVu67uYY .mbr-section-subtitle {
  color: #767676;
}
.cid-sUKVu67uYY textarea.form-control {
  min-height: 188px;
}
.cid-sUKVu67uYY LABEL {
  color: #232323;
}
.cid-sUKVu67uYY .mbr-section-terms {
  text-align: center;
  color: #232323;
  margin-bottom: 0px;
}
.cid-sUKVu67uYY .mbr-section-labels {
  color: #232323;
  padding: 0;
  margin-bottom: .357em;
  text-align: left;
}
.cid-sUKVu67uYY .mbr-section-autorespond {
  text-align: center;
  color: #232323;
  margin-bottom: 0px;
}
.cid-sUKVu67uYY .alert {
  margin-bottom: 0;
}
.cid-sUKVu67uYY .alert-success {
  background-color: #70c770;
  color: #ffffff;
}
.cid-sUKVu67uYY .alert-danger {
  background-color: #ff4a52;
  color: #ffffff;
}
.cid-sUKVu67uYY .btn {
  display: inline-flex;
}
.cid-sUKVu67uYY .hidden {
  display: none;
}
.cid-sklZalteJ9 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #cc3300;
}
.cid-sklZalteJ9 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sklZalteJ9 .btn {
  margin: 0 0 .5rem 0;
}
.cid-sklZalRbxB {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #cc3300;
}
@media (max-width: 767px) {
  .cid-sklZalRbxB .content {
    text-align: center;
  }
  .cid-sklZalRbxB .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sklZalRbxB .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-sklZalRbxB .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sklZalRbxB .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-sklZalRbxB .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sklZalRbxB .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-sklZalRbxB .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sklZalRbxB .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-sklZalRbxB .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sklZalRbxB .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sklZalRbxB .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sklZalRbxB .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sklZalRbxB P {
  color: #ffffff;
}
.cid-sRX6LQ2GcL .navbar-dropdown {
  position: relative !important;
}
.cid-sRX6LQ2GcL .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-sRX6LQ2GcL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sRX6LQ2GcL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sRX6LQ2GcL .dropdown-item:hover,
.cid-sRX6LQ2GcL .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-sRX6LQ2GcL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sRX6LQ2GcL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sRX6LQ2GcL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sRX6LQ2GcL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sRX6LQ2GcL .nav-link {
  position: relative;
}
.cid-sRX6LQ2GcL .container {
  display: flex;
  margin: auto;
}
.cid-sRX6LQ2GcL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sRX6LQ2GcL .dropdown-menu,
.cid-sRX6LQ2GcL .navbar.opened {
  background: #cc3300 !important;
}
.cid-sRX6LQ2GcL .nav-item:focus,
.cid-sRX6LQ2GcL .nav-link:focus {
  outline: none;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sRX6LQ2GcL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sRX6LQ2GcL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sRX6LQ2GcL .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: #cc3300;
}
.cid-sRX6LQ2GcL .navbar.opened {
  transition: all 0.3s;
}
.cid-sRX6LQ2GcL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sRX6LQ2GcL .navbar .navbar-logo img {
  width: auto;
}
.cid-sRX6LQ2GcL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sRX6LQ2GcL .navbar.collapsed {
  justify-content: center;
}
.cid-sRX6LQ2GcL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sRX6LQ2GcL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sRX6LQ2GcL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.2rem);
  }
}
.cid-sRX6LQ2GcL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sRX6LQ2GcL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sRX6LQ2GcL .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-sRX6LQ2GcL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sRX6LQ2GcL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sRX6LQ2GcL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sRX6LQ2GcL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sRX6LQ2GcL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sRX6LQ2GcL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sRX6LQ2GcL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sRX6LQ2GcL .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-sRX6LQ2GcL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sRX6LQ2GcL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sRX6LQ2GcL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sRX6LQ2GcL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sRX6LQ2GcL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sRX6LQ2GcL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sRX6LQ2GcL .navbar.navbar-short {
  min-height: 60px;
}
.cid-sRX6LQ2GcL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sRX6LQ2GcL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sRX6LQ2GcL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sRX6LQ2GcL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sRX6LQ2GcL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sRX6LQ2GcL .dropdown-item.active,
.cid-sRX6LQ2GcL .dropdown-item:active {
  background-color: transparent;
}
.cid-sRX6LQ2GcL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sRX6LQ2GcL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sRX6LQ2GcL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sRX6LQ2GcL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cc3300;
}
.cid-sRX6LQ2GcL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sRX6LQ2GcL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sRX6LQ2GcL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sRX6LQ2GcL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sRX6LQ2GcL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sRX6LQ2GcL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sRX6LQ2GcL .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-sRX6LQ2GcL .navbar {
    height: 70px;
  }
  .cid-sRX6LQ2GcL .navbar.opened {
    height: auto;
  }
  .cid-sRX6LQ2GcL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sjOZbHynYV {
  padding-top: 135px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-sjOZbHynYV P {
  color: #767676;
}
.cid-sjPsI0Uxs3 {
  background: #ffffff;
  padding-top: 60px;
  padding-bottom: 60px;
}
.cid-sjPsI0Uxs3 .image-block {
  margin: auto;
}
.cid-sjPsI0Uxs3 figcaption {
  position: relative;
}
.cid-sjPsI0Uxs3 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sjPsI0Uxs3 .image-block {
    width: 100% !important;
  }
}
.cid-sjPsQeDz38 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sjPsQeDz38 .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sjPsQeDz38 .section-text {
  padding: 2rem 0;
}
.cid-sjPsQeDz38 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sjPsQeDz38 .inner-container {
    width: 100% !important;
  }
}
.cid-uOu4elavTh {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #cc3300;
}
@media (max-width: 767px) {
  .cid-uOu4elavTh .content {
    text-align: center;
  }
  .cid-uOu4elavTh .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uOu4elavTh .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-uOu4elavTh .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-uOu4elavTh .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-uOu4elavTh .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uOu4elavTh .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-uOu4elavTh .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uOu4elavTh .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uOu4elavTh .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uOu4elavTh .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uOu4elavTh .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uOu4elavTh .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uOu4elavTh P {
  color: #ffffff;
}
.cid-uOu4elavTh H5 {
  color: #ffffff;
}
.cid-sRX6LQ2GcL .navbar-dropdown {
  position: relative !important;
}
.cid-sRX6LQ2GcL .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-sRX6LQ2GcL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sRX6LQ2GcL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sRX6LQ2GcL .dropdown-item:hover,
.cid-sRX6LQ2GcL .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-sRX6LQ2GcL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sRX6LQ2GcL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sRX6LQ2GcL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sRX6LQ2GcL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sRX6LQ2GcL .nav-link {
  position: relative;
}
.cid-sRX6LQ2GcL .container {
  display: flex;
  margin: auto;
}
.cid-sRX6LQ2GcL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sRX6LQ2GcL .dropdown-menu,
.cid-sRX6LQ2GcL .navbar.opened {
  background: #cc3300 !important;
}
.cid-sRX6LQ2GcL .nav-item:focus,
.cid-sRX6LQ2GcL .nav-link:focus {
  outline: none;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sRX6LQ2GcL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sRX6LQ2GcL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sRX6LQ2GcL .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: #cc3300;
}
.cid-sRX6LQ2GcL .navbar.opened {
  transition: all 0.3s;
}
.cid-sRX6LQ2GcL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sRX6LQ2GcL .navbar .navbar-logo img {
  width: auto;
}
.cid-sRX6LQ2GcL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sRX6LQ2GcL .navbar.collapsed {
  justify-content: center;
}
.cid-sRX6LQ2GcL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sRX6LQ2GcL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sRX6LQ2GcL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.2rem);
  }
}
.cid-sRX6LQ2GcL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sRX6LQ2GcL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sRX6LQ2GcL .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-sRX6LQ2GcL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sRX6LQ2GcL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sRX6LQ2GcL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sRX6LQ2GcL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sRX6LQ2GcL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sRX6LQ2GcL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sRX6LQ2GcL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sRX6LQ2GcL .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-sRX6LQ2GcL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sRX6LQ2GcL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sRX6LQ2GcL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sRX6LQ2GcL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sRX6LQ2GcL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sRX6LQ2GcL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sRX6LQ2GcL .navbar.navbar-short {
  min-height: 60px;
}
.cid-sRX6LQ2GcL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sRX6LQ2GcL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sRX6LQ2GcL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sRX6LQ2GcL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sRX6LQ2GcL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sRX6LQ2GcL .dropdown-item.active,
.cid-sRX6LQ2GcL .dropdown-item:active {
  background-color: transparent;
}
.cid-sRX6LQ2GcL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sRX6LQ2GcL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sRX6LQ2GcL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sRX6LQ2GcL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cc3300;
}
.cid-sRX6LQ2GcL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sRX6LQ2GcL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sRX6LQ2GcL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sRX6LQ2GcL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sRX6LQ2GcL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sRX6LQ2GcL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sRX6LQ2GcL .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-sRX6LQ2GcL .navbar {
    height: 70px;
  }
  .cid-sRX6LQ2GcL .navbar.opened {
    height: auto;
  }
  .cid-sRX6LQ2GcL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rJN0MCSQHi {
  padding-top: 135px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/whatsapp-image-2019-12-05-at-14.50.23-510x383.webp");
}
.cid-rJN2pgNmD1 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rJN2pgNmD1 .line {
  background-color: #ffc003;
  color: #ffc003;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-rJN2pgNmD1 .section-text {
  padding: 2rem 0;
}
.cid-rJN2pgNmD1 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-rJN2pgNmD1 .inner-container {
    width: 100% !important;
  }
}
.cid-rJN2LfbOVp {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rJN2LfbOVp .mbr-section-subtitle {
  color: #767676;
}
.cid-rJN2LfbOVp H2 {
  color: #f11919;
}
.cid-rJN2uqwW6d {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rJN2uqwW6d .counter-container {
  color: #767676;
}
.cid-rJN2uqwW6d .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-rJN2uqwW6d .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-rJN2uqwW6d .counter-container ol li {
  list-style: none;
  padding-left: .5rem;
}
.cid-rJN2uqwW6d .counter-container ol li:before {
  position: absolute;
  left: 0px;
  margin-top: -10px;
  counter-increment: myCounter;
  content: counter(myCounter);
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #f11919;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.cid-rJN46c67Tg {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-rJN46c67Tg .card-box {
  background-color: #ffffff;
  padding: 2rem;
}
.cid-rJN46c67Tg h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rJN46c67Tg p {
  color: #767676;
  text-align: left;
}
.cid-rJN46c67Tg .card-wrapper {
  position: relative;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-rJN46c67Tg .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rJN46c67Tg .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rJN46c67Tg .card-title {
  color: #ffc003;
}
.cid-uOu4horriT {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #cc3300;
}
@media (max-width: 767px) {
  .cid-uOu4horriT .content {
    text-align: center;
  }
  .cid-uOu4horriT .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uOu4horriT .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-uOu4horriT .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-uOu4horriT .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-uOu4horriT .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uOu4horriT .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-uOu4horriT .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uOu4horriT .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uOu4horriT .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uOu4horriT .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uOu4horriT .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uOu4horriT .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uOu4horriT P {
  color: #ffffff;
}
.cid-uOu4horriT H5 {
  color: #ffffff;
}
.cid-sRX6LQ2GcL .navbar-dropdown {
  position: relative !important;
}
.cid-sRX6LQ2GcL .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-sRX6LQ2GcL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sRX6LQ2GcL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sRX6LQ2GcL .dropdown-item:hover,
.cid-sRX6LQ2GcL .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-sRX6LQ2GcL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sRX6LQ2GcL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sRX6LQ2GcL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sRX6LQ2GcL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sRX6LQ2GcL .nav-link {
  position: relative;
}
.cid-sRX6LQ2GcL .container {
  display: flex;
  margin: auto;
}
.cid-sRX6LQ2GcL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sRX6LQ2GcL .dropdown-menu,
.cid-sRX6LQ2GcL .navbar.opened {
  background: #cc3300 !important;
}
.cid-sRX6LQ2GcL .nav-item:focus,
.cid-sRX6LQ2GcL .nav-link:focus {
  outline: none;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sRX6LQ2GcL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sRX6LQ2GcL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sRX6LQ2GcL .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: #cc3300;
}
.cid-sRX6LQ2GcL .navbar.opened {
  transition: all 0.3s;
}
.cid-sRX6LQ2GcL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sRX6LQ2GcL .navbar .navbar-logo img {
  width: auto;
}
.cid-sRX6LQ2GcL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sRX6LQ2GcL .navbar.collapsed {
  justify-content: center;
}
.cid-sRX6LQ2GcL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sRX6LQ2GcL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sRX6LQ2GcL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.2rem);
  }
}
.cid-sRX6LQ2GcL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sRX6LQ2GcL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sRX6LQ2GcL .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-sRX6LQ2GcL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sRX6LQ2GcL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sRX6LQ2GcL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sRX6LQ2GcL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sRX6LQ2GcL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sRX6LQ2GcL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sRX6LQ2GcL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sRX6LQ2GcL .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-sRX6LQ2GcL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sRX6LQ2GcL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sRX6LQ2GcL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sRX6LQ2GcL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sRX6LQ2GcL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sRX6LQ2GcL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sRX6LQ2GcL .navbar.navbar-short {
  min-height: 60px;
}
.cid-sRX6LQ2GcL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sRX6LQ2GcL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sRX6LQ2GcL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sRX6LQ2GcL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sRX6LQ2GcL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sRX6LQ2GcL .dropdown-item.active,
.cid-sRX6LQ2GcL .dropdown-item:active {
  background-color: transparent;
}
.cid-sRX6LQ2GcL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sRX6LQ2GcL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sRX6LQ2GcL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sRX6LQ2GcL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cc3300;
}
.cid-sRX6LQ2GcL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sRX6LQ2GcL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sRX6LQ2GcL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sRX6LQ2GcL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sRX6LQ2GcL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sRX6LQ2GcL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sRX6LQ2GcL .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-sRX6LQ2GcL .navbar {
    height: 70px;
  }
  .cid-sRX6LQ2GcL .navbar.opened {
    height: auto;
  }
  .cid-sRX6LQ2GcL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sjBdsENG3I {
  padding-top: 135px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/whatsapp-image-2019-12-05-at-14.51.49-1152x864.webp");
}
.cid-sjBdsFt4nC {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sjBdsFt4nC .line {
  background-color: #cc3300;
  color: #cc3300;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sjBdsFt4nC .section-text {
  padding: 2rem 0;
}
.cid-sjBdsFt4nC .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sjBdsFt4nC .inner-container {
    width: 100% !important;
  }
}
.cid-sjBdsFMYJE {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-sjBdsFMYJE .card-img {
  background-color: #fff;
}
.cid-sjBdsFMYJE .card {
  align-self: stretch;
}
.cid-sjBdsFMYJE .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-sjBdsFMYJE h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sjBdsFMYJE p {
  text-align: left;
}
.cid-sjBdsFMYJE .mbr-text {
  color: #767676;
}
.cid-sjBdsFMYJE .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-sjBdsFMYJE .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-sjBdsFMYJE .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-sjBdsFMYJE .card-title {
  color: #cc3300;
}
.cid-sjBCddHXpA {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-sjBCddHXpA .card-img {
  background-color: #fff;
}
.cid-sjBCddHXpA .card {
  align-self: stretch;
}
.cid-sjBCddHXpA .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-sjBCddHXpA h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sjBCddHXpA p {
  text-align: left;
}
.cid-sjBCddHXpA .mbr-text {
  color: #767676;
}
.cid-sjBCddHXpA .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-sjBCddHXpA .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-sjBCddHXpA .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-sjBCddHXpA .card-title {
  color: #cc3300;
}
.cid-sjBCTzdlVU {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-sjBCTzdlVU .card-img {
  background-color: #fff;
}
.cid-sjBCTzdlVU .card {
  align-self: stretch;
}
.cid-sjBCTzdlVU .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-sjBCTzdlVU h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sjBCTzdlVU p {
  text-align: left;
}
.cid-sjBCTzdlVU .mbr-text {
  color: #767676;
}
.cid-sjBCTzdlVU .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-sjBCTzdlVU .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-sjBCTzdlVU .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-sjBCTzdlVU .card-title {
  color: #cc3300;
}
.cid-sjBE11OPIf {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-sjBE11OPIf .card-img {
  background-color: #fff;
}
.cid-sjBE11OPIf .card {
  align-self: stretch;
}
.cid-sjBE11OPIf .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-sjBE11OPIf h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sjBE11OPIf p {
  text-align: left;
}
.cid-sjBE11OPIf .mbr-text {
  color: #767676;
}
.cid-sjBE11OPIf .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-sjBE11OPIf .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-sjBE11OPIf .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-sjBE11OPIf .card-title {
  color: #cc3300;
}
.cid-sjBRuO1WRI {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-sjBRuO1WRI .card-img {
  background-color: #fff;
}
.cid-sjBRuO1WRI .card {
  align-self: stretch;
}
.cid-sjBRuO1WRI .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-sjBRuO1WRI h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sjBRuO1WRI p {
  text-align: left;
}
.cid-sjBRuO1WRI .mbr-text {
  color: #767676;
}
.cid-sjBRuO1WRI .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-sjBRuO1WRI .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-sjBRuO1WRI .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-sjBRuO1WRI .card-title {
  color: #cc3300;
}
.cid-sjBSrw3YFP {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-sjBSrw3YFP .card-img {
  background-color: #fff;
}
.cid-sjBSrw3YFP .card {
  align-self: stretch;
}
.cid-sjBSrw3YFP .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-sjBSrw3YFP h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sjBSrw3YFP p {
  text-align: left;
}
.cid-sjBSrw3YFP .mbr-text {
  color: #767676;
}
.cid-sjBSrw3YFP .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-sjBSrw3YFP .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-sjBSrw3YFP .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-sjBSrw3YFP .card-title {
  color: #cc3300;
}
.cid-sUKUIEIpon {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sUKUIEIpon .rowflexrev {
  display: -webkit-flex;
}
.cid-sUKUIEIpon .title {
  margin-bottom: 2rem;
}
.cid-sUKUIEIpon .mbr-section-subtitle {
  color: #767676;
}
.cid-sUKUIEIpon textarea.form-control {
  min-height: 188px;
}
.cid-sUKUIEIpon LABEL {
  color: #232323;
}
.cid-sUKUIEIpon .mbr-section-terms {
  text-align: center;
  color: #232323;
  margin-bottom: 0px;
}
.cid-sUKUIEIpon .mbr-section-labels {
  color: #232323;
  padding: 0;
  margin-bottom: .357em;
  text-align: left;
}
.cid-sUKUIEIpon .mbr-section-autorespond {
  text-align: center;
  color: #232323;
  margin-bottom: 0px;
}
.cid-sUKUIEIpon .alert {
  margin-bottom: 0;
}
.cid-sUKUIEIpon .alert-success {
  background-color: #70c770;
  color: #ffffff;
}
.cid-sUKUIEIpon .alert-danger {
  background-color: #ff4a52;
  color: #ffffff;
}
.cid-sUKUIEIpon .btn {
  display: inline-flex;
}
.cid-sUKUIEIpon .hidden {
  display: none;
}
.cid-sjBdsGZNv4 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #cc3300;
}
.cid-sjBdsGZNv4 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sjBdsGZNv4 .btn {
  margin: 0 0 .5rem 0;
}
.cid-sjBdsHxAQJ {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #cc3300;
}
@media (max-width: 767px) {
  .cid-sjBdsHxAQJ .content {
    text-align: center;
  }
  .cid-sjBdsHxAQJ .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sjBdsHxAQJ .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-sjBdsHxAQJ .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sjBdsHxAQJ .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-sjBdsHxAQJ .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sjBdsHxAQJ .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-sjBdsHxAQJ .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sjBdsHxAQJ .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-sjBdsHxAQJ .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sjBdsHxAQJ .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sjBdsHxAQJ .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sjBdsHxAQJ .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sjBdsHxAQJ P {
  color: #ffffff;
}
.cid-sRX6LQ2GcL .navbar-dropdown {
  position: relative !important;
}
.cid-sRX6LQ2GcL .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-sRX6LQ2GcL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sRX6LQ2GcL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sRX6LQ2GcL .dropdown-item:hover,
.cid-sRX6LQ2GcL .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-sRX6LQ2GcL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sRX6LQ2GcL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sRX6LQ2GcL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sRX6LQ2GcL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sRX6LQ2GcL .nav-link {
  position: relative;
}
.cid-sRX6LQ2GcL .container {
  display: flex;
  margin: auto;
}
.cid-sRX6LQ2GcL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sRX6LQ2GcL .dropdown-menu,
.cid-sRX6LQ2GcL .navbar.opened {
  background: #cc3300 !important;
}
.cid-sRX6LQ2GcL .nav-item:focus,
.cid-sRX6LQ2GcL .nav-link:focus {
  outline: none;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sRX6LQ2GcL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sRX6LQ2GcL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sRX6LQ2GcL .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: #cc3300;
}
.cid-sRX6LQ2GcL .navbar.opened {
  transition: all 0.3s;
}
.cid-sRX6LQ2GcL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sRX6LQ2GcL .navbar .navbar-logo img {
  width: auto;
}
.cid-sRX6LQ2GcL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sRX6LQ2GcL .navbar.collapsed {
  justify-content: center;
}
.cid-sRX6LQ2GcL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sRX6LQ2GcL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sRX6LQ2GcL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.2rem);
  }
}
.cid-sRX6LQ2GcL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sRX6LQ2GcL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sRX6LQ2GcL .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-sRX6LQ2GcL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sRX6LQ2GcL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sRX6LQ2GcL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sRX6LQ2GcL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sRX6LQ2GcL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sRX6LQ2GcL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sRX6LQ2GcL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sRX6LQ2GcL .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-sRX6LQ2GcL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sRX6LQ2GcL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sRX6LQ2GcL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sRX6LQ2GcL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sRX6LQ2GcL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sRX6LQ2GcL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sRX6LQ2GcL .navbar.navbar-short {
  min-height: 60px;
}
.cid-sRX6LQ2GcL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sRX6LQ2GcL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sRX6LQ2GcL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sRX6LQ2GcL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sRX6LQ2GcL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sRX6LQ2GcL .dropdown-item.active,
.cid-sRX6LQ2GcL .dropdown-item:active {
  background-color: transparent;
}
.cid-sRX6LQ2GcL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sRX6LQ2GcL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sRX6LQ2GcL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sRX6LQ2GcL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cc3300;
}
.cid-sRX6LQ2GcL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sRX6LQ2GcL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sRX6LQ2GcL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sRX6LQ2GcL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sRX6LQ2GcL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sRX6LQ2GcL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sRX6LQ2GcL .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-sRX6LQ2GcL .navbar {
    height: 70px;
  }
  .cid-sRX6LQ2GcL .navbar.opened {
    height: auto;
  }
  .cid-sRX6LQ2GcL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-se80fY2r5q {
  padding-top: 135px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/whatsapp-image-2019-12-05-at-14.51.49-1152x864.webp");
}
.cid-se80fYno7O {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-se80fYno7O .line {
  background-color: #cc3300;
  color: #cc3300;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-se80fYno7O .section-text {
  padding: 2rem 0;
}
.cid-se80fYno7O .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-se80fYno7O .inner-container {
    width: 100% !important;
  }
}
.cid-se80fYAsLm {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-se80fYAsLm .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-se80fYAsLm .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-se80fYAsLm .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-se80fYAsLm .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-se80fYAsLm .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-se80fYAsLm .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-se80fYAsLm .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-se80fYAsLm .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-se80fYAsLm .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-se9ICsrOjd {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-se9ICsrOjd .mbr-section-subtitle {
  color: #767676;
}
.cid-se9ICsrOjd H2 {
  color: #f11919;
}
.cid-se9IK7nRib {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-se9IK7nRib .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-se9IK7nRib .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-se9IK7nRib .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-se9IK7nRib .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-se9IK7nRib .row > .row {
  display: block;
}
.cid-se9IK7nRib .mbr-gallery-item {
  width: 100%;
}
.cid-se9IK7nRib .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-se9IK7nRib .mbr-gallery-item > div {
  position: relative;
}
.cid-se9IK7nRib .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-se9IK7nRib .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-se9IK7nRib .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-se9IK7nRib .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-se9OhKTxn5 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-se9OhKTxn5 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-se9OhKTxn5 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-se9OhKTxn5 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-se9OhKTxn5 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-se9OhKTxn5 .row > .row {
  display: block;
}
.cid-se9OhKTxn5 .mbr-gallery-item {
  width: 100%;
}
.cid-se9OhKTxn5 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-se9OhKTxn5 .mbr-gallery-item > div {
  position: relative;
}
.cid-se9OhKTxn5 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-se9OhKTxn5 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-se9OhKTxn5 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-se9OhKTxn5 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-sJEOkuGMSs {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sJEOkuGMSs .item {
  padding-bottom: 2rem;
}
.cid-sJEOkuGMSs .item-wrapper {
  height: 100%;
}
.cid-sJEOkuGMSs .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sJEOkuGMSs .carousel-control,
.cid-sJEOkuGMSs .close {
  background: #1b1b1b;
}
.cid-sJEOkuGMSs .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sJEOkuGMSs .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sJEOkuGMSs .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-sJEOkuGMSs .close::before {
  content: '\e91a';
}
.cid-sJEOkuGMSs .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sJEOkuGMSs .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-sJEOkuGMSs .carousel-inner > .active {
  display: block;
}
.cid-sJEOkuGMSs .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sJEOkuGMSs .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sJEOkuGMSs .carousel-control .icon-next,
.cid-sJEOkuGMSs .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-sJEOkuGMSs .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sJEOkuGMSs .carousel-control,
  .cid-sJEOkuGMSs .carousel-indicators,
  .cid-sJEOkuGMSs .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sJEOkuGMSs .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sJEOkuGMSs .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sJEOkuGMSs .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-sJEOkuGMSs .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sJEOkuGMSs .carousel-indicators {
    display: none;
  }
}
.cid-sJEOkuGMSs .carousel-indicators .active,
.cid-sJEOkuGMSs .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-sJEOkuGMSs .carousel-indicators .active {
  background: #fff;
}
.cid-sJEOkuGMSs .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sJEOkuGMSs .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sJEOkuGMSs .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sJEOkuGMSs .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sJEOkuGMSs .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sJEOkuGMSs .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-sJEOkuGMSs .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sJEOkuGMSs .carousel {
  width: 100%;
}
.cid-sJEOkuGMSs .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sJEOkuGMSs .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-sJEOkuGMSs .modal.fade .modal-dialog,
.cid-sJEOkuGMSs .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-sJEOkuGMSs .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sJEOkuGMSs a {
  display: block;
}
.cid-sJEOkuGMSs a.img {
  pointer-events: none;
}
.cid-tiIMPBIiOJ {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tiIMPBIiOJ .item {
  padding-bottom: 2rem;
}
.cid-tiIMPBIiOJ .item-wrapper {
  height: 100%;
}
.cid-tiIMPBIiOJ .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tiIMPBIiOJ .carousel-control,
.cid-tiIMPBIiOJ .close {
  background: #1b1b1b;
}
.cid-tiIMPBIiOJ .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tiIMPBIiOJ .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tiIMPBIiOJ .close {
  position: fixed;
  opacity: 0.5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: 'MobiriseIcons';
}
.cid-tiIMPBIiOJ .close::before {
  content: '\e91a';
}
.cid-tiIMPBIiOJ .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tiIMPBIiOJ .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: 0.5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-tiIMPBIiOJ .carousel-inner > .active {
  display: block;
}
.cid-tiIMPBIiOJ .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tiIMPBIiOJ .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tiIMPBIiOJ .carousel-control .icon-next,
.cid-tiIMPBIiOJ .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-tiIMPBIiOJ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tiIMPBIiOJ .carousel-control,
  .cid-tiIMPBIiOJ .carousel-indicators,
  .cid-tiIMPBIiOJ .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tiIMPBIiOJ .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tiIMPBIiOJ .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tiIMPBIiOJ .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-tiIMPBIiOJ .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tiIMPBIiOJ .carousel-indicators {
    display: none;
  }
}
.cid-tiIMPBIiOJ .carousel-indicators .active,
.cid-tiIMPBIiOJ .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: 0.5;
  border: 4px solid #1b1b1b;
}
.cid-tiIMPBIiOJ .carousel-indicators .active {
  background: #fff;
}
.cid-tiIMPBIiOJ .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tiIMPBIiOJ .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tiIMPBIiOJ .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tiIMPBIiOJ .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tiIMPBIiOJ .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tiIMPBIiOJ .modal-body .carousel-item {
  top: 50%;
  transform: translateY(-50%);
}
.cid-tiIMPBIiOJ .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tiIMPBIiOJ .carousel {
  width: 100%;
}
.cid-tiIMPBIiOJ .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tiIMPBIiOJ .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-tiIMPBIiOJ .modal.fade .modal-dialog,
.cid-tiIMPBIiOJ .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-tiIMPBIiOJ .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tiIMPBIiOJ a {
  display: block;
}
.cid-tiIMPBIiOJ a.img {
  pointer-events: none;
}
.cid-tkOGg7FiOg {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tkOGg7FiOg .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tkOGg7FiOg .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tkOGg7FiOg .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tkOGg7FiOg .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tkOGg7FiOg .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-tkOGg7FiOg .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tkOGg7FiOg .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-tkOGg7FiOg .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tkOGg7FiOg .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-sUKVzJiCOV {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sUKVzJiCOV .rowflexrev {
  display: -webkit-flex;
}
.cid-sUKVzJiCOV .title {
  margin-bottom: 2rem;
}
.cid-sUKVzJiCOV .mbr-section-subtitle {
  color: #767676;
}
.cid-sUKVzJiCOV textarea.form-control {
  min-height: 188px;
}
.cid-sUKVzJiCOV LABEL {
  color: #232323;
}
.cid-sUKVzJiCOV .mbr-section-terms {
  text-align: center;
  color: #232323;
  margin-bottom: 0px;
}
.cid-sUKVzJiCOV .mbr-section-labels {
  color: #232323;
  padding: 0;
  margin-bottom: .357em;
  text-align: left;
}
.cid-sUKVzJiCOV .mbr-section-autorespond {
  text-align: center;
  color: #232323;
  margin-bottom: 0px;
}
.cid-sUKVzJiCOV .alert {
  margin-bottom: 0;
}
.cid-sUKVzJiCOV .alert-success {
  background-color: #70c770;
  color: #ffffff;
}
.cid-sUKVzJiCOV .alert-danger {
  background-color: #ff4a52;
  color: #ffffff;
}
.cid-sUKVzJiCOV .btn {
  display: inline-flex;
}
.cid-sUKVzJiCOV .hidden {
  display: none;
}
.cid-se80fZGnz8 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #cc3300;
}
@media (max-width: 767px) {
  .cid-se80fZGnz8 .content {
    text-align: center;
  }
  .cid-se80fZGnz8 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-se80fZGnz8 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-se80fZGnz8 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-se80fZGnz8 .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-se80fZGnz8 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-se80fZGnz8 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-se80fZGnz8 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-se80fZGnz8 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-se80fZGnz8 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-se80fZGnz8 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-se80fZGnz8 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-se80fZGnz8 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-se80fZGnz8 P {
  color: #ffffff;
}
.cid-sRX6LQ2GcL .navbar-dropdown {
  position: relative !important;
}
.cid-sRX6LQ2GcL .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-sRX6LQ2GcL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sRX6LQ2GcL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sRX6LQ2GcL .dropdown-item:hover,
.cid-sRX6LQ2GcL .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-sRX6LQ2GcL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sRX6LQ2GcL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sRX6LQ2GcL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sRX6LQ2GcL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sRX6LQ2GcL .nav-link {
  position: relative;
}
.cid-sRX6LQ2GcL .container {
  display: flex;
  margin: auto;
}
.cid-sRX6LQ2GcL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sRX6LQ2GcL .dropdown-menu,
.cid-sRX6LQ2GcL .navbar.opened {
  background: #cc3300 !important;
}
.cid-sRX6LQ2GcL .nav-item:focus,
.cid-sRX6LQ2GcL .nav-link:focus {
  outline: none;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sRX6LQ2GcL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sRX6LQ2GcL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sRX6LQ2GcL .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: #cc3300;
}
.cid-sRX6LQ2GcL .navbar.opened {
  transition: all 0.3s;
}
.cid-sRX6LQ2GcL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sRX6LQ2GcL .navbar .navbar-logo img {
  width: auto;
}
.cid-sRX6LQ2GcL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sRX6LQ2GcL .navbar.collapsed {
  justify-content: center;
}
.cid-sRX6LQ2GcL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sRX6LQ2GcL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sRX6LQ2GcL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.2rem);
  }
}
.cid-sRX6LQ2GcL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sRX6LQ2GcL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sRX6LQ2GcL .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-sRX6LQ2GcL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sRX6LQ2GcL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sRX6LQ2GcL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sRX6LQ2GcL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sRX6LQ2GcL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sRX6LQ2GcL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sRX6LQ2GcL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sRX6LQ2GcL .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-sRX6LQ2GcL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sRX6LQ2GcL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sRX6LQ2GcL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sRX6LQ2GcL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sRX6LQ2GcL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sRX6LQ2GcL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sRX6LQ2GcL .navbar.navbar-short {
  min-height: 60px;
}
.cid-sRX6LQ2GcL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sRX6LQ2GcL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sRX6LQ2GcL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sRX6LQ2GcL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sRX6LQ2GcL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sRX6LQ2GcL .dropdown-item.active,
.cid-sRX6LQ2GcL .dropdown-item:active {
  background-color: transparent;
}
.cid-sRX6LQ2GcL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sRX6LQ2GcL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sRX6LQ2GcL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sRX6LQ2GcL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cc3300;
}
.cid-sRX6LQ2GcL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sRX6LQ2GcL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sRX6LQ2GcL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sRX6LQ2GcL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sRX6LQ2GcL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sRX6LQ2GcL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sRX6LQ2GcL .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-sRX6LQ2GcL .navbar {
    height: 70px;
  }
  .cid-sRX6LQ2GcL .navbar.opened {
    height: auto;
  }
  .cid-sRX6LQ2GcL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-se8IuWqrUH {
  padding-top: 135px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/whatsapp-image-2019-12-05-at-14.51.49-1152x864.webp");
}
.cid-se8IuWPbRb {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-se8IuWPbRb .line {
  background-color: #cc3300;
  color: #cc3300;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-se8IuWPbRb .section-text {
  padding: 2rem 0;
}
.cid-se8IuWPbRb .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-se8IuWPbRb .inner-container {
    width: 100% !important;
  }
}
.cid-se9GrsQp1M {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-se9GrsQp1M .mbr-section-subtitle {
  color: #cc3300;
}
.cid-se8IuX8Upf {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-se8IuX8Upf .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-se8IuX8Upf .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-se8IuX8Upf .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-se8IuX8Upf .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-se8IuX8Upf .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-se8IuX8Upf .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-se8IuX8Upf .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-se8IuX8Upf .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-se8IuX8Upf .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-se9HuxmNOp {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-se9HuxmNOp .mbr-section-subtitle {
  color: #767676;
}
.cid-se9HuxmNOp H2 {
  color: #cc3300;
}
.cid-se9HFItagI {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-se9HFItagI .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-se9HFItagI .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-se9HFItagI .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-se9HFItagI .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-se9HFItagI .row > .row {
  display: block;
}
.cid-se9HFItagI .mbr-gallery-item {
  width: 100%;
}
.cid-se9HFItagI .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-se9HFItagI .mbr-gallery-item > div {
  position: relative;
}
.cid-se9HFItagI .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-se9HFItagI .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-se9HFItagI .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-se9HFItagI .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-sUKVCd95Zd {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sUKVCd95Zd .rowflexrev {
  display: -webkit-flex;
}
.cid-sUKVCd95Zd .title {
  margin-bottom: 2rem;
}
.cid-sUKVCd95Zd .mbr-section-subtitle {
  color: #767676;
}
.cid-sUKVCd95Zd textarea.form-control {
  min-height: 188px;
}
.cid-sUKVCd95Zd LABEL {
  color: #232323;
}
.cid-sUKVCd95Zd .mbr-section-terms {
  text-align: center;
  color: #232323;
  margin-bottom: 0px;
}
.cid-sUKVCd95Zd .mbr-section-labels {
  color: #232323;
  padding: 0;
  margin-bottom: .357em;
  text-align: left;
}
.cid-sUKVCd95Zd .mbr-section-autorespond {
  text-align: center;
  color: #232323;
  margin-bottom: 0px;
}
.cid-sUKVCd95Zd .alert {
  margin-bottom: 0;
}
.cid-sUKVCd95Zd .alert-success {
  background-color: #70c770;
  color: #ffffff;
}
.cid-sUKVCd95Zd .alert-danger {
  background-color: #ff4a52;
  color: #ffffff;
}
.cid-sUKVCd95Zd .btn {
  display: inline-flex;
}
.cid-sUKVCd95Zd .hidden {
  display: none;
}
.cid-se8IuYexFO {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #cc3300;
}
@media (max-width: 767px) {
  .cid-se8IuYexFO .content {
    text-align: center;
  }
  .cid-se8IuYexFO .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-se8IuYexFO .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-se8IuYexFO .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-se8IuYexFO .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-se8IuYexFO .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-se8IuYexFO .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-se8IuYexFO .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-se8IuYexFO .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-se8IuYexFO .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-se8IuYexFO .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-se8IuYexFO .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-se8IuYexFO .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-se8IuYexFO P {
  color: #ffffff;
}
.cid-sRX6LQ2GcL .navbar-dropdown {
  position: relative !important;
}
.cid-sRX6LQ2GcL .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-sRX6LQ2GcL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sRX6LQ2GcL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sRX6LQ2GcL .dropdown-item:hover,
.cid-sRX6LQ2GcL .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-sRX6LQ2GcL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sRX6LQ2GcL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sRX6LQ2GcL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sRX6LQ2GcL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sRX6LQ2GcL .nav-link {
  position: relative;
}
.cid-sRX6LQ2GcL .container {
  display: flex;
  margin: auto;
}
.cid-sRX6LQ2GcL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sRX6LQ2GcL .dropdown-menu,
.cid-sRX6LQ2GcL .navbar.opened {
  background: #cc3300 !important;
}
.cid-sRX6LQ2GcL .nav-item:focus,
.cid-sRX6LQ2GcL .nav-link:focus {
  outline: none;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sRX6LQ2GcL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sRX6LQ2GcL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sRX6LQ2GcL .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: #cc3300;
}
.cid-sRX6LQ2GcL .navbar.opened {
  transition: all 0.3s;
}
.cid-sRX6LQ2GcL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sRX6LQ2GcL .navbar .navbar-logo img {
  width: auto;
}
.cid-sRX6LQ2GcL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sRX6LQ2GcL .navbar.collapsed {
  justify-content: center;
}
.cid-sRX6LQ2GcL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sRX6LQ2GcL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sRX6LQ2GcL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.2rem);
  }
}
.cid-sRX6LQ2GcL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sRX6LQ2GcL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sRX6LQ2GcL .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-sRX6LQ2GcL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sRX6LQ2GcL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sRX6LQ2GcL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sRX6LQ2GcL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sRX6LQ2GcL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sRX6LQ2GcL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sRX6LQ2GcL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sRX6LQ2GcL .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-sRX6LQ2GcL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sRX6LQ2GcL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sRX6LQ2GcL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sRX6LQ2GcL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sRX6LQ2GcL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sRX6LQ2GcL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sRX6LQ2GcL .navbar.navbar-short {
  min-height: 60px;
}
.cid-sRX6LQ2GcL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sRX6LQ2GcL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sRX6LQ2GcL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sRX6LQ2GcL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sRX6LQ2GcL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sRX6LQ2GcL .dropdown-item.active,
.cid-sRX6LQ2GcL .dropdown-item:active {
  background-color: transparent;
}
.cid-sRX6LQ2GcL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sRX6LQ2GcL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sRX6LQ2GcL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sRX6LQ2GcL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cc3300;
}
.cid-sRX6LQ2GcL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sRX6LQ2GcL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sRX6LQ2GcL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sRX6LQ2GcL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sRX6LQ2GcL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sRX6LQ2GcL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sRX6LQ2GcL .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-sRX6LQ2GcL .navbar {
    height: 70px;
  }
  .cid-sRX6LQ2GcL .navbar.opened {
    height: auto;
  }
  .cid-sRX6LQ2GcL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-siLobhjnKA {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #cc3300;
}
.cid-siLobhBcKg {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-siLobhBcKg .line {
  background-color: #cc3300;
  color: #cc3300;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-siLobhBcKg .section-text {
  padding: 2rem 0;
}
.cid-siLobhBcKg .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-siLobhBcKg .inner-container {
    width: 100% !important;
  }
}
.cid-slclu1YnJo {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-slclu1YnJo .mbr-section-subtitle {
  color: #cc3300;
}
.cid-slclu1YnJo .btn {
  margin: 0 0 .5rem 0;
}
.cid-siS7wK2xej {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-siS7wK2xej .card-img {
  background-color: #fff;
}
.cid-siS7wK2xej .card {
  align-self: stretch;
}
.cid-siS7wK2xej .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-siS7wK2xej h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-siS7wK2xej p {
  text-align: left;
}
.cid-siS7wK2xej .mbr-text {
  color: #767676;
}
.cid-siS7wK2xej .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-siS7wK2xej .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-siS7wK2xej .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-siS7wK2xej .card-title {
  color: #cc3300;
  text-align: center;
}
.cid-siSmpZH8qY {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-siSmpZH8qY .card-img {
  background-color: #fff;
}
.cid-siSmpZH8qY .card {
  align-self: stretch;
}
.cid-siSmpZH8qY .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-siSmpZH8qY h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-siSmpZH8qY p {
  text-align: left;
}
.cid-siSmpZH8qY .mbr-text {
  color: #767676;
}
.cid-siSmpZH8qY .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-siSmpZH8qY .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-siSmpZH8qY .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-siSmpZH8qY .card-title {
  color: #cc3300;
  text-align: center;
}
.cid-siSuLX7psc {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-siSuLX7psc .card-img {
  background-color: #fff;
}
.cid-siSuLX7psc .card {
  align-self: stretch;
}
.cid-siSuLX7psc .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-siSuLX7psc h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-siSuLX7psc p {
  text-align: left;
}
.cid-siSuLX7psc .mbr-text {
  color: #767676;
}
.cid-siSuLX7psc .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-siSuLX7psc .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-siSuLX7psc .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-siSuLX7psc .card-title {
  color: #cc3300;
  text-align: center;
}
.cid-siSwzm09AX {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-siSwzm09AX .card-img {
  background-color: #fff;
}
.cid-siSwzm09AX .card {
  align-self: stretch;
}
.cid-siSwzm09AX .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-siSwzm09AX h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-siSwzm09AX p {
  text-align: left;
}
.cid-siSwzm09AX .mbr-text {
  color: #767676;
}
.cid-siSwzm09AX .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-siSwzm09AX .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-siSwzm09AX .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-siSwzm09AX .card-title {
  color: #cc3300;
  text-align: center;
}
.cid-siSy7WlzIw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-siSy7WlzIw .card-img {
  background-color: #fff;
}
.cid-siSy7WlzIw .card {
  align-self: stretch;
}
.cid-siSy7WlzIw .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-siSy7WlzIw h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-siSy7WlzIw p {
  text-align: left;
}
.cid-siSy7WlzIw .mbr-text {
  color: #767676;
}
.cid-siSy7WlzIw .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-siSy7WlzIw .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-siSy7WlzIw .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-siSy7WlzIw .card-title {
  color: #cc3300;
  text-align: center;
}
.cid-v0ewISjeLM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sUKUD5T2Fz {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sUKUD5T2Fz .rowflexrev {
  display: -webkit-flex;
}
.cid-sUKUD5T2Fz .title {
  margin-bottom: 2rem;
}
.cid-sUKUD5T2Fz .mbr-section-subtitle {
  color: #767676;
}
.cid-sUKUD5T2Fz textarea.form-control {
  min-height: 188px;
}
.cid-sUKUD5T2Fz LABEL {
  color: #232323;
}
.cid-sUKUD5T2Fz .mbr-section-terms {
  text-align: center;
  color: #232323;
  margin-bottom: 0px;
}
.cid-sUKUD5T2Fz .mbr-section-labels {
  color: #232323;
  padding: 0;
  margin-bottom: .357em;
  text-align: left;
}
.cid-sUKUD5T2Fz .mbr-section-autorespond {
  text-align: center;
  color: #232323;
  margin-bottom: 0px;
}
.cid-sUKUD5T2Fz .alert {
  margin-bottom: 0;
}
.cid-sUKUD5T2Fz .alert-success {
  background-color: #70c770;
  color: #ffffff;
}
.cid-sUKUD5T2Fz .alert-danger {
  background-color: #ff4a52;
  color: #ffffff;
}
.cid-sUKUD5T2Fz .btn {
  display: inline-flex;
}
.cid-sUKUD5T2Fz .hidden {
  display: none;
}
.cid-siSA5M8POR {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #cc3300;
}
.cid-siSA5M8POR .mbr-section-subtitle {
  color: #ffffff;
}
.cid-siSA5M8POR .btn {
  margin: 0 0 .5rem 0;
}
.cid-uOu4n9SQ0X {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #cc3300;
}
@media (max-width: 767px) {
  .cid-uOu4n9SQ0X .content {
    text-align: center;
  }
  .cid-uOu4n9SQ0X .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uOu4n9SQ0X .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-uOu4n9SQ0X .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-uOu4n9SQ0X .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-uOu4n9SQ0X .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uOu4n9SQ0X .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-uOu4n9SQ0X .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uOu4n9SQ0X .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uOu4n9SQ0X .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uOu4n9SQ0X .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uOu4n9SQ0X .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uOu4n9SQ0X .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uOu4n9SQ0X P {
  color: #ffffff;
}
.cid-uOu4n9SQ0X H5 {
  color: #ffffff;
}
.cid-sRX6LQ2GcL .navbar-dropdown {
  position: relative !important;
}
.cid-sRX6LQ2GcL .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-sRX6LQ2GcL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sRX6LQ2GcL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sRX6LQ2GcL .dropdown-item:hover,
.cid-sRX6LQ2GcL .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-sRX6LQ2GcL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sRX6LQ2GcL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sRX6LQ2GcL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sRX6LQ2GcL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sRX6LQ2GcL .nav-link {
  position: relative;
}
.cid-sRX6LQ2GcL .container {
  display: flex;
  margin: auto;
}
.cid-sRX6LQ2GcL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sRX6LQ2GcL .dropdown-menu,
.cid-sRX6LQ2GcL .navbar.opened {
  background: #cc3300 !important;
}
.cid-sRX6LQ2GcL .nav-item:focus,
.cid-sRX6LQ2GcL .nav-link:focus {
  outline: none;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sRX6LQ2GcL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sRX6LQ2GcL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sRX6LQ2GcL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sRX6LQ2GcL .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: #cc3300;
}
.cid-sRX6LQ2GcL .navbar.opened {
  transition: all 0.3s;
}
.cid-sRX6LQ2GcL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sRX6LQ2GcL .navbar .navbar-logo img {
  width: auto;
}
.cid-sRX6LQ2GcL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sRX6LQ2GcL .navbar.collapsed {
  justify-content: center;
}
.cid-sRX6LQ2GcL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sRX6LQ2GcL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sRX6LQ2GcL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.2rem);
  }
}
.cid-sRX6LQ2GcL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sRX6LQ2GcL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sRX6LQ2GcL .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-sRX6LQ2GcL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sRX6LQ2GcL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sRX6LQ2GcL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sRX6LQ2GcL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sRX6LQ2GcL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sRX6LQ2GcL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sRX6LQ2GcL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sRX6LQ2GcL .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-sRX6LQ2GcL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sRX6LQ2GcL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sRX6LQ2GcL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sRX6LQ2GcL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sRX6LQ2GcL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sRX6LQ2GcL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sRX6LQ2GcL .navbar.navbar-short {
  min-height: 60px;
}
.cid-sRX6LQ2GcL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sRX6LQ2GcL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sRX6LQ2GcL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sRX6LQ2GcL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sRX6LQ2GcL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sRX6LQ2GcL .dropdown-item.active,
.cid-sRX6LQ2GcL .dropdown-item:active {
  background-color: transparent;
}
.cid-sRX6LQ2GcL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sRX6LQ2GcL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sRX6LQ2GcL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sRX6LQ2GcL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cc3300;
}
.cid-sRX6LQ2GcL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sRX6LQ2GcL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sRX6LQ2GcL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sRX6LQ2GcL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sRX6LQ2GcL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sRX6LQ2GcL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sRX6LQ2GcL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sRX6LQ2GcL .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sRX6LQ2GcL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sRX6LQ2GcL .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-sRX6LQ2GcL .navbar {
    height: 70px;
  }
  .cid-sRX6LQ2GcL .navbar.opened {
    height: auto;
  }
  .cid-sRX6LQ2GcL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sqMjiNTaIt {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/whatsapp-image-2019-12-13-at-16.05.39-1024x768.webp");
}
.cid-sqMjiNTaIt .btn {
  margin: 0 0 .5rem 0;
}
.cid-sqMgQ3rCDy {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #232323;
}
@media (max-width: 767px) {
  .cid-sqMgQ3rCDy .content {
    text-align: center;
  }
  .cid-sqMgQ3rCDy .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sqMgQ3rCDy .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-sqMgQ3rCDy .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sqMgQ3rCDy .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-sqMgQ3rCDy .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sqMgQ3rCDy .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-sqMgQ3rCDy .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sqMgQ3rCDy .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-sqMgQ3rCDy .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sqMgQ3rCDy .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sqMgQ3rCDy .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sqMgQ3rCDy .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sqMgQ3rCDy P {
  color: #ffffff;
}
.cid-tB93V0KPUc .navbar-dropdown {
  position: relative !important;
}
.cid-tB93V0KPUc .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-tB93V0KPUc .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tB93V0KPUc .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tB93V0KPUc .dropdown-item:hover,
.cid-tB93V0KPUc .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-tB93V0KPUc .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tB93V0KPUc .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tB93V0KPUc .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tB93V0KPUc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tB93V0KPUc .nav-link {
  position: relative;
}
.cid-tB93V0KPUc .container {
  display: flex;
  margin: auto;
}
.cid-tB93V0KPUc .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tB93V0KPUc .dropdown-menu,
.cid-tB93V0KPUc .navbar.opened {
  background: #cc3300 !important;
}
.cid-tB93V0KPUc .nav-item:focus,
.cid-tB93V0KPUc .nav-link:focus {
  outline: none;
}
.cid-tB93V0KPUc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tB93V0KPUc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tB93V0KPUc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tB93V0KPUc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tB93V0KPUc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tB93V0KPUc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tB93V0KPUc .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: #cc3300;
}
.cid-tB93V0KPUc .navbar.opened {
  transition: all 0.3s;
}
.cid-tB93V0KPUc .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tB93V0KPUc .navbar .navbar-logo img {
  width: auto;
}
.cid-tB93V0KPUc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tB93V0KPUc .navbar.collapsed {
  justify-content: center;
}
.cid-tB93V0KPUc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tB93V0KPUc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tB93V0KPUc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.2rem);
  }
}
.cid-tB93V0KPUc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tB93V0KPUc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tB93V0KPUc .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-tB93V0KPUc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tB93V0KPUc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tB93V0KPUc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tB93V0KPUc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tB93V0KPUc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tB93V0KPUc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tB93V0KPUc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tB93V0KPUc .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-tB93V0KPUc .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tB93V0KPUc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tB93V0KPUc .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tB93V0KPUc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tB93V0KPUc .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tB93V0KPUc .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tB93V0KPUc .navbar.navbar-short {
  min-height: 60px;
}
.cid-tB93V0KPUc .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tB93V0KPUc .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tB93V0KPUc .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tB93V0KPUc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tB93V0KPUc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tB93V0KPUc .dropdown-item.active,
.cid-tB93V0KPUc .dropdown-item:active {
  background-color: transparent;
}
.cid-tB93V0KPUc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tB93V0KPUc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tB93V0KPUc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tB93V0KPUc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cc3300;
}
.cid-tB93V0KPUc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tB93V0KPUc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tB93V0KPUc ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tB93V0KPUc .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tB93V0KPUc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tB93V0KPUc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tB93V0KPUc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tB93V0KPUc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tB93V0KPUc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tB93V0KPUc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tB93V0KPUc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tB93V0KPUc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tB93V0KPUc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tB93V0KPUc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tB93V0KPUc .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tB93V0KPUc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tB93V0KPUc .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-tB93V0KPUc .navbar {
    height: 70px;
  }
  .cid-tB93V0KPUc .navbar.opened {
    height: auto;
  }
  .cid-tB93V0KPUc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tB93V1zFv8 {
  padding-top: 10rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/hitachi-machine-for-sale-2000x1500.webp");
}
.cid-tB93V1zFv8 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tB93V1zFv8 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tB93V1zFv8 .mbr-text,
.cid-tB93V1zFv8 .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-tB94SQaKRx {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tB94SQaKRx .mbr-text,
.cid-tB94SQaKRx blockquote {
  color: #767676;
}
.cid-tDnM1VF8Qr {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tDnM1VF8Qr img,
.cid-tDnM1VF8Qr .item-img {
  width: 100%;
}
.cid-tDnM1VF8Qr .item:focus,
.cid-tDnM1VF8Qr span:focus {
  outline: none;
}
.cid-tDnM1VF8Qr .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tDnM1VF8Qr .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tDnM1VF8Qr .item {
  padding: 0;
  margin: 0;
}
.cid-tDnM1VF8Qr .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tDnM1VF8Qr .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tDnM1VF8Qr .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tDnM1VF8Qr .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tDnM1VF8Qr .mbr-section-title {
  color: #232323;
}
.cid-tDnM1VF8Qr .mbr-text,
.cid-tDnM1VF8Qr .mbr-section-btn {
  text-align: left;
}
.cid-tDnM1VF8Qr .item-title {
  text-align: left;
}
.cid-tDnM1VF8Qr .item-subtitle {
  text-align: left;
}
.cid-uOu3SBSCem {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #cc3300;
}
@media (max-width: 767px) {
  .cid-uOu3SBSCem .content {
    text-align: center;
  }
  .cid-uOu3SBSCem .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uOu3SBSCem .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-uOu3SBSCem .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-uOu3SBSCem .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-uOu3SBSCem .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uOu3SBSCem .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-uOu3SBSCem .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uOu3SBSCem .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uOu3SBSCem .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uOu3SBSCem .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uOu3SBSCem .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uOu3SBSCem .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uOu3SBSCem P {
  color: #ffffff;
}
.cid-uOu3SBSCem H5 {
  color: #ffffff;
}
.cid-tB96bW7gh3 .navbar-dropdown {
  position: relative !important;
}
.cid-tB96bW7gh3 .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-tB96bW7gh3 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tB96bW7gh3 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tB96bW7gh3 .dropdown-item:hover,
.cid-tB96bW7gh3 .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-tB96bW7gh3 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tB96bW7gh3 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tB96bW7gh3 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tB96bW7gh3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tB96bW7gh3 .nav-link {
  position: relative;
}
.cid-tB96bW7gh3 .container {
  display: flex;
  margin: auto;
}
.cid-tB96bW7gh3 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tB96bW7gh3 .dropdown-menu,
.cid-tB96bW7gh3 .navbar.opened {
  background: #cc3300 !important;
}
.cid-tB96bW7gh3 .nav-item:focus,
.cid-tB96bW7gh3 .nav-link:focus {
  outline: none;
}
.cid-tB96bW7gh3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tB96bW7gh3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tB96bW7gh3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tB96bW7gh3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tB96bW7gh3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tB96bW7gh3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tB96bW7gh3 .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: #cc3300;
}
.cid-tB96bW7gh3 .navbar.opened {
  transition: all 0.3s;
}
.cid-tB96bW7gh3 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tB96bW7gh3 .navbar .navbar-logo img {
  width: auto;
}
.cid-tB96bW7gh3 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tB96bW7gh3 .navbar.collapsed {
  justify-content: center;
}
.cid-tB96bW7gh3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tB96bW7gh3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tB96bW7gh3 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.2rem);
  }
}
.cid-tB96bW7gh3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tB96bW7gh3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tB96bW7gh3 .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-tB96bW7gh3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tB96bW7gh3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tB96bW7gh3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tB96bW7gh3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tB96bW7gh3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tB96bW7gh3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tB96bW7gh3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tB96bW7gh3 .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-tB96bW7gh3 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tB96bW7gh3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tB96bW7gh3 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tB96bW7gh3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tB96bW7gh3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tB96bW7gh3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tB96bW7gh3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tB96bW7gh3 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tB96bW7gh3 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tB96bW7gh3 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tB96bW7gh3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tB96bW7gh3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tB96bW7gh3 .dropdown-item.active,
.cid-tB96bW7gh3 .dropdown-item:active {
  background-color: transparent;
}
.cid-tB96bW7gh3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tB96bW7gh3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tB96bW7gh3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tB96bW7gh3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cc3300;
}
.cid-tB96bW7gh3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tB96bW7gh3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tB96bW7gh3 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tB96bW7gh3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tB96bW7gh3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tB96bW7gh3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tB96bW7gh3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tB96bW7gh3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tB96bW7gh3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tB96bW7gh3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tB96bW7gh3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tB96bW7gh3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tB96bW7gh3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tB96bW7gh3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tB96bW7gh3 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tB96bW7gh3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tB96bW7gh3 .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-tB96bW7gh3 .navbar {
    height: 70px;
  }
  .cid-tB96bW7gh3 .navbar.opened {
    height: auto;
  }
  .cid-tB96bW7gh3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tB96bWGUTq {
  padding-top: 10rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/hitachi-machine-for-sale-2000x1500.webp");
}
.cid-tB96bWGUTq .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tB96bWGUTq .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tB96bWGUTq .mbr-text,
.cid-tB96bWGUTq .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-tDnIrBcXr5 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tDnIrBcXr5 .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-tDnIrBcXr5 .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-tDnIrBcXr5 .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tDnIrBcXr5 .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tDnIrBcXr5 .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tDnIrBcXr5 .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tDnIrBcXr5 .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-tDnIrBcXr5 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tDnJsJ69QJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tDnJsJ69QJ .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-tDnJsJ69QJ .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tDnJsJ69QJ .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tDnJsJ69QJ .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tDnJsJ69QJ .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tDnJsJ69QJ .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-tDnJsJ69QJ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tB96bXbkxA {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tB96bXbkxA .mbr-text,
.cid-tB96bXbkxA blockquote {
  color: #767676;
}
.cid-tDnKLCFwdq {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tDnKLCFwdq img,
.cid-tDnKLCFwdq .item-img {
  width: 100%;
}
.cid-tDnKLCFwdq .item:focus,
.cid-tDnKLCFwdq span:focus {
  outline: none;
}
.cid-tDnKLCFwdq .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tDnKLCFwdq .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tDnKLCFwdq .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tDnKLCFwdq .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tDnKLCFwdq .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tDnKLCFwdq .mbr-section-title {
  color: #232323;
}
.cid-tDnKLCFwdq .mbr-text,
.cid-tDnKLCFwdq .mbr-section-btn {
  text-align: left;
}
.cid-tDnKLCFwdq .item-title {
  text-align: left;
}
.cid-tDnKLCFwdq .item-subtitle {
  text-align: left;
}
.cid-uOu3WlXmjz {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #cc3300;
}
@media (max-width: 767px) {
  .cid-uOu3WlXmjz .content {
    text-align: center;
  }
  .cid-uOu3WlXmjz .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uOu3WlXmjz .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-uOu3WlXmjz .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-uOu3WlXmjz .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-uOu3WlXmjz .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uOu3WlXmjz .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-uOu3WlXmjz .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uOu3WlXmjz .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uOu3WlXmjz .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uOu3WlXmjz .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uOu3WlXmjz .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uOu3WlXmjz .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uOu3WlXmjz P {
  color: #ffffff;
}
.cid-uOu3WlXmjz H5 {
  color: #ffffff;
}
.cid-tDmPOTvP2v .navbar-dropdown {
  position: relative !important;
}
.cid-tDmPOTvP2v .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-tDmPOTvP2v .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tDmPOTvP2v .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tDmPOTvP2v .dropdown-item:hover,
.cid-tDmPOTvP2v .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-tDmPOTvP2v .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tDmPOTvP2v .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tDmPOTvP2v .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tDmPOTvP2v .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tDmPOTvP2v .nav-link {
  position: relative;
}
.cid-tDmPOTvP2v .container {
  display: flex;
  margin: auto;
}
.cid-tDmPOTvP2v .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tDmPOTvP2v .dropdown-menu,
.cid-tDmPOTvP2v .navbar.opened {
  background: #cc3300 !important;
}
.cid-tDmPOTvP2v .nav-item:focus,
.cid-tDmPOTvP2v .nav-link:focus {
  outline: none;
}
.cid-tDmPOTvP2v .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tDmPOTvP2v .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tDmPOTvP2v .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tDmPOTvP2v .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tDmPOTvP2v .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tDmPOTvP2v .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tDmPOTvP2v .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: #cc3300;
}
.cid-tDmPOTvP2v .navbar.opened {
  transition: all 0.3s;
}
.cid-tDmPOTvP2v .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tDmPOTvP2v .navbar .navbar-logo img {
  width: auto;
}
.cid-tDmPOTvP2v .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tDmPOTvP2v .navbar.collapsed {
  justify-content: center;
}
.cid-tDmPOTvP2v .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tDmPOTvP2v .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tDmPOTvP2v .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.2rem);
  }
}
.cid-tDmPOTvP2v .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tDmPOTvP2v .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tDmPOTvP2v .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-tDmPOTvP2v .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tDmPOTvP2v .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tDmPOTvP2v .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tDmPOTvP2v .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tDmPOTvP2v .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tDmPOTvP2v .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tDmPOTvP2v .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tDmPOTvP2v .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-tDmPOTvP2v .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tDmPOTvP2v .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tDmPOTvP2v .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tDmPOTvP2v .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tDmPOTvP2v .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tDmPOTvP2v .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tDmPOTvP2v .navbar.navbar-short {
  min-height: 60px;
}
.cid-tDmPOTvP2v .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tDmPOTvP2v .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tDmPOTvP2v .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tDmPOTvP2v .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tDmPOTvP2v .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tDmPOTvP2v .dropdown-item.active,
.cid-tDmPOTvP2v .dropdown-item:active {
  background-color: transparent;
}
.cid-tDmPOTvP2v .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tDmPOTvP2v .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tDmPOTvP2v .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tDmPOTvP2v .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cc3300;
}
.cid-tDmPOTvP2v .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tDmPOTvP2v .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tDmPOTvP2v ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tDmPOTvP2v .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tDmPOTvP2v button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tDmPOTvP2v button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tDmPOTvP2v button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tDmPOTvP2v button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDmPOTvP2v button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDmPOTvP2v button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tDmPOTvP2v nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDmPOTvP2v nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tDmPOTvP2v nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tDmPOTvP2v nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDmPOTvP2v .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tDmPOTvP2v a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tDmPOTvP2v .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-tDmPOTvP2v .navbar {
    height: 70px;
  }
  .cid-tDmPOTvP2v .navbar.opened {
    height: auto;
  }
  .cid-tDmPOTvP2v .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tDmPOU4Ln8 {
  padding-top: 10rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/hitachi-machine-for-sale-2000x1500.webp");
}
.cid-tDmPOU4Ln8 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tDmPOU4Ln8 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tDmPOU4Ln8 .mbr-text,
.cid-tDmPOU4Ln8 .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-tDmPOUwdM5 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tDmPOUwdM5 .mbr-text,
.cid-tDmPOUwdM5 blockquote {
  color: #767676;
}
.cid-tDnNcV7yqD {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tDnNcV7yqD img,
.cid-tDnNcV7yqD .item-img {
  width: 100%;
}
.cid-tDnNcV7yqD .item:focus,
.cid-tDnNcV7yqD span:focus {
  outline: none;
}
.cid-tDnNcV7yqD .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tDnNcV7yqD .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tDnNcV7yqD .item {
  padding: 0;
  margin: 0;
}
.cid-tDnNcV7yqD .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tDnNcV7yqD .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tDnNcV7yqD .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tDnNcV7yqD .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tDnNcV7yqD .mbr-section-title {
  color: #232323;
}
.cid-tDnNcV7yqD .mbr-text,
.cid-tDnNcV7yqD .mbr-section-btn {
  text-align: left;
}
.cid-tDnNcV7yqD .item-title {
  text-align: left;
}
.cid-tDnNcV7yqD .item-subtitle {
  text-align: left;
}
.cid-uOu3ZTrXHz {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #cc3300;
}
@media (max-width: 767px) {
  .cid-uOu3ZTrXHz .content {
    text-align: center;
  }
  .cid-uOu3ZTrXHz .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uOu3ZTrXHz .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-uOu3ZTrXHz .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-uOu3ZTrXHz .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-uOu3ZTrXHz .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uOu3ZTrXHz .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-uOu3ZTrXHz .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uOu3ZTrXHz .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uOu3ZTrXHz .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uOu3ZTrXHz .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uOu3ZTrXHz .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uOu3ZTrXHz .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uOu3ZTrXHz P {
  color: #ffffff;
}
.cid-uOu3ZTrXHz H5 {
  color: #ffffff;
}
.cid-tDmRi9EaEJ .navbar-dropdown {
  position: relative !important;
}
.cid-tDmRi9EaEJ .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-tDmRi9EaEJ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tDmRi9EaEJ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tDmRi9EaEJ .dropdown-item:hover,
.cid-tDmRi9EaEJ .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-tDmRi9EaEJ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tDmRi9EaEJ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tDmRi9EaEJ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tDmRi9EaEJ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tDmRi9EaEJ .nav-link {
  position: relative;
}
.cid-tDmRi9EaEJ .container {
  display: flex;
  margin: auto;
}
.cid-tDmRi9EaEJ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tDmRi9EaEJ .dropdown-menu,
.cid-tDmRi9EaEJ .navbar.opened {
  background: #cc3300 !important;
}
.cid-tDmRi9EaEJ .nav-item:focus,
.cid-tDmRi9EaEJ .nav-link:focus {
  outline: none;
}
.cid-tDmRi9EaEJ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tDmRi9EaEJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tDmRi9EaEJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tDmRi9EaEJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tDmRi9EaEJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tDmRi9EaEJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tDmRi9EaEJ .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: #cc3300;
}
.cid-tDmRi9EaEJ .navbar.opened {
  transition: all 0.3s;
}
.cid-tDmRi9EaEJ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tDmRi9EaEJ .navbar .navbar-logo img {
  width: auto;
}
.cid-tDmRi9EaEJ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tDmRi9EaEJ .navbar.collapsed {
  justify-content: center;
}
.cid-tDmRi9EaEJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tDmRi9EaEJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tDmRi9EaEJ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.2rem);
  }
}
.cid-tDmRi9EaEJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tDmRi9EaEJ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tDmRi9EaEJ .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-tDmRi9EaEJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tDmRi9EaEJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tDmRi9EaEJ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tDmRi9EaEJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tDmRi9EaEJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tDmRi9EaEJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tDmRi9EaEJ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tDmRi9EaEJ .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-tDmRi9EaEJ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tDmRi9EaEJ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tDmRi9EaEJ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tDmRi9EaEJ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tDmRi9EaEJ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tDmRi9EaEJ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tDmRi9EaEJ .navbar.navbar-short {
  min-height: 60px;
}
.cid-tDmRi9EaEJ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tDmRi9EaEJ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tDmRi9EaEJ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tDmRi9EaEJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tDmRi9EaEJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tDmRi9EaEJ .dropdown-item.active,
.cid-tDmRi9EaEJ .dropdown-item:active {
  background-color: transparent;
}
.cid-tDmRi9EaEJ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tDmRi9EaEJ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tDmRi9EaEJ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tDmRi9EaEJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cc3300;
}
.cid-tDmRi9EaEJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tDmRi9EaEJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tDmRi9EaEJ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tDmRi9EaEJ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tDmRi9EaEJ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tDmRi9EaEJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tDmRi9EaEJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tDmRi9EaEJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDmRi9EaEJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDmRi9EaEJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tDmRi9EaEJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDmRi9EaEJ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tDmRi9EaEJ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tDmRi9EaEJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDmRi9EaEJ .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tDmRi9EaEJ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tDmRi9EaEJ .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-tDmRi9EaEJ .navbar {
    height: 70px;
  }
  .cid-tDmRi9EaEJ .navbar.opened {
    height: auto;
  }
  .cid-tDmRi9EaEJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tDmRiamBc1 {
  padding-top: 10rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/hitachi-machine-for-sale-2000x1500.webp");
}
.cid-tDmRiamBc1 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tDmRiamBc1 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tDmRiamBc1 .mbr-text,
.cid-tDmRiamBc1 .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-tDnPcPNSQb {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tDnPcPNSQb img,
.cid-tDnPcPNSQb .item-img {
  width: 100%;
}
.cid-tDnPcPNSQb .item:focus,
.cid-tDnPcPNSQb span:focus {
  outline: none;
}
.cid-tDnPcPNSQb .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tDnPcPNSQb .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tDnPcPNSQb .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tDnPcPNSQb .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tDnPcPNSQb .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tDnPcPNSQb .mbr-section-title {
  color: #232323;
}
.cid-tDnPcPNSQb .mbr-text,
.cid-tDnPcPNSQb .mbr-section-btn {
  text-align: left;
}
.cid-tDnPcPNSQb .item-title {
  text-align: left;
}
.cid-tDnPcPNSQb .item-subtitle {
  text-align: center;
}
.cid-tDmRib2oOn {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tDmRib2oOn .mbr-text,
.cid-tDmRib2oOn blockquote {
  color: #767676;
}
.cid-uOu442gsmx {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #cc3300;
}
@media (max-width: 767px) {
  .cid-uOu442gsmx .content {
    text-align: center;
  }
  .cid-uOu442gsmx .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uOu442gsmx .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-uOu442gsmx .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-uOu442gsmx .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-uOu442gsmx .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uOu442gsmx .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-uOu442gsmx .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uOu442gsmx .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uOu442gsmx .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uOu442gsmx .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uOu442gsmx .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uOu442gsmx .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uOu442gsmx P {
  color: #ffffff;
}
.cid-uOu442gsmx H5 {
  color: #ffffff;
}
.cid-tDmT53OWJO .navbar-dropdown {
  position: relative !important;
}
.cid-tDmT53OWJO .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-tDmT53OWJO .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tDmT53OWJO .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tDmT53OWJO .dropdown-item:hover,
.cid-tDmT53OWJO .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-tDmT53OWJO .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tDmT53OWJO .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tDmT53OWJO .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tDmT53OWJO .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tDmT53OWJO .nav-link {
  position: relative;
}
.cid-tDmT53OWJO .container {
  display: flex;
  margin: auto;
}
.cid-tDmT53OWJO .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tDmT53OWJO .dropdown-menu,
.cid-tDmT53OWJO .navbar.opened {
  background: #cc3300 !important;
}
.cid-tDmT53OWJO .nav-item:focus,
.cid-tDmT53OWJO .nav-link:focus {
  outline: none;
}
.cid-tDmT53OWJO .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tDmT53OWJO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tDmT53OWJO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tDmT53OWJO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tDmT53OWJO .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tDmT53OWJO .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tDmT53OWJO .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: #cc3300;
}
.cid-tDmT53OWJO .navbar.opened {
  transition: all 0.3s;
}
.cid-tDmT53OWJO .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tDmT53OWJO .navbar .navbar-logo img {
  width: auto;
}
.cid-tDmT53OWJO .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tDmT53OWJO .navbar.collapsed {
  justify-content: center;
}
.cid-tDmT53OWJO .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tDmT53OWJO .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tDmT53OWJO .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.2rem);
  }
}
.cid-tDmT53OWJO .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tDmT53OWJO .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tDmT53OWJO .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-tDmT53OWJO .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tDmT53OWJO .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tDmT53OWJO .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tDmT53OWJO .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tDmT53OWJO .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tDmT53OWJO .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tDmT53OWJO .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tDmT53OWJO .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-tDmT53OWJO .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tDmT53OWJO .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tDmT53OWJO .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tDmT53OWJO .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tDmT53OWJO .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tDmT53OWJO .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tDmT53OWJO .navbar.navbar-short {
  min-height: 60px;
}
.cid-tDmT53OWJO .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tDmT53OWJO .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tDmT53OWJO .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tDmT53OWJO .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tDmT53OWJO .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tDmT53OWJO .dropdown-item.active,
.cid-tDmT53OWJO .dropdown-item:active {
  background-color: transparent;
}
.cid-tDmT53OWJO .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tDmT53OWJO .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tDmT53OWJO .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tDmT53OWJO .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cc3300;
}
.cid-tDmT53OWJO .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tDmT53OWJO .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tDmT53OWJO ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tDmT53OWJO .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tDmT53OWJO button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tDmT53OWJO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tDmT53OWJO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tDmT53OWJO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDmT53OWJO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDmT53OWJO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tDmT53OWJO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDmT53OWJO nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tDmT53OWJO nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tDmT53OWJO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDmT53OWJO .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tDmT53OWJO a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tDmT53OWJO .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-tDmT53OWJO .navbar {
    height: 70px;
  }
  .cid-tDmT53OWJO .navbar.opened {
    height: auto;
  }
  .cid-tDmT53OWJO .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tDmT54sjOl {
  padding-top: 10rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/hitachi-machine-for-sale-2000x1500.webp");
}
.cid-tDmT54sjOl .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tDmT54sjOl .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tDmT54sjOl .mbr-text,
.cid-tDmT54sjOl .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-tDnQ0N4tk2 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tDnQ0N4tk2 img,
.cid-tDnQ0N4tk2 .item-img {
  width: 100%;
}
.cid-tDnQ0N4tk2 .item:focus,
.cid-tDnQ0N4tk2 span:focus {
  outline: none;
}
.cid-tDnQ0N4tk2 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tDnQ0N4tk2 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tDnQ0N4tk2 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tDnQ0N4tk2 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tDnQ0N4tk2 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tDnQ0N4tk2 .mbr-section-title {
  color: #232323;
}
.cid-tDnQ0N4tk2 .mbr-text,
.cid-tDnQ0N4tk2 .mbr-section-btn {
  text-align: left;
}
.cid-tDnQ0N4tk2 .item-title {
  text-align: left;
}
.cid-tDnQ0N4tk2 .item-subtitle {
  text-align: center;
}
.cid-tDmT552uD2 {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tDmT552uD2 .mbr-text,
.cid-tDmT552uD2 blockquote {
  color: #767676;
}
.cid-uOu46YYIKb {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #cc3300;
}
@media (max-width: 767px) {
  .cid-uOu46YYIKb .content {
    text-align: center;
  }
  .cid-uOu46YYIKb .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uOu46YYIKb .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-uOu46YYIKb .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-uOu46YYIKb .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-uOu46YYIKb .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uOu46YYIKb .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-uOu46YYIKb .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uOu46YYIKb .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uOu46YYIKb .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uOu46YYIKb .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uOu46YYIKb .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uOu46YYIKb .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uOu46YYIKb P {
  color: #ffffff;
}
.cid-uOu46YYIKb H5 {
  color: #ffffff;
}
.cid-tDmU5uEIii .navbar-dropdown {
  position: relative !important;
}
.cid-tDmU5uEIii .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-tDmU5uEIii .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tDmU5uEIii .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tDmU5uEIii .dropdown-item:hover,
.cid-tDmU5uEIii .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-tDmU5uEIii .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tDmU5uEIii .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tDmU5uEIii .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tDmU5uEIii .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tDmU5uEIii .nav-link {
  position: relative;
}
.cid-tDmU5uEIii .container {
  display: flex;
  margin: auto;
}
.cid-tDmU5uEIii .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tDmU5uEIii .dropdown-menu,
.cid-tDmU5uEIii .navbar.opened {
  background: #cc3300 !important;
}
.cid-tDmU5uEIii .nav-item:focus,
.cid-tDmU5uEIii .nav-link:focus {
  outline: none;
}
.cid-tDmU5uEIii .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tDmU5uEIii .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tDmU5uEIii .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tDmU5uEIii .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tDmU5uEIii .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tDmU5uEIii .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tDmU5uEIii .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: #cc3300;
}
.cid-tDmU5uEIii .navbar.opened {
  transition: all 0.3s;
}
.cid-tDmU5uEIii .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tDmU5uEIii .navbar .navbar-logo img {
  width: auto;
}
.cid-tDmU5uEIii .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tDmU5uEIii .navbar.collapsed {
  justify-content: center;
}
.cid-tDmU5uEIii .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tDmU5uEIii .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tDmU5uEIii .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.2rem);
  }
}
.cid-tDmU5uEIii .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tDmU5uEIii .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tDmU5uEIii .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-tDmU5uEIii .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tDmU5uEIii .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tDmU5uEIii .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tDmU5uEIii .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tDmU5uEIii .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tDmU5uEIii .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tDmU5uEIii .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tDmU5uEIii .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-tDmU5uEIii .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tDmU5uEIii .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tDmU5uEIii .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tDmU5uEIii .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tDmU5uEIii .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tDmU5uEIii .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tDmU5uEIii .navbar.navbar-short {
  min-height: 60px;
}
.cid-tDmU5uEIii .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tDmU5uEIii .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tDmU5uEIii .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tDmU5uEIii .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tDmU5uEIii .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tDmU5uEIii .dropdown-item.active,
.cid-tDmU5uEIii .dropdown-item:active {
  background-color: transparent;
}
.cid-tDmU5uEIii .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tDmU5uEIii .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tDmU5uEIii .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tDmU5uEIii .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cc3300;
}
.cid-tDmU5uEIii .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tDmU5uEIii .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tDmU5uEIii ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tDmU5uEIii .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tDmU5uEIii button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tDmU5uEIii button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tDmU5uEIii button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tDmU5uEIii button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDmU5uEIii button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDmU5uEIii button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tDmU5uEIii nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDmU5uEIii nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tDmU5uEIii nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tDmU5uEIii nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDmU5uEIii .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tDmU5uEIii a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tDmU5uEIii .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-tDmU5uEIii .navbar {
    height: 70px;
  }
  .cid-tDmU5uEIii .navbar.opened {
    height: auto;
  }
  .cid-tDmU5uEIii .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tDmU5vlfCe {
  padding-top: 10rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/hitachi-machine-for-sale-2000x1500.webp");
}
.cid-tDmU5vlfCe .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tDmU5vlfCe .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tDmU5vlfCe .mbr-text,
.cid-tDmU5vlfCe .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-tDnQIVjgY7 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tDnQIVjgY7 img,
.cid-tDnQIVjgY7 .item-img {
  width: 100%;
}
.cid-tDnQIVjgY7 .item:focus,
.cid-tDnQIVjgY7 span:focus {
  outline: none;
}
.cid-tDnQIVjgY7 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tDnQIVjgY7 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tDnQIVjgY7 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tDnQIVjgY7 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tDnQIVjgY7 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tDnQIVjgY7 .mbr-section-title {
  color: #232323;
}
.cid-tDnQIVjgY7 .mbr-text,
.cid-tDnQIVjgY7 .mbr-section-btn {
  text-align: left;
}
.cid-tDnQIVjgY7 .item-title {
  text-align: left;
}
.cid-tDnQIVjgY7 .item-subtitle {
  text-align: center;
}
.cid-tDmU5vRGpb {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tDmU5vRGpb .mbr-text,
.cid-tDmU5vRGpb blockquote {
  color: #767676;
}
.cid-uOu49inY3I {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #cc3300;
}
@media (max-width: 767px) {
  .cid-uOu49inY3I .content {
    text-align: center;
  }
  .cid-uOu49inY3I .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uOu49inY3I .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-uOu49inY3I .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-uOu49inY3I .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-uOu49inY3I .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uOu49inY3I .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-uOu49inY3I .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uOu49inY3I .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uOu49inY3I .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uOu49inY3I .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uOu49inY3I .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uOu49inY3I .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uOu49inY3I P {
  color: #ffffff;
}
.cid-uOu49inY3I H5 {
  color: #ffffff;
}
.cid-tDmWdiOvrO .navbar-dropdown {
  position: relative !important;
}
.cid-tDmWdiOvrO .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-tDmWdiOvrO .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tDmWdiOvrO .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tDmWdiOvrO .dropdown-item:hover,
.cid-tDmWdiOvrO .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-tDmWdiOvrO .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tDmWdiOvrO .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tDmWdiOvrO .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tDmWdiOvrO .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tDmWdiOvrO .nav-link {
  position: relative;
}
.cid-tDmWdiOvrO .container {
  display: flex;
  margin: auto;
}
.cid-tDmWdiOvrO .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tDmWdiOvrO .dropdown-menu,
.cid-tDmWdiOvrO .navbar.opened {
  background: #cc3300 !important;
}
.cid-tDmWdiOvrO .nav-item:focus,
.cid-tDmWdiOvrO .nav-link:focus {
  outline: none;
}
.cid-tDmWdiOvrO .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tDmWdiOvrO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tDmWdiOvrO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tDmWdiOvrO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tDmWdiOvrO .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tDmWdiOvrO .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tDmWdiOvrO .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: #cc3300;
}
.cid-tDmWdiOvrO .navbar.opened {
  transition: all 0.3s;
}
.cid-tDmWdiOvrO .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tDmWdiOvrO .navbar .navbar-logo img {
  width: auto;
}
.cid-tDmWdiOvrO .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tDmWdiOvrO .navbar.collapsed {
  justify-content: center;
}
.cid-tDmWdiOvrO .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tDmWdiOvrO .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tDmWdiOvrO .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.2rem);
  }
}
.cid-tDmWdiOvrO .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tDmWdiOvrO .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tDmWdiOvrO .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-tDmWdiOvrO .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tDmWdiOvrO .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tDmWdiOvrO .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tDmWdiOvrO .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tDmWdiOvrO .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tDmWdiOvrO .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tDmWdiOvrO .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tDmWdiOvrO .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-tDmWdiOvrO .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tDmWdiOvrO .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tDmWdiOvrO .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tDmWdiOvrO .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tDmWdiOvrO .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tDmWdiOvrO .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tDmWdiOvrO .navbar.navbar-short {
  min-height: 60px;
}
.cid-tDmWdiOvrO .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tDmWdiOvrO .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tDmWdiOvrO .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tDmWdiOvrO .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tDmWdiOvrO .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tDmWdiOvrO .dropdown-item.active,
.cid-tDmWdiOvrO .dropdown-item:active {
  background-color: transparent;
}
.cid-tDmWdiOvrO .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tDmWdiOvrO .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tDmWdiOvrO .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tDmWdiOvrO .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cc3300;
}
.cid-tDmWdiOvrO .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tDmWdiOvrO .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tDmWdiOvrO ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tDmWdiOvrO .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tDmWdiOvrO button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tDmWdiOvrO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tDmWdiOvrO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tDmWdiOvrO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDmWdiOvrO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDmWdiOvrO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tDmWdiOvrO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDmWdiOvrO nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tDmWdiOvrO nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tDmWdiOvrO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDmWdiOvrO .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tDmWdiOvrO a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tDmWdiOvrO .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-tDmWdiOvrO .navbar {
    height: 70px;
  }
  .cid-tDmWdiOvrO .navbar.opened {
    height: auto;
  }
  .cid-tDmWdiOvrO .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tDmWdjq6H9 {
  padding-top: 10rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/hitachi-machine-for-sale-2000x1500.webp");
}
.cid-tDmWdjq6H9 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tDmWdjq6H9 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tDmWdjq6H9 .mbr-text,
.cid-tDmWdjq6H9 .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-tDnRi7gWVN {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tDnRi7gWVN img,
.cid-tDnRi7gWVN .item-img {
  width: 100%;
}
.cid-tDnRi7gWVN .item:focus,
.cid-tDnRi7gWVN span:focus {
  outline: none;
}
.cid-tDnRi7gWVN .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tDnRi7gWVN .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tDnRi7gWVN .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tDnRi7gWVN .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tDnRi7gWVN .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tDnRi7gWVN .mbr-section-title {
  color: #232323;
}
.cid-tDnRi7gWVN .mbr-text,
.cid-tDnRi7gWVN .mbr-section-btn {
  text-align: left;
}
.cid-tDnRi7gWVN .item-title {
  text-align: left;
}
.cid-tDnRi7gWVN .item-subtitle {
  text-align: center;
}
.cid-tDmWdjWKwZ {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tDmWdjWKwZ .mbr-text,
.cid-tDmWdjWKwZ blockquote {
  color: #767676;
}
.cid-uOu4c3J5D9 {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #cc3300;
}
@media (max-width: 767px) {
  .cid-uOu4c3J5D9 .content {
    text-align: center;
  }
  .cid-uOu4c3J5D9 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uOu4c3J5D9 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-uOu4c3J5D9 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-uOu4c3J5D9 .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-uOu4c3J5D9 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uOu4c3J5D9 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-uOu4c3J5D9 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uOu4c3J5D9 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uOu4c3J5D9 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uOu4c3J5D9 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uOu4c3J5D9 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uOu4c3J5D9 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uOu4c3J5D9 P {
  color: #ffffff;
}
.cid-uOu4c3J5D9 H5 {
  color: #ffffff;
}
