body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Anton', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-2 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 2.4rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3rem;
}
.display-4 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-7 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 2.4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.1rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.92rem;
    font-size: calc( 1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #f0ca26 !important;
}
.bg-success {
  background-color: #409720 !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #030303 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #f0ca26 !important;
  border-color: #f0ca26 !important;
  color: #161201 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #b3940c !important;
  border-color: #b3940c !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #161201 !important;
  background-color: #b3940c !important;
  border-color: #b3940c !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff0f00 !important;
  border-color: #ff0f00 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #a80a00 !important;
  border-color: #a80a00 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #a80a00 !important;
  border-color: #a80a00 !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #409720 !important;
  border-color: #409720 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #224f11 !important;
  border-color: #224f11 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #224f11 !important;
  border-color: #224f11 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #030303 !important;
  border-color: #030303 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f0ca26;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #b3940c !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #161201 !important;
  background-color: #f0ca26 !important;
  border-color: #f0ca26 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff0f00;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #a80a00 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff0f00 !important;
  border-color: #ff0f00 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #409720;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #224f11 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #409720 !important;
  border-color: #409720 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #030303;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #030303 !important;
  border-color: #030303 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #f0ca26 !important;
}
.text-secondary {
  color: #ff0f00 !important;
}
.text-success {
  color: #409720 !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #030303 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #a5880b !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #990900 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #1c430e !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #000000 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #f0ca26;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #030303;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #f0ca26;
  border-color: #f0ca26;
  color: #2d2503;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #f0ca26;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fdf9e5;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #7ddc5a;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #b5b5b5;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #f0ca26 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #f0ca26;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #f0ca26;
  color: #000000;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #f0ca26;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #f0ca26;
  border-bottom-color: #f0ca26;
}
.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: #f0ca26 !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: #ff0f00 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23f0ca26' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.menu1 {
  font-family: 'Heebo', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
}
.menu1 > .mbr-iconfont {
  font-size: 0.8rem;
}
.new-font {
  font-family: 'Oswald', sans-serif;
  font-size: 3.5rem;
  line-height: 1.5;
}
.new-font > .mbr-iconfont {
  font-size: 3.5rem;
}
.cid-sFCw1qGFAI .navbar-dropdown {
  position: relative !important;
}
.cid-sFCw1qGFAI .navbar-dropdown {
  position: absolute !important;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFCw1qGFAI .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFCw1qGFAI .dropdown-item:hover,
.cid-sFCw1qGFAI .dropdown-item:focus {
  background: #f0ca26 !important;
  color: white !important;
}
.cid-sFCw1qGFAI .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFCw1qGFAI .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFCw1qGFAI .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFCw1qGFAI .nav-link {
  position: relative;
}
.cid-sFCw1qGFAI .container {
  display: flex;
  margin: auto;
}
.cid-sFCw1qGFAI .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFCw1qGFAI .dropdown-menu,
.cid-sFCw1qGFAI .navbar.opened {
  background: #ff0f00 !important;
}
.cid-sFCw1qGFAI .nav-item:focus,
.cid-sFCw1qGFAI .nav-link:focus {
  outline: none;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFCw1qGFAI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFCw1qGFAI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFCw1qGFAI .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(255, 15, 0, 0);
}
.cid-sFCw1qGFAI .navbar.opened {
  transition: all 0.3s;
}
.cid-sFCw1qGFAI .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFCw1qGFAI .navbar .navbar-logo img {
  width: auto;
}
.cid-sFCw1qGFAI .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFCw1qGFAI .navbar.collapsed {
  justify-content: center;
}
.cid-sFCw1qGFAI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFCw1qGFAI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sFCw1qGFAI .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFCw1qGFAI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFCw1qGFAI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFCw1qGFAI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFCw1qGFAI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFCw1qGFAI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFCw1qGFAI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFCw1qGFAI .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFCw1qGFAI .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFCw1qGFAI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFCw1qGFAI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFCw1qGFAI .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sFCw1qGFAI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFCw1qGFAI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFCw1qGFAI .dropdown-item.active,
.cid-sFCw1qGFAI .dropdown-item:active {
  background-color: transparent;
}
.cid-sFCw1qGFAI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFCw1qGFAI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff0f00;
}
.cid-sFCw1qGFAI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFCw1qGFAI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFCw1qGFAI ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFCw1qGFAI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFCw1qGFAI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sFCw1qGFAI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar {
    height: 70px;
  }
  .cid-sFCw1qGFAI .navbar.opened {
    height: auto;
  }
  .cid-sFCw1qGFAI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tBpLgqZP2j {
  padding-top: 125px;
  padding-bottom: 25px;
  background: linear-gradient(0deg, #ff0f00, #232323);
}
.cid-tBpLgqZP2j .news {
  width: 250px;
  background-color: #ff0f00;
  height: 28px;
}
.cid-tBpLgqZP2j .news-scroll a {
  text-decoration: none;
}
.cid-tBpLgqZP2j .dot {
  height: 6px;
  width: 6px;
  margin-left: 3px;
  margin-right: 3px;
  margin-top: 2px !important;
  background-color: #d20320;
  border-radius: 50%;
  display: inline-block;
}
.cid-tBpLgqZP2j DIV {
  color: #ffffff;
}
.cid-tBpLgqZP2j .mbr-text {
  color: #030303;
  text-align: left;
}
.cid-tBpLgqZP2j .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tBrjxEnaks {
  padding-top: 4rem;
  padding-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-tBrjxEnaks .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tBrjxEnaks .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tBrjxEnaks .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-tBrjxEnaks .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tBrjxEnaks .mbr-text,
.cid-tBrjxEnaks .mbr-section-btn {
  color: #353535;
}
.cid-tBrjxEnaks .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-sFzFvgBfc0 {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/fondo1-1920x1233.webp");
}
.cid-sFzFvgBfc0 .mbr-overlay {
  background: #ff0f00;
  opacity: 0.3;
}
.cid-sFzFvgBfc0 img,
.cid-sFzFvgBfc0 .item-img {
  width: 100%;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-sFzFvgBfc0 .item:focus,
.cid-sFzFvgBfc0 span:focus {
  outline: none;
}
.cid-sFzFvgBfc0 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sFzFvgBfc0 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sFzFvgBfc0 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-sFzFvgBfc0 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sFzFvgBfc0 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-sFzFvgBfc0 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-sFzFvgBfc0 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sFzFvgBfc0 .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-sFzFvgBfc0 .mbr-text,
.cid-sFzFvgBfc0 .mbr-section-btn {
  text-align: left;
  color: #232323;
}
.cid-sFzFvgBfc0 .item-title {
  text-align: left;
  color: #000000;
}
.cid-sFzFvgBfc0 .item-subtitle {
  text-align: left;
}
.cid-tBIhqQqoiG {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/fondo1-1920x1233.webp");
}
.cid-tBIhqQqoiG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBIhqQqoiG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tBIhqQqoiG .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tBIhqQqoiG .row {
  flex-direction: row-reverse;
}
.cid-tBIhqQqoiG img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tBIhqQqoiG .text-wrapper {
    padding: 2rem;
  }
}
.cid-tBIhqQqoiG .mbr-section-title {
  text-align: center;
}
.cid-tByOt2qrjI {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/fondo1-1920x1233.webp");
}
.cid-tByOt2qrjI .mbr-overlay {
  background: #ff0f00;
  opacity: 0.3;
}
.cid-tByOt2qrjI img,
.cid-tByOt2qrjI .item-img {
  width: 100%;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-tByOt2qrjI .item:focus,
.cid-tByOt2qrjI span:focus {
  outline: none;
}
.cid-tByOt2qrjI .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tByOt2qrjI .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tByOt2qrjI .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tByOt2qrjI .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tByOt2qrjI .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tByOt2qrjI .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tByOt2qrjI .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tByOt2qrjI .mbr-section-title {
  color: #ffffff;
  text-align: right;
}
.cid-tByOt2qrjI .mbr-text,
.cid-tByOt2qrjI .mbr-section-btn {
  text-align: left;
}
.cid-tByOt2qrjI .item-title {
  text-align: left;
}
.cid-tByOt2qrjI .item-subtitle {
  text-align: left;
}
.cid-sFAw7z51L3 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sFAw7z51L3 img {
  width: 120px;
  margin: auto;
}
.cid-sFAw7z51L3 .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sFAw7z51L3 .card {
    max-width: 12.5%;
  }
}
.cid-sFAw7z51L3 .mbr-section-subtitle {
  color: #353535;
}
.cid-sFzxmVl7J6 {
  padding-top: 2rem;
  padding-bottom: 0rem;
}
.cid-sFzxmVl7J6 .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-sFzxmVl7J6 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sFzxmVl7J6 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-sFzxmVl7J6 .text-wrapper {
    padding: 0 2rem;
    padding: 0 4rem;
  }
}
@media (max-width: 768px) {
  .cid-sFzxmVl7J6 .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sFzxmVl7J6 .mbr-text,
.cid-sFzxmVl7J6 .mbr-section-btn {
  color: #353535;
}
.cid-sFzxmVl7J6 .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-ueW9S4G1lA {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ff1305;
}
.cid-ueW9S4G1lA .mbr-fallback-image.disabled {
  display: none;
}
.cid-ueW9S4G1lA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ueW9S4G1lA [class^="socicon-"]:before,
.cid-ueW9S4G1lA [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-ueW9S4G1lA .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #6592e6;
  border-width: 2px;
  transition: all .3s;
  border-color: #6592e6;
}
.cid-ueW9S4G1lA .btn-social:hover {
  background: #6592e6;
}
.cid-ueW9S4G1lA .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-sFzz5E692j {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-6-1920x1440.webp");
}
.cid-sFzz5E692j .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-sFzz5E692j .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sFzz5E692j .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-sFzz5E692j .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-sFzz5E692j .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sFzz5E692j .mbr-section-title {
  color: #ffffff;
}
.cid-sFzz5E692j .mbr-text,
.cid-sFzz5E692j .mbr-section-btn {
  color: #bbbbbb;
}
.cid-sFzyUE9AaP {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-6-1920x1440.webp");
}
@media (min-width: 1500px) {
  .cid-sFzyUE9AaP .container {
    max-width: 1400px;
  }
}
.cid-sFzyUE9AaP .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #ffffff;
  margin-bottom: 2rem;
}
.cid-sFzyUE9AaP .card-wrapper {
  margin-top: 3rem;
}
.cid-sFzyUE9AaP .row {
  justify-content: center;
}
.cid-sFzyUE9AaP .card-title,
.cid-sFzyUE9AaP .iconfont-wrapper {
  color: #ffffff;
}
.cid-sFzyUE9AaP .card-text {
  color: #ffffff;
}
.cid-sFzyUE9AaP .mbr-section-title {
  color: #ffffff;
}
.cid-vgx67rpWwr {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/mbr-6-1920x1440.webp");
}
.cid-vgx67rpWwr .mbr-fallback-image.disabled {
  display: none;
}
.cid-vgx67rpWwr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 768px) {
  .cid-vgx67rpWwr .container-fluid {
    padding: 0;
  }
}
.cid-vgx67rpWwr .embla__button--next,
.cid-vgx67rpWwr .embla__button--prev {
  display: flex;
}
.cid-vgx67rpWwr .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-vgx67rpWwr .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-vgx67rpWwr .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-vgx67rpWwr .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-vgx67rpWwr .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vgx67rpWwr .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vgx67rpWwr .embla__button {
    top: auto;
    bottom: 1rem;
  }
}
.cid-vgx67rpWwr .embla {
  position: relative;
  width: 100%;
}
.cid-vgx67rpWwr .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-vgx67rpWwr .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vgx67rpWwr .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vgx67rpWwr .embla__slide a {
  cursor: grab;
}
.cid-vgx67rpWwr .embla__slide a:active {
  cursor: grabbing;
}
.cid-vgx67rpWwr .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vgx67rpWwr .embla__slide {
  position: relative;
  min-width: 490px;
  max-width: 490px;
}
@media (max-width: 768px) {
  .cid-vgx67rpWwr .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-vgx67rpWwr .embla__slide a {
  display: block;
  width: 100%;
}
.cid-vgx67rpWwr .item-menu-overlay {
  border-radius: 2rem;
}
.cid-vgx67rpWwr .mbr-section-title {
  color: #232323;
}
.cid-vgx67rpWwr .mbr-section-subtitle {
  color: #232323;
}
.cid-vgx67rpWwr .mbr-box {
  color: #ffffff;
}
.cid-vgx67rpWwr .slide-content {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-vgx67rpWwr img,
.cid-vgx67rpWwr .item-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-vgx67rpWwr .item-wrapper {
  position: relative;
}
.cid-vgx67rpWwr .content-head {
  max-width: 800px;
}
.cid-sFAyMcKwph {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/mbr-6-1920x1440.webp");
}
.cid-sFAyMcKwph .media-container-row {
  justify-content: space-between;
}
.cid-sFAyMcKwph .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-sFAyMcKwph .text-content {
    max-width: none;
  }
}
.cid-sFAyMcKwph .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #e6c63b;
  border: 2px solid #e6c63b;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-sFAyMcKwph .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-sFAyMcKwph .mbr-iconfont-social:hover {
  background-color: #e6c63b;
  color: #000000;
}
@media (max-width: 768px) {
  .cid-sFAyMcKwph .icons {
    justify-content: center !important;
  }
  .cid-sFAyMcKwph .text-content * {
    text-align: center;
  }
}
.cid-sFAyMcKwph .mbr-section-title {
  color: #e6c63b;
  text-align: right;
}
.cid-sFAyMcKwph P {
  color: #000000;
}
.cid-sFzDs3t9EG {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sFzDs3t9EG .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sFzDs3t9EG form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-sFzDs3t9EG form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-sFzDs3t9EG form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-sFzDs3t9EG .mbr-section-title {
  color: #000000;
}
.cid-sFzDs3t9EG .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-sFzIA7KGYz {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/mbr-6-1920x1440.webp");
}
.cid-sFzIA7KGYz .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-sFzIA7KGYz .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-sFzIA7KGYz .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sFzIA7KGYz .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-sFzIA7KGYz .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #f0ca26;
}
.cid-sFzIA7KGYz P {
  text-align: left;
  color: #030303;
}
.cid-sFzIA7KGYz .card-title {
  text-align: left;
  color: #ff0f00;
}
.cid-sFzIA7KGYz .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sFzIA7KGYz .mbr-section-title {
  color: #ffffff;
}
.cid-tDM9iVSFXJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tDM9iVSFXJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDM9iVSFXJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDM9iVSFXJ .google-map {
  height: 350px;
  position: relative;
}
.cid-tDM9iVSFXJ .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tDM9iVSFXJ .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tDM9iVSFXJ .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tDM9iVSFXJ .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sFCygHrmNf {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-sFCygHrmNf .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sFCygHrmNf .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sFCygHrmNf .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sFCygHrmNf .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sFCygHrmNf .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sFCygHrmNf .row .foot-menu li p {
  margin: 0;
}
.cid-sFCygHrmNf .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sFCygHrmNf .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sFCygHrmNf .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sFCygHrmNf .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sFCygHrmNf .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sFCygHrmNf .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sFCygHrmNf .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sFCygHrmNf .row .row-copirayt p {
  width: 100%;
}
.cid-sFCygHrmNf foot-menu-item {
  color: #e6c63b;
}
.cid-tBn2Gyqto2 .float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 19px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 80px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}
.cid-tBn2Gyqto2 .my-float {
  margin-top: 16px;
}
.cid-tBn2Gyqto2 P {
  color: #232323;
}
.cid-tBn2Gyqto2 DIV {
  color: #ffffff;
}
.cid-tBn2Gyqto2 H10 {
  color: #767676;
}
.cid-tBn2Gyqto2 .hidden {
  display: none;
}
.cid-tBftDyaWX8 .navbar-dropdown {
  position: relative !important;
}
.cid-tBftDyaWX8 .navbar-dropdown {
  position: absolute !important;
}
.cid-tBftDyaWX8 .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-tBftDyaWX8 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tBftDyaWX8 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tBftDyaWX8 .dropdown-item:hover,
.cid-tBftDyaWX8 .dropdown-item:focus {
  background: #f0ca26 !important;
  color: white !important;
}
.cid-tBftDyaWX8 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tBftDyaWX8 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tBftDyaWX8 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tBftDyaWX8 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tBftDyaWX8 .nav-link {
  position: relative;
}
.cid-tBftDyaWX8 .container {
  display: flex;
  margin: auto;
}
.cid-tBftDyaWX8 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tBftDyaWX8 .dropdown-menu,
.cid-tBftDyaWX8 .navbar.opened {
  background: #ff0f00 !important;
}
.cid-tBftDyaWX8 .nav-item:focus,
.cid-tBftDyaWX8 .nav-link:focus {
  outline: none;
}
.cid-tBftDyaWX8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tBftDyaWX8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tBftDyaWX8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tBftDyaWX8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tBftDyaWX8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tBftDyaWX8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tBftDyaWX8 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(255, 15, 0, 0);
}
.cid-tBftDyaWX8 .navbar.opened {
  transition: all 0.3s;
}
.cid-tBftDyaWX8 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tBftDyaWX8 .navbar .navbar-logo img {
  width: auto;
}
.cid-tBftDyaWX8 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tBftDyaWX8 .navbar.collapsed {
  justify-content: center;
}
.cid-tBftDyaWX8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tBftDyaWX8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tBftDyaWX8 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tBftDyaWX8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tBftDyaWX8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tBftDyaWX8 .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-tBftDyaWX8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tBftDyaWX8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tBftDyaWX8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tBftDyaWX8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tBftDyaWX8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tBftDyaWX8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tBftDyaWX8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tBftDyaWX8 .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-tBftDyaWX8 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tBftDyaWX8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tBftDyaWX8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tBftDyaWX8 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tBftDyaWX8 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tBftDyaWX8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tBftDyaWX8 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tBftDyaWX8 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tBftDyaWX8 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tBftDyaWX8 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tBftDyaWX8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tBftDyaWX8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tBftDyaWX8 .dropdown-item.active,
.cid-tBftDyaWX8 .dropdown-item:active {
  background-color: transparent;
}
.cid-tBftDyaWX8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tBftDyaWX8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tBftDyaWX8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tBftDyaWX8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff0f00;
}
.cid-tBftDyaWX8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tBftDyaWX8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tBftDyaWX8 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tBftDyaWX8 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tBftDyaWX8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tBftDyaWX8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tBftDyaWX8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tBftDyaWX8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tBftDyaWX8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tBftDyaWX8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tBftDyaWX8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tBftDyaWX8 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tBftDyaWX8 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tBftDyaWX8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tBftDyaWX8 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tBftDyaWX8 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tBftDyaWX8 .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-tBftDyaWX8 .navbar {
    height: 70px;
  }
  .cid-tBftDyaWX8 .navbar.opened {
    height: auto;
  }
  .cid-tBftDyaWX8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tBftDzmslM {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/oil-4-800x500.webp");
}
@media (max-width: 991px) {
  .cid-tBftDzmslM .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tBftDzmslM .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tBftDzmslM .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-tBftDzmslM .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tBftDzmslM .mbr-text,
.cid-tBftDzmslM .mbr-section-btn {
  color: #353535;
}
.cid-tBftDzmslM .mbr-section-title {
  color: #232323;
}
.cid-vgvi0cs9l0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vgvi0cs9l0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vgvi0cs9l0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vgvi0cs9l0 .row {
  flex-direction: row-reverse;
}
.cid-vgqpXDlnsA {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #22396a;
}
.cid-vgqpXDlnsA .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-vgqpXDlnsA .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #f0ca26;
}
.cid-vgqpXDlnsA .svg-top .st0 {
  fill: #22396a;
}
@media (max-width: 992px) {
  .cid-vgqpXDlnsA .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
@media (min-width: 1400px) {
  .cid-vgqpXDlnsA .col-12 {
    padding: 0 2rem;
  }
  .cid-vgqpXDlnsA .row {
    margin: 0 -2rem;
  }
}
.cid-vgqpXDlnsA .mbr-text,
.cid-vgqpXDlnsA .mbr-section-btn {
  color: #ffffff;
}
.cid-vgqpXDlnsA .mbr-section-title {
  color: #ffffff;
}
.cid-tCrTlml9uS {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #22396a;
}
.cid-tCrTlml9uS img,
.cid-tCrTlml9uS .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tCrTlml9uS .item:focus,
.cid-tCrTlml9uS span:focus {
  outline: none;
}
.cid-tCrTlml9uS .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tCrTlml9uS .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #22396a;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tCrTlml9uS .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tCrTlml9uS .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tCrTlml9uS .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tCrTlml9uS .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tCrTlml9uS .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tCrTlml9uS .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tCrTlml9uS .mbr-text,
.cid-tCrTlml9uS .mbr-section-btn {
  text-align: left;
  color: #fafafa;
}
.cid-tCrTlml9uS .item-title {
  text-align: left;
  color: #bed3f9;
}
.cid-tCrTlml9uS .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-tCrTlml9uS .mbr-section-subtitle {
  color: #ffe161;
}
.cid-tBftDBgvgZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #22396a;
}
@media (max-width: 991px) {
  .cid-tBftDBgvgZ .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tBftDBgvgZ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tBftDBgvgZ .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-tBftDBgvgZ .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tBftDBgvgZ .mbr-text,
.cid-tBftDBgvgZ .mbr-section-btn {
  text-align: left;
  color: #fafafa;
}
.cid-tBftDBgvgZ .mbr-section-title {
  color: #bed3f9;
}
.cid-tBfYNFDjjf {
  display: flex;
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/background12.webp");
}
.cid-tBfYNFDjjf .mbr-overlay {
  background-color: #353535;
  opacity: 0.3;
}
.cid-tBfYNFDjjf .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-tBfYNFDjjf {
    align-items: flex-end;
  }
  .cid-tBfYNFDjjf .row {
    justify-content: flex-start;
  }
  .cid-tBfYNFDjjf .content-wrap {
    width: 100%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tBfYNFDjjf .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tBfYNFDjjf {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tBfYNFDjjf .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tBfYNFDjjf .content-wrap {
    width: 100%;
  }
}
.cid-vgv8tktobg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #22396a;
}
.cid-vgv8tktobg .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 260px;
  max-width: 260px;
}
@media (max-width: 767px) {
  .cid-vgv8tktobg .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-vgv8tktobg .embla__slide .slide-content {
  width: 100%;
}
.cid-vgv8tktobg .embla__slide .slide-content .item-wrapper .item-img {
  margin-bottom: 16px;
}
.cid-vgv8tktobg .embla__slide .slide-content .item-wrapper .item-img img {
  height: 180px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vgv8tktobg .embla__slide .slide-content .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-vgv8tktobg .embla__slide .slide-content .item-wrapper .item-content {
  position: relative;
  z-index: 1;
}
.cid-vgv8tktobg .embla__slide .slide-content .item-wrapper .item-content .item-desc {
  margin-bottom: 0;
  opacity: .7;
}
.cid-vgv8tktobg .embla__button--next,
.cid-vgv8tktobg .embla__button--prev {
  display: flex;
}
.cid-vgv8tktobg .embla__button {
  bottom: 0;
  width: 40px;
  height: 40px;
  font-size: 26px;
  background: transparent !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-vgv8tktobg .embla__button:hover {
  opacity: .7 !important;
}
.cid-vgv8tktobg .embla__button.embla__button--prev {
  right: 48px;
}
.cid-vgv8tktobg .embla__button.embla__button--next {
  right: 0;
}
.cid-vgv8tktobg .embla {
  position: relative;
  width: 100%;
}
.cid-vgv8tktobg .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-vgv8tktobg .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vgv8tktobg .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vgv8tktobg .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vgv8tktobg .item-menu-overlay {
  opacity: 0 !important;
}
.cid-vgv8tktobg .item-desc {
  color: #ffffff;
}
.cid-vgNQyLjILO {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vgNQyLjILO .mbr-fallback-image.disabled {
  display: none;
}
.cid-vgNQyLjILO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vgNQyLjILO .row {
  flex-direction: row-reverse;
}
.cid-vgNQyLjILO .mbr-description {
  color: #2a4e99;
}
.cid-tBftDOM9g3 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tBftDOM9g3 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tBftDOM9g3 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tBftDOM9g3 .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tBftDOM9g3 .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tBftDOM9g3 .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tBftDOM9g3 .row .foot-menu li p {
  margin: 0;
}
.cid-tBftDOM9g3 .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tBftDOM9g3 .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tBftDOM9g3 .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tBftDOM9g3 .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tBftDOM9g3 .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tBftDOM9g3 .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tBftDOM9g3 .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tBftDOM9g3 .row .row-copirayt p {
  width: 100%;
}
.cid-tBftDOM9g3 foot-menu-item {
  color: #e6c63b;
}
.cid-tGCxC2Ykc0 .float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 19px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 80px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}
.cid-tGCxC2Ykc0 .my-float {
  margin-top: 16px;
}
.cid-tGCxC2Ykc0 P {
  color: #232323;
}
.cid-tGCxC2Ykc0 DIV {
  color: #ffffff;
}
.cid-tGCxC2Ykc0 H10 {
  color: #767676;
}
.cid-tGCxC2Ykc0 .hidden {
  display: none;
}
.cid-tBftDyaWX8 .navbar-dropdown {
  position: relative !important;
}
.cid-tBftDyaWX8 .navbar-dropdown {
  position: absolute !important;
}
.cid-tBftDyaWX8 .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-tBftDyaWX8 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tBftDyaWX8 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tBftDyaWX8 .dropdown-item:hover,
.cid-tBftDyaWX8 .dropdown-item:focus {
  background: #f0ca26 !important;
  color: white !important;
}
.cid-tBftDyaWX8 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tBftDyaWX8 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tBftDyaWX8 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tBftDyaWX8 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tBftDyaWX8 .nav-link {
  position: relative;
}
.cid-tBftDyaWX8 .container {
  display: flex;
  margin: auto;
}
.cid-tBftDyaWX8 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tBftDyaWX8 .dropdown-menu,
.cid-tBftDyaWX8 .navbar.opened {
  background: #ff0f00 !important;
}
.cid-tBftDyaWX8 .nav-item:focus,
.cid-tBftDyaWX8 .nav-link:focus {
  outline: none;
}
.cid-tBftDyaWX8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tBftDyaWX8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tBftDyaWX8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tBftDyaWX8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tBftDyaWX8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tBftDyaWX8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tBftDyaWX8 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(255, 15, 0, 0);
}
.cid-tBftDyaWX8 .navbar.opened {
  transition: all 0.3s;
}
.cid-tBftDyaWX8 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tBftDyaWX8 .navbar .navbar-logo img {
  width: auto;
}
.cid-tBftDyaWX8 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tBftDyaWX8 .navbar.collapsed {
  justify-content: center;
}
.cid-tBftDyaWX8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tBftDyaWX8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tBftDyaWX8 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tBftDyaWX8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tBftDyaWX8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tBftDyaWX8 .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-tBftDyaWX8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tBftDyaWX8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tBftDyaWX8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tBftDyaWX8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tBftDyaWX8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tBftDyaWX8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tBftDyaWX8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tBftDyaWX8 .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-tBftDyaWX8 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tBftDyaWX8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tBftDyaWX8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tBftDyaWX8 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tBftDyaWX8 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tBftDyaWX8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tBftDyaWX8 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tBftDyaWX8 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tBftDyaWX8 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tBftDyaWX8 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tBftDyaWX8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tBftDyaWX8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tBftDyaWX8 .dropdown-item.active,
.cid-tBftDyaWX8 .dropdown-item:active {
  background-color: transparent;
}
.cid-tBftDyaWX8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tBftDyaWX8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tBftDyaWX8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tBftDyaWX8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff0f00;
}
.cid-tBftDyaWX8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tBftDyaWX8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tBftDyaWX8 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tBftDyaWX8 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tBftDyaWX8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tBftDyaWX8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tBftDyaWX8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tBftDyaWX8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tBftDyaWX8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tBftDyaWX8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tBftDyaWX8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tBftDyaWX8 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tBftDyaWX8 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tBftDyaWX8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tBftDyaWX8 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tBftDyaWX8 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tBftDyaWX8 .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-tBftDyaWX8 .navbar {
    height: 70px;
  }
  .cid-tBftDyaWX8 .navbar.opened {
    height: auto;
  }
  .cid-tBftDyaWX8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tDMkfwxtwc {
  padding-top: 9rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/deere-team-1366x768.webp");
}
.cid-tDMkfwxtwc .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tDMkfwxtwc .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tDMkfwxtwc .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tDMkfwxtwc .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-tDMkfwxtwc .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tDMkfwxtwc .mbr-text,
.cid-tDMkfwxtwc .mbr-section-btn {
  color: #353535;
}
.cid-tDMkfwxtwc .mbr-section-title {
  color: #ffffff;
}
.cid-ueWhEHNtje {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ueWhEHNtje .mbr-fallback-image.disabled {
  display: none;
}
.cid-ueWhEHNtje .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ueWhEHNtje [class^="socicon-"]:before,
.cid-ueWhEHNtje [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-ueWhEHNtje .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #6592e6;
  border-width: 2px;
  transition: all .3s;
  border-color: #6592e6;
}
.cid-ueWhEHNtje .btn-social:hover {
  background: #6592e6;
}
.cid-ueWhEHNtje .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-tBg5r4mL6S {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/mbr-1920x1280.webp");
}
.cid-tBg5r4mL6S .mbr-overlay {
  background: #030303;
  opacity: 0.2;
}
.cid-tBg5r4mL6S img,
.cid-tBg5r4mL6S .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tBg5r4mL6S .item:focus,
.cid-tBg5r4mL6S span:focus {
  outline: none;
}
.cid-tBg5r4mL6S .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tBg5r4mL6S .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tBg5r4mL6S .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tBg5r4mL6S .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tBg5r4mL6S .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tBg5r4mL6S .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tBg5r4mL6S .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tBg5r4mL6S .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tBg5r4mL6S .mbr-text,
.cid-tBg5r4mL6S .mbr-section-btn {
  text-align: left;
}
.cid-tBg5r4mL6S .item-title {
  text-align: left;
}
.cid-tBg5r4mL6S .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-tBg5r4mL6S .mbr-section-subtitle {
  color: #ffe161;
}
.cid-tBg53KnYrw {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/maqteam-wall-1-1600x699.webp");
}
@media (max-width: 991px) {
  .cid-tBg53KnYrw .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tBg53KnYrw .row {
  flex-direction: row-reverse;
}
.cid-tBg53KnYrw img {
  width: 100%;
}
.cid-tBz9Y7EaDA {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/mbr-1920x1280.webp");
}
.cid-tBz9Y7EaDA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBz9Y7EaDA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBz9Y7EaDA .item {
  padding-bottom: 2rem;
}
.cid-tBz9Y7EaDA .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tBz9Y7EaDA .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tBz9Y7EaDA .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tBz9Y7EaDA .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tBz9Y7EaDA .carousel-control,
.cid-tBz9Y7EaDA .close {
  background: #1b1b1b;
}
.cid-tBz9Y7EaDA .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tBz9Y7EaDA .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tBz9Y7EaDA .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tBz9Y7EaDA .carousel-control-next span {
  margin-left: 5px;
}
.cid-tBz9Y7EaDA .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tBz9Y7EaDA .close::before {
  content: '\e91a';
}
.cid-tBz9Y7EaDA .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tBz9Y7EaDA .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tBz9Y7EaDA .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tBz9Y7EaDA .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tBz9Y7EaDA .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tBz9Y7EaDA .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tBz9Y7EaDA .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tBz9Y7EaDA .carousel-indicators li.active,
.cid-tBz9Y7EaDA .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tBz9Y7EaDA .carousel-indicators li::after,
.cid-tBz9Y7EaDA .carousel-indicators li::before {
  content: none;
}
.cid-tBz9Y7EaDA .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tBz9Y7EaDA .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tBz9Y7EaDA .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tBz9Y7EaDA .carousel-indicators {
    display: none;
  }
}
.cid-tBz9Y7EaDA .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tBz9Y7EaDA .carousel-inner > .active {
  display: block;
}
.cid-tBz9Y7EaDA .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tBz9Y7EaDA .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tBz9Y7EaDA .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tBz9Y7EaDA .carousel-control,
  .cid-tBz9Y7EaDA .carousel-indicators,
  .cid-tBz9Y7EaDA .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tBz9Y7EaDA .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tBz9Y7EaDA .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tBz9Y7EaDA .carousel-indicators .active,
.cid-tBz9Y7EaDA .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tBz9Y7EaDA .carousel-indicators .active {
  background: #fff;
}
.cid-tBz9Y7EaDA .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tBz9Y7EaDA .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tBz9Y7EaDA .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tBz9Y7EaDA .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tBz9Y7EaDA .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tBz9Y7EaDA .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tBz9Y7EaDA .carousel {
  width: 100%;
}
.cid-tBz9Y7EaDA .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tBz9Y7EaDA .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tBz9Y7EaDA .modal.fade .modal-dialog,
.cid-tBz9Y7EaDA .modal.in .modal-dialog {
  transform: none;
}
.cid-tBz9Y7EaDA .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tBz9Y7EaDA H6 {
  text-align: center;
}
.cid-tBz9Y7EaDA H3 {
  color: #ffffff;
}
.cid-vgxiOElcov {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/mbr-1920x1280.webp");
}
.cid-vgxiOElcov .mbr-fallback-image.disabled {
  display: none;
}
.cid-vgxiOElcov .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vgxiOElcov .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vgxiOElcov .row {
  flex-direction: row-reverse;
}
.cid-vgxiOElcov img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-vgxiOElcov .text-wrapper {
    padding: 2rem;
  }
}
.cid-vgxiOElcov .mbr-section-title {
  text-align: center;
}
.cid-tBfvv05rcC {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/mbr-1920x1280.webp");
}
@media (max-width: 767px) {
  .cid-tBfvv05rcC .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tBfvv05rcC .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tBfvv05rcC .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tBfvv05rcC .card-wrapper {
  border-radius: 4px;
  background-color: #edf5e1;
  background-color: transparent;
}
.cid-tBfvv05rcC .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tBfvv05rcC .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tBfvv05rcC .mbr-text {
  color: #ffffff;
}
.cid-tBfvv05rcC .card-title {
  color: #ffe161;
}
.cid-tBfvv05rcC .price {
  color: #05386b;
}
.cid-tBftDOM9g3 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tBftDOM9g3 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tBftDOM9g3 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tBftDOM9g3 .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tBftDOM9g3 .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tBftDOM9g3 .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tBftDOM9g3 .row .foot-menu li p {
  margin: 0;
}
.cid-tBftDOM9g3 .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tBftDOM9g3 .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tBftDOM9g3 .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tBftDOM9g3 .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tBftDOM9g3 .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tBftDOM9g3 .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tBftDOM9g3 .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tBftDOM9g3 .row .row-copirayt p {
  width: 100%;
}
.cid-tBftDOM9g3 foot-menu-item {
  color: #e6c63b;
}
.cid-tIqzu64sEh .float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 19px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 80px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}
.cid-tIqzu64sEh .my-float {
  margin-top: 16px;
}
.cid-tIqzu64sEh P {
  color: #232323;
}
.cid-tIqzu64sEh DIV {
  color: #ffffff;
}
.cid-tIqzu64sEh H10 {
  color: #767676;
}
.cid-tIqzu64sEh .hidden {
  display: none;
}
.cid-tCrXqBKGIy .navbar-dropdown {
  position: relative !important;
}
.cid-tCrXqBKGIy .navbar-dropdown {
  position: absolute !important;
}
.cid-tCrXqBKGIy .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-tCrXqBKGIy .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tCrXqBKGIy .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tCrXqBKGIy .dropdown-item:hover,
.cid-tCrXqBKGIy .dropdown-item:focus {
  background: #f0ca26 !important;
  color: white !important;
}
.cid-tCrXqBKGIy .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tCrXqBKGIy .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tCrXqBKGIy .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tCrXqBKGIy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tCrXqBKGIy .nav-link {
  position: relative;
}
.cid-tCrXqBKGIy .container {
  display: flex;
  margin: auto;
}
.cid-tCrXqBKGIy .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tCrXqBKGIy .dropdown-menu,
.cid-tCrXqBKGIy .navbar.opened {
  background: #ff0f00 !important;
}
.cid-tCrXqBKGIy .nav-item:focus,
.cid-tCrXqBKGIy .nav-link:focus {
  outline: none;
}
.cid-tCrXqBKGIy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tCrXqBKGIy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tCrXqBKGIy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tCrXqBKGIy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tCrXqBKGIy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tCrXqBKGIy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tCrXqBKGIy .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(255, 15, 0, 0);
}
.cid-tCrXqBKGIy .navbar.opened {
  transition: all 0.3s;
}
.cid-tCrXqBKGIy .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tCrXqBKGIy .navbar .navbar-logo img {
  width: auto;
}
.cid-tCrXqBKGIy .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tCrXqBKGIy .navbar.collapsed {
  justify-content: center;
}
.cid-tCrXqBKGIy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tCrXqBKGIy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tCrXqBKGIy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tCrXqBKGIy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tCrXqBKGIy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tCrXqBKGIy .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-tCrXqBKGIy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tCrXqBKGIy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tCrXqBKGIy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tCrXqBKGIy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tCrXqBKGIy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tCrXqBKGIy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tCrXqBKGIy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tCrXqBKGIy .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-tCrXqBKGIy .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tCrXqBKGIy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tCrXqBKGIy .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tCrXqBKGIy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tCrXqBKGIy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tCrXqBKGIy .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tCrXqBKGIy .navbar.navbar-short {
  min-height: 60px;
}
.cid-tCrXqBKGIy .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tCrXqBKGIy .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tCrXqBKGIy .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tCrXqBKGIy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tCrXqBKGIy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tCrXqBKGIy .dropdown-item.active,
.cid-tCrXqBKGIy .dropdown-item:active {
  background-color: transparent;
}
.cid-tCrXqBKGIy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tCrXqBKGIy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tCrXqBKGIy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tCrXqBKGIy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff0f00;
}
.cid-tCrXqBKGIy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tCrXqBKGIy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tCrXqBKGIy ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tCrXqBKGIy .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tCrXqBKGIy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tCrXqBKGIy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tCrXqBKGIy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tCrXqBKGIy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCrXqBKGIy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tCrXqBKGIy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tCrXqBKGIy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCrXqBKGIy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tCrXqBKGIy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tCrXqBKGIy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tCrXqBKGIy .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tCrXqBKGIy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tCrXqBKGIy .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-tCrXqBKGIy .navbar {
    height: 70px;
  }
  .cid-tCrXqBKGIy .navbar.opened {
    height: auto;
  }
  .cid-tCrXqBKGIy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tFQg9zNVNY {
  padding-top: 125px;
  padding-bottom: 25px;
  background: linear-gradient(0deg, #ff0f00, #232323);
}
.cid-tFQg9zNVNY .news {
  width: 250px;
  background-color: #ff0f00;
  height: 29px;
}
.cid-tFQg9zNVNY .news-scroll a {
  text-decoration: none;
}
.cid-tFQg9zNVNY .dot {
  height: 6px;
  width: 6px;
  margin-left: 3px;
  margin-right: 3px;
  margin-top: 2px !important;
  background-color: #d20320;
  border-radius: 50%;
  display: inline-block;
}
.cid-tFQg9zNVNY DIV {
  color: #ffffff;
}
.cid-tFQg9zNVNY .mbr-text {
  color: #030303;
  text-align: left;
}
.cid-tFQg9zNVNY .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tFFFEVhSs1 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/mbr-1920x1194.webp");
}
@media (max-width: 767px) {
  .cid-tFFFEVhSs1 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tFFFEVhSs1 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tFFFEVhSs1 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tFFFEVhSs1 .card-wrapper {
  border-radius: 4px;
  background-color: #edf5e1;
  background-color: transparent;
}
.cid-tFFFEVhSs1 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tFFFEVhSs1 .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tFFFEVhSs1 .mbr-text {
  color: #ffffff;
}
.cid-tFFFEVhSs1 .card-title {
  color: #ffe161;
}
.cid-tFFFEVhSs1 .price {
  color: #e6c63b;
}
.cid-tFQIa0D3VK {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1194.webp");
}
.cid-tFQIa0D3VK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFQIa0D3VK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tFQIa0D3VK .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tFQIa0D3VK .row {
  flex-direction: row-reverse;
}
.cid-tFQIa0D3VK img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tFQIa0D3VK .text-wrapper {
    padding: 2rem;
  }
}
.cid-tFQIa0D3VK .mbr-section-title {
  text-align: center;
}
.cid-uapn8LaN7h {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1194.webp");
}
@media (max-width: 767px) {
  .cid-uapn8LaN7h .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uapn8LaN7h .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uapn8LaN7h .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uapn8LaN7h .card-wrapper {
  border-radius: 4px;
  background-color: #edf5e1;
  background-color: transparent;
}
.cid-uapn8LaN7h .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uapn8LaN7h .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uapn8LaN7h .mbr-text {
  color: #ffffff;
}
.cid-uapn8LaN7h .card-title {
  color: #ffe161;
}
.cid-uapn8LaN7h .price {
  color: #e6c63b;
}
.cid-vgM76HFynG {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/mbr-1920x1194.webp");
}
.cid-vgM76HFynG .mbr-fallback-image.disabled {
  display: none;
}
.cid-vgM76HFynG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vgM76HFynG .row {
  flex-direction: row-reverse;
}
.cid-uapyWRcNwR {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/mbr-1920x1194.webp");
}
@media (max-width: 767px) {
  .cid-uapyWRcNwR .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uapyWRcNwR .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uapyWRcNwR .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uapyWRcNwR .card-wrapper {
  border-radius: 4px;
  background-color: #edf5e1;
  background-color: transparent;
}
.cid-uapyWRcNwR .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uapyWRcNwR .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uapyWRcNwR .mbr-text {
  color: #ffffff;
}
.cid-uapyWRcNwR .card-title {
  color: #ffe161;
}
.cid-uapyWRcNwR .price {
  color: #e6c63b;
}
.cid-tCrXqzBGPl {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/cs151379289-dump-truck-1920x550.webp");
}
@media (max-width: 991px) {
  .cid-tCrXqzBGPl .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tCrXqzBGPl .row {
  flex-direction: row-reverse;
}
.cid-tCrXqzBGPl img {
  width: 100%;
}
.cid-ueUHvgMiMK {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/mbr-1920x1194.webp");
}
@media (max-width: 767px) {
  .cid-ueUHvgMiMK .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-ueUHvgMiMK .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ueUHvgMiMK .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-ueUHvgMiMK .card-wrapper {
  border-radius: 4px;
  background-color: #edf5e1;
  background-color: transparent;
}
.cid-ueUHvgMiMK .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-ueUHvgMiMK .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-ueUHvgMiMK .mbr-text {
  color: #ffffff;
}
.cid-ueUHvgMiMK .card-title {
  color: #ffe161;
}
.cid-ueUHvgMiMK .price {
  color: #e6c63b;
}
.cid-tCrXqAiyzO {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/mbr-1920x1194.webp");
}
.cid-tCrXqAiyzO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCrXqAiyzO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCrXqAiyzO .item {
  padding-bottom: 2rem;
}
.cid-tCrXqAiyzO .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tCrXqAiyzO .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tCrXqAiyzO .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tCrXqAiyzO .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tCrXqAiyzO .carousel-control,
.cid-tCrXqAiyzO .close {
  background: #1b1b1b;
}
.cid-tCrXqAiyzO .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tCrXqAiyzO .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tCrXqAiyzO .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tCrXqAiyzO .carousel-control-next span {
  margin-left: 5px;
}
.cid-tCrXqAiyzO .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tCrXqAiyzO .close::before {
  content: '\e91a';
}
.cid-tCrXqAiyzO .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tCrXqAiyzO .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tCrXqAiyzO .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tCrXqAiyzO .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tCrXqAiyzO .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tCrXqAiyzO .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tCrXqAiyzO .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tCrXqAiyzO .carousel-indicators li.active,
.cid-tCrXqAiyzO .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tCrXqAiyzO .carousel-indicators li::after,
.cid-tCrXqAiyzO .carousel-indicators li::before {
  content: none;
}
.cid-tCrXqAiyzO .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tCrXqAiyzO .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tCrXqAiyzO .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tCrXqAiyzO .carousel-indicators {
    display: none;
  }
}
.cid-tCrXqAiyzO .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tCrXqAiyzO .carousel-inner > .active {
  display: block;
}
.cid-tCrXqAiyzO .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tCrXqAiyzO .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tCrXqAiyzO .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tCrXqAiyzO .carousel-control,
  .cid-tCrXqAiyzO .carousel-indicators,
  .cid-tCrXqAiyzO .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tCrXqAiyzO .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tCrXqAiyzO .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tCrXqAiyzO .carousel-indicators .active,
.cid-tCrXqAiyzO .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tCrXqAiyzO .carousel-indicators .active {
  background: #fff;
}
.cid-tCrXqAiyzO .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tCrXqAiyzO .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tCrXqAiyzO .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tCrXqAiyzO .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tCrXqAiyzO .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tCrXqAiyzO .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tCrXqAiyzO .carousel {
  width: 100%;
}
.cid-tCrXqAiyzO .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tCrXqAiyzO .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tCrXqAiyzO .modal.fade .modal-dialog,
.cid-tCrXqAiyzO .modal.in .modal-dialog {
  transform: none;
}
.cid-tCrXqAiyzO .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tCrXqAiyzO H6 {
  text-align: center;
}
.cid-tCrXqAiyzO H3 {
  color: #fdd425;
}
.cid-vgMc03xubx {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-vgMc03xubx img {
  width: 120px;
  margin: auto;
}
.cid-vgMc03xubx .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-vgMc03xubx .card {
    max-width: 12.5%;
  }
}
.cid-vgMc03xubx .mbr-section-subtitle {
  color: #353535;
}
.cid-tFQJ8Y8w6L {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1440.webp");
}
@media (max-width: 991px) {
  .cid-tFQJ8Y8w6L .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tFQJ8Y8w6L .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tFQJ8Y8w6L .text-wrapper {
    padding: 0 2rem;
    padding: 0 4rem;
  }
}
@media (max-width: 768px) {
  .cid-tFQJ8Y8w6L .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tFQJ8Y8w6L .mbr-text,
.cid-tFQJ8Y8w6L .mbr-section-btn {
  color: #353535;
}
.cid-tFQJ8Y8w6L .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-tCrXqDScxy {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tCrXqDScxy .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tCrXqDScxy .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tCrXqDScxy .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tCrXqDScxy .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tCrXqDScxy .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tCrXqDScxy .row .foot-menu li p {
  margin: 0;
}
.cid-tCrXqDScxy .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tCrXqDScxy .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tCrXqDScxy .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tCrXqDScxy .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tCrXqDScxy .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tCrXqDScxy .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tCrXqDScxy .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tCrXqDScxy .row .row-copirayt p {
  width: 100%;
}
.cid-tCrXqDScxy foot-menu-item {
  color: #e6c63b;
}
.cid-tFFlb3YfOG .float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 19px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 80px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}
.cid-tFFlb3YfOG .my-float {
  margin-top: 16px;
}
.cid-tFFlb3YfOG P {
  color: #232323;
}
.cid-tFFlb3YfOG DIV {
  color: #ffffff;
}
.cid-tFFlb3YfOG H10 {
  color: #767676;
}
.cid-tFFlb3YfOG .hidden {
  display: none;
}
.cid-vgS4tmRz7Z .navbar-dropdown {
  position: relative !important;
}
.cid-vgS4tmRz7Z .navbar-dropdown {
  position: absolute !important;
}
.cid-vgS4tmRz7Z .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-vgS4tmRz7Z .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vgS4tmRz7Z .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vgS4tmRz7Z .dropdown-item:hover,
.cid-vgS4tmRz7Z .dropdown-item:focus {
  background: #f0ca26 !important;
  color: white !important;
}
.cid-vgS4tmRz7Z .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vgS4tmRz7Z .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vgS4tmRz7Z .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vgS4tmRz7Z .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vgS4tmRz7Z .nav-link {
  position: relative;
}
.cid-vgS4tmRz7Z .container {
  display: flex;
  margin: auto;
}
.cid-vgS4tmRz7Z .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vgS4tmRz7Z .dropdown-menu,
.cid-vgS4tmRz7Z .navbar.opened {
  background: #ff0f00 !important;
}
.cid-vgS4tmRz7Z .nav-item:focus,
.cid-vgS4tmRz7Z .nav-link:focus {
  outline: none;
}
.cid-vgS4tmRz7Z .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vgS4tmRz7Z .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vgS4tmRz7Z .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vgS4tmRz7Z .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vgS4tmRz7Z .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vgS4tmRz7Z .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vgS4tmRz7Z .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(255, 15, 0, 0);
}
.cid-vgS4tmRz7Z .navbar.opened {
  transition: all 0.3s;
}
.cid-vgS4tmRz7Z .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vgS4tmRz7Z .navbar .navbar-logo img {
  width: auto;
}
.cid-vgS4tmRz7Z .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vgS4tmRz7Z .navbar.collapsed {
  justify-content: center;
}
.cid-vgS4tmRz7Z .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vgS4tmRz7Z .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vgS4tmRz7Z .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vgS4tmRz7Z .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vgS4tmRz7Z .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vgS4tmRz7Z .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-vgS4tmRz7Z .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vgS4tmRz7Z .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vgS4tmRz7Z .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vgS4tmRz7Z .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vgS4tmRz7Z .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vgS4tmRz7Z .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vgS4tmRz7Z .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vgS4tmRz7Z .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-vgS4tmRz7Z .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vgS4tmRz7Z .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vgS4tmRz7Z .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vgS4tmRz7Z .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vgS4tmRz7Z .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vgS4tmRz7Z .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vgS4tmRz7Z .navbar.navbar-short {
  min-height: 60px;
}
.cid-vgS4tmRz7Z .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vgS4tmRz7Z .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vgS4tmRz7Z .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vgS4tmRz7Z .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vgS4tmRz7Z .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vgS4tmRz7Z .dropdown-item.active,
.cid-vgS4tmRz7Z .dropdown-item:active {
  background-color: transparent;
}
.cid-vgS4tmRz7Z .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vgS4tmRz7Z .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vgS4tmRz7Z .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vgS4tmRz7Z .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff0f00;
}
.cid-vgS4tmRz7Z .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vgS4tmRz7Z .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vgS4tmRz7Z ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vgS4tmRz7Z .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vgS4tmRz7Z button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vgS4tmRz7Z button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vgS4tmRz7Z button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vgS4tmRz7Z button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vgS4tmRz7Z button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vgS4tmRz7Z button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vgS4tmRz7Z nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vgS4tmRz7Z nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vgS4tmRz7Z nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vgS4tmRz7Z nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vgS4tmRz7Z .navbar-dropdown {
  padding: 0 1rem;
}
.cid-vgS4tmRz7Z a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vgS4tmRz7Z .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-vgS4tmRz7Z .navbar {
    height: 70px;
  }
  .cid-vgS4tmRz7Z .navbar.opened {
    height: auto;
  }
  .cid-vgS4tmRz7Z .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tCrXuKpUAE {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/mbr-1920x1285.webp");
}
@media (max-width: 991px) {
  .cid-tCrXuKpUAE .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tCrXuKpUAE .row {
  flex-direction: row-reverse;
}
.cid-tCrXuKpUAE img {
  width: 100%;
}
.cid-ueWiTNT1Ff {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f0ca26;
}
.cid-ueWiTNT1Ff .mbr-fallback-image.disabled {
  display: none;
}
.cid-ueWiTNT1Ff .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ueWiTNT1Ff [class^="socicon-"]:before,
.cid-ueWiTNT1Ff [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-ueWiTNT1Ff .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #6592e6;
  border-width: 2px;
  transition: all .3s;
  border-color: #6592e6;
}
.cid-ueWiTNT1Ff .btn-social:hover {
  background: #6592e6;
}
.cid-ueWiTNT1Ff .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-tCrXuLaTVy {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/mbr-1920x1080.webp");
}
.cid-tCrXuLaTVy .mbr-overlay {
  background: #000000;
  opacity: 0;
}
.cid-tCrXuLaTVy img,
.cid-tCrXuLaTVy .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tCrXuLaTVy .item:focus,
.cid-tCrXuLaTVy span:focus {
  outline: none;
}
.cid-tCrXuLaTVy .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tCrXuLaTVy .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tCrXuLaTVy .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tCrXuLaTVy .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tCrXuLaTVy .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tCrXuLaTVy .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tCrXuLaTVy .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tCrXuLaTVy .mbr-section-title {
  color: #f0ca26;
  text-align: center;
}
.cid-tCrXuLaTVy .mbr-text,
.cid-tCrXuLaTVy .mbr-section-btn {
  text-align: left;
}
.cid-tCrXuLaTVy .item-title {
  text-align: left;
}
.cid-tCrXuLaTVy .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-tCrXuLaTVy .mbr-section-subtitle {
  color: #ffe161;
}
.cid-tCrXuMiVjX {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/mbr-4-1920x1080.webp");
}
@media (max-width: 991px) {
  .cid-tCrXuMiVjX .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tCrXuMiVjX .row {
  flex-direction: row-reverse;
}
.cid-tCrXuMiVjX img {
  width: 100%;
}
.cid-tCrXuN0WB0 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/mbr-1920x1080.webp");
}
.cid-tCrXuN0WB0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCrXuN0WB0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCrXuN0WB0 .item {
  padding-bottom: 2rem;
}
.cid-tCrXuN0WB0 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tCrXuN0WB0 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tCrXuN0WB0 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tCrXuN0WB0 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tCrXuN0WB0 .carousel-control,
.cid-tCrXuN0WB0 .close {
  background: #1b1b1b;
}
.cid-tCrXuN0WB0 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tCrXuN0WB0 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tCrXuN0WB0 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tCrXuN0WB0 .carousel-control-next span {
  margin-left: 5px;
}
.cid-tCrXuN0WB0 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tCrXuN0WB0 .close::before {
  content: '\e91a';
}
.cid-tCrXuN0WB0 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tCrXuN0WB0 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tCrXuN0WB0 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tCrXuN0WB0 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tCrXuN0WB0 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tCrXuN0WB0 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tCrXuN0WB0 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tCrXuN0WB0 .carousel-indicators li.active,
.cid-tCrXuN0WB0 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tCrXuN0WB0 .carousel-indicators li::after,
.cid-tCrXuN0WB0 .carousel-indicators li::before {
  content: none;
}
.cid-tCrXuN0WB0 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tCrXuN0WB0 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tCrXuN0WB0 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tCrXuN0WB0 .carousel-indicators {
    display: none;
  }
}
.cid-tCrXuN0WB0 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tCrXuN0WB0 .carousel-inner > .active {
  display: block;
}
.cid-tCrXuN0WB0 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tCrXuN0WB0 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tCrXuN0WB0 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tCrXuN0WB0 .carousel-control,
  .cid-tCrXuN0WB0 .carousel-indicators,
  .cid-tCrXuN0WB0 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tCrXuN0WB0 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tCrXuN0WB0 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tCrXuN0WB0 .carousel-indicators .active,
.cid-tCrXuN0WB0 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tCrXuN0WB0 .carousel-indicators .active {
  background: #fff;
}
.cid-tCrXuN0WB0 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tCrXuN0WB0 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tCrXuN0WB0 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tCrXuN0WB0 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tCrXuN0WB0 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tCrXuN0WB0 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tCrXuN0WB0 .carousel {
  width: 100%;
}
.cid-tCrXuN0WB0 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tCrXuN0WB0 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tCrXuN0WB0 .modal.fade .modal-dialog,
.cid-tCrXuN0WB0 .modal.in .modal-dialog {
  transform: none;
}
.cid-tCrXuN0WB0 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tCrXuN0WB0 H6 {
  text-align: center;
}
.cid-tCrXuN0WB0 H3 {
  color: #fafafa;
}
.cid-tCrXuPnmQU {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/mbr-6-1920x1280.webp");
}
@media (max-width: 767px) {
  .cid-tCrXuPnmQU .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tCrXuPnmQU .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tCrXuPnmQU .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tCrXuPnmQU .card-wrapper {
  border-radius: 4px;
  background-color: #edf5e1;
  background-color: transparent;
}
.cid-tCrXuPnmQU .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tCrXuPnmQU .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tCrXuPnmQU .mbr-text {
  color: #ffffff;
}
.cid-tCrXuPnmQU .card-title {
  color: #98dee8;
}
.cid-tCrXuPnmQU .price {
  color: #05386b;
}
.cid-vgSa0QQF04 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vgSa0QQF04 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vgSa0QQF04 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vgSa0QQF04 .row {
  flex-direction: row-reverse;
}
.cid-tCrXuQtmra {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tCrXuQtmra .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tCrXuQtmra .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tCrXuQtmra .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tCrXuQtmra .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tCrXuQtmra .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tCrXuQtmra .row .foot-menu li p {
  margin: 0;
}
.cid-tCrXuQtmra .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tCrXuQtmra .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tCrXuQtmra .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tCrXuQtmra .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tCrXuQtmra .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tCrXuQtmra .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tCrXuQtmra .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tCrXuQtmra .row .row-copirayt p {
  width: 100%;
}
.cid-tCrXuQtmra foot-menu-item {
  color: #e6c63b;
}
.cid-tFFIOX6Exk .float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 19px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 80px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}
.cid-tFFIOX6Exk .my-float {
  margin-top: 16px;
}
.cid-tFFIOX6Exk P {
  color: #232323;
}
.cid-tFFIOX6Exk DIV {
  color: #ffffff;
}
.cid-tFFIOX6Exk H10 {
  color: #767676;
}
.cid-tFFIOX6Exk .hidden {
  display: none;
}
.cid-vgBPNC9rmY .navbar-dropdown {
  position: relative !important;
}
.cid-vgBPNC9rmY .navbar-dropdown {
  position: absolute !important;
}
.cid-vgBPNC9rmY .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-vgBPNC9rmY .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vgBPNC9rmY .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vgBPNC9rmY .dropdown-item:hover,
.cid-vgBPNC9rmY .dropdown-item:focus {
  background: #f0ca26 !important;
  color: white !important;
}
.cid-vgBPNC9rmY .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vgBPNC9rmY .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vgBPNC9rmY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vgBPNC9rmY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vgBPNC9rmY .nav-link {
  position: relative;
}
.cid-vgBPNC9rmY .container {
  display: flex;
  margin: auto;
}
.cid-vgBPNC9rmY .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vgBPNC9rmY .dropdown-menu,
.cid-vgBPNC9rmY .navbar.opened {
  background: #ff0f00 !important;
}
.cid-vgBPNC9rmY .nav-item:focus,
.cid-vgBPNC9rmY .nav-link:focus {
  outline: none;
}
.cid-vgBPNC9rmY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vgBPNC9rmY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vgBPNC9rmY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vgBPNC9rmY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vgBPNC9rmY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vgBPNC9rmY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vgBPNC9rmY .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(255, 15, 0, 0);
}
.cid-vgBPNC9rmY .navbar.opened {
  transition: all 0.3s;
}
.cid-vgBPNC9rmY .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vgBPNC9rmY .navbar .navbar-logo img {
  width: auto;
}
.cid-vgBPNC9rmY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vgBPNC9rmY .navbar.collapsed {
  justify-content: center;
}
.cid-vgBPNC9rmY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vgBPNC9rmY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vgBPNC9rmY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vgBPNC9rmY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vgBPNC9rmY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vgBPNC9rmY .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-vgBPNC9rmY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vgBPNC9rmY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vgBPNC9rmY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vgBPNC9rmY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vgBPNC9rmY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vgBPNC9rmY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vgBPNC9rmY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vgBPNC9rmY .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-vgBPNC9rmY .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vgBPNC9rmY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vgBPNC9rmY .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vgBPNC9rmY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vgBPNC9rmY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vgBPNC9rmY .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vgBPNC9rmY .navbar.navbar-short {
  min-height: 60px;
}
.cid-vgBPNC9rmY .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vgBPNC9rmY .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vgBPNC9rmY .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vgBPNC9rmY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vgBPNC9rmY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vgBPNC9rmY .dropdown-item.active,
.cid-vgBPNC9rmY .dropdown-item:active {
  background-color: transparent;
}
.cid-vgBPNC9rmY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vgBPNC9rmY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vgBPNC9rmY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vgBPNC9rmY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff0f00;
}
.cid-vgBPNC9rmY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vgBPNC9rmY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vgBPNC9rmY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vgBPNC9rmY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vgBPNC9rmY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vgBPNC9rmY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vgBPNC9rmY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vgBPNC9rmY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vgBPNC9rmY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vgBPNC9rmY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vgBPNC9rmY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vgBPNC9rmY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vgBPNC9rmY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vgBPNC9rmY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vgBPNC9rmY .navbar-dropdown {
  padding: 0 1rem;
}
.cid-vgBPNC9rmY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vgBPNC9rmY .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-vgBPNC9rmY .navbar {
    height: 70px;
  }
  .cid-vgBPNC9rmY .navbar.opened {
    height: auto;
  }
  .cid-vgBPNC9rmY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tCrXUmdlzg {
  padding-top: 7rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-3-1920x1280.webp");
}
@media (max-width: 991px) {
  .cid-tCrXUmdlzg .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tCrXUmdlzg .row {
  flex-direction: row-reverse;
}
.cid-tCrXUmdlzg img {
  width: 100%;
}
.cid-tCrXUmKXp3 {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-2-1920x1280.webp");
}
.cid-tCrXUmKXp3 .mbr-overlay {
  background: #000000;
  opacity: 0.4;
}
.cid-tCrXUmKXp3 img,
.cid-tCrXUmKXp3 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tCrXUmKXp3 .item:focus,
.cid-tCrXUmKXp3 span:focus {
  outline: none;
}
.cid-tCrXUmKXp3 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tCrXUmKXp3 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #6c8d6e;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tCrXUmKXp3 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tCrXUmKXp3 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tCrXUmKXp3 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tCrXUmKXp3 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tCrXUmKXp3 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tCrXUmKXp3 .mbr-section-title {
  color: #1dd928;
  text-align: center;
}
.cid-tCrXUmKXp3 .mbr-text,
.cid-tCrXUmKXp3 .mbr-section-btn {
  text-align: left;
}
.cid-tCrXUmKXp3 .item-title {
  text-align: left;
}
.cid-tCrXUmKXp3 .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-tCrXUmKXp3 .mbr-section-subtitle {
  color: #ffe161;
}
.cid-tCrXUDYyDJ {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/for7-736x414.webp");
}
@media (max-width: 991px) {
  .cid-tCrXUDYyDJ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tCrXUDYyDJ .row {
  flex-direction: row-reverse;
}
.cid-tCrXUDYyDJ img {
  width: 100%;
}
.cid-tCrXUEE24M {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #6c8d6e;
}
.cid-tCrXUEE24M .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCrXUEE24M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCrXUEE24M .item {
  padding-bottom: 2rem;
}
.cid-tCrXUEE24M .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tCrXUEE24M .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tCrXUEE24M .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tCrXUEE24M .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tCrXUEE24M .carousel-control,
.cid-tCrXUEE24M .close {
  background: #1b1b1b;
}
.cid-tCrXUEE24M .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tCrXUEE24M .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tCrXUEE24M .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tCrXUEE24M .carousel-control-next span {
  margin-left: 5px;
}
.cid-tCrXUEE24M .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tCrXUEE24M .close::before {
  content: '\e91a';
}
.cid-tCrXUEE24M .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tCrXUEE24M .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tCrXUEE24M .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tCrXUEE24M .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tCrXUEE24M .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tCrXUEE24M .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tCrXUEE24M .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tCrXUEE24M .carousel-indicators li.active,
.cid-tCrXUEE24M .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tCrXUEE24M .carousel-indicators li::after,
.cid-tCrXUEE24M .carousel-indicators li::before {
  content: none;
}
.cid-tCrXUEE24M .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tCrXUEE24M .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tCrXUEE24M .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tCrXUEE24M .carousel-indicators {
    display: none;
  }
}
.cid-tCrXUEE24M .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tCrXUEE24M .carousel-inner > .active {
  display: block;
}
.cid-tCrXUEE24M .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tCrXUEE24M .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tCrXUEE24M .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tCrXUEE24M .carousel-control,
  .cid-tCrXUEE24M .carousel-indicators,
  .cid-tCrXUEE24M .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tCrXUEE24M .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tCrXUEE24M .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tCrXUEE24M .carousel-indicators .active,
.cid-tCrXUEE24M .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tCrXUEE24M .carousel-indicators .active {
  background: #fff;
}
.cid-tCrXUEE24M .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tCrXUEE24M .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tCrXUEE24M .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tCrXUEE24M .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tCrXUEE24M .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tCrXUEE24M .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tCrXUEE24M .carousel {
  width: 100%;
}
.cid-tCrXUEE24M .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tCrXUEE24M .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tCrXUEE24M .modal.fade .modal-dialog,
.cid-tCrXUEE24M .modal.in .modal-dialog {
  transform: none;
}
.cid-tCrXUEE24M .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tCrXUEE24M H6 {
  text-align: center;
}
.cid-tCrXUEE24M H3 {
  color: #232323;
}
.cid-tCrXUGPVB2 {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/mbr-3-1920x1280.webp");
}
@media (max-width: 767px) {
  .cid-tCrXUGPVB2 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tCrXUGPVB2 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tCrXUGPVB2 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tCrXUGPVB2 .card-wrapper {
  border-radius: 4px;
  background-color: #edf5e1;
  background-color: transparent;
}
.cid-tCrXUGPVB2 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tCrXUGPVB2 .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tCrXUGPVB2 .mbr-text {
  color: #ffffff;
}
.cid-tCrXUGPVB2 .card-title {
  color: #1dd928;
}
.cid-tCrXUGPVB2 .price {
  color: #05386b;
}
.cid-tCrXUHGJWY {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tCrXUHGJWY .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tCrXUHGJWY .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tCrXUHGJWY .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tCrXUHGJWY .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tCrXUHGJWY .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tCrXUHGJWY .row .foot-menu li p {
  margin: 0;
}
.cid-tCrXUHGJWY .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tCrXUHGJWY .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tCrXUHGJWY .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tCrXUHGJWY .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tCrXUHGJWY .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tCrXUHGJWY .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tCrXUHGJWY .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tCrXUHGJWY .row .row-copirayt p {
  width: 100%;
}
.cid-tCrXUHGJWY foot-menu-item {
  color: #e6c63b;
}
.cid-tIqzqrdteX .float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 19px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 80px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}
.cid-tIqzqrdteX .my-float {
  margin-top: 16px;
}
.cid-tIqzqrdteX P {
  color: #232323;
}
.cid-tIqzqrdteX DIV {
  color: #ffffff;
}
.cid-tIqzqrdteX H10 {
  color: #767676;
}
.cid-tIqzqrdteX .hidden {
  display: none;
}
.cid-tDMAN0RUAv .navbar-dropdown {
  position: relative !important;
}
.cid-tDMAN0RUAv .navbar-dropdown {
  position: absolute !important;
}
.cid-tDMAN0RUAv .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-tDMAN0RUAv .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tDMAN0RUAv .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tDMAN0RUAv .dropdown-item:hover,
.cid-tDMAN0RUAv .dropdown-item:focus {
  background: #f0ca26 !important;
  color: white !important;
}
.cid-tDMAN0RUAv .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tDMAN0RUAv .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tDMAN0RUAv .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tDMAN0RUAv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tDMAN0RUAv .nav-link {
  position: relative;
}
.cid-tDMAN0RUAv .container {
  display: flex;
  margin: auto;
}
.cid-tDMAN0RUAv .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tDMAN0RUAv .dropdown-menu,
.cid-tDMAN0RUAv .navbar.opened {
  background: #ff0f00 !important;
}
.cid-tDMAN0RUAv .nav-item:focus,
.cid-tDMAN0RUAv .nav-link:focus {
  outline: none;
}
.cid-tDMAN0RUAv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tDMAN0RUAv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tDMAN0RUAv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tDMAN0RUAv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tDMAN0RUAv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tDMAN0RUAv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tDMAN0RUAv .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(255, 15, 0, 0);
}
.cid-tDMAN0RUAv .navbar.opened {
  transition: all 0.3s;
}
.cid-tDMAN0RUAv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tDMAN0RUAv .navbar .navbar-logo img {
  width: auto;
}
.cid-tDMAN0RUAv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tDMAN0RUAv .navbar.collapsed {
  justify-content: center;
}
.cid-tDMAN0RUAv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tDMAN0RUAv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tDMAN0RUAv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tDMAN0RUAv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tDMAN0RUAv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tDMAN0RUAv .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-tDMAN0RUAv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tDMAN0RUAv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tDMAN0RUAv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tDMAN0RUAv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tDMAN0RUAv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tDMAN0RUAv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tDMAN0RUAv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tDMAN0RUAv .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-tDMAN0RUAv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tDMAN0RUAv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tDMAN0RUAv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tDMAN0RUAv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tDMAN0RUAv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tDMAN0RUAv .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tDMAN0RUAv .navbar.navbar-short {
  min-height: 60px;
}
.cid-tDMAN0RUAv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tDMAN0RUAv .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tDMAN0RUAv .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tDMAN0RUAv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tDMAN0RUAv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tDMAN0RUAv .dropdown-item.active,
.cid-tDMAN0RUAv .dropdown-item:active {
  background-color: transparent;
}
.cid-tDMAN0RUAv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tDMAN0RUAv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tDMAN0RUAv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tDMAN0RUAv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff0f00;
}
.cid-tDMAN0RUAv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tDMAN0RUAv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tDMAN0RUAv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tDMAN0RUAv .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tDMAN0RUAv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tDMAN0RUAv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tDMAN0RUAv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tDMAN0RUAv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDMAN0RUAv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDMAN0RUAv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tDMAN0RUAv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDMAN0RUAv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tDMAN0RUAv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tDMAN0RUAv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDMAN0RUAv .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tDMAN0RUAv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tDMAN0RUAv .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-tDMAN0RUAv .navbar {
    height: 70px;
  }
  .cid-tDMAN0RUAv .navbar.opened {
    height: auto;
  }
  .cid-tDMAN0RUAv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tDMAMWeEVD {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/hrv-1200x900.webp");
}
@media (max-width: 991px) {
  .cid-tDMAMWeEVD .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tDMAMWeEVD .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tDMAMWeEVD .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-tDMAMWeEVD .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tDMAMWeEVD .mbr-text,
.cid-tDMAMWeEVD .mbr-section-btn {
  color: #353535;
}
.cid-tDMAMWeEVD .mbr-section-title {
  color: #ffffff;
}
.cid-tDMAMX7pzP {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-1-1920x993.webp");
}
.cid-tDMAMX7pzP .mbr-overlay {
  background: #000000;
  opacity: 0;
}
.cid-tDMAMX7pzP img,
.cid-tDMAMX7pzP .item-img {
  width: 100%;
}
.cid-tDMAMX7pzP .item:focus,
.cid-tDMAMX7pzP span:focus {
  outline: none;
}
.cid-tDMAMX7pzP .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tDMAMX7pzP .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tDMAMX7pzP .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tDMAMX7pzP .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tDMAMX7pzP .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tDMAMX7pzP .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tDMAMX7pzP .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tDMAMX7pzP .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tDMAMX7pzP .mbr-text,
.cid-tDMAMX7pzP .mbr-section-btn {
  text-align: left;
}
.cid-tDMAMX7pzP .item-title {
  text-align: left;
}
.cid-tDMAMX7pzP .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-tDMAMX7pzP .mbr-section-subtitle {
  color: #ffe161;
}
.cid-uaZAFsjwge {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/mbr-1-1920x993.webp");
}
.cid-uaZAFsjwge .mbr-fallback-image.disabled {
  display: none;
}
.cid-uaZAFsjwge .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uaZAFsjwge .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uaZAFsjwge .row {
  flex-direction: row-reverse;
}
.cid-uaZAFsjwge img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uaZAFsjwge .text-wrapper {
    padding: 2rem;
  }
}
.cid-uaZAFsjwge .mbr-section-title {
  text-align: center;
}
.cid-tDMAMYbRE5 {
  background-image: url("../../../assets/images/fendt-1024x682-1-1024x682.webp");
}
@media (max-width: 991px) {
  .cid-tDMAMYbRE5 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tDMAMYbRE5 .row {
  flex-direction: row-reverse;
}
.cid-tDMAMYbRE5 img {
  width: 100%;
}
.cid-tDMAMZhemQ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/mbr-1920x1280.webp");
}
.cid-tDMAMZhemQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDMAMZhemQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDMAMZhemQ .item {
  padding-bottom: 2rem;
}
.cid-tDMAMZhemQ .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tDMAMZhemQ .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tDMAMZhemQ .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tDMAMZhemQ .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tDMAMZhemQ .carousel-control,
.cid-tDMAMZhemQ .close {
  background: #1b1b1b;
}
.cid-tDMAMZhemQ .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tDMAMZhemQ .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tDMAMZhemQ .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tDMAMZhemQ .carousel-control-next span {
  margin-left: 5px;
}
.cid-tDMAMZhemQ .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tDMAMZhemQ .close::before {
  content: '\e91a';
}
.cid-tDMAMZhemQ .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tDMAMZhemQ .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tDMAMZhemQ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tDMAMZhemQ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tDMAMZhemQ .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tDMAMZhemQ .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tDMAMZhemQ .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tDMAMZhemQ .carousel-indicators li.active,
.cid-tDMAMZhemQ .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tDMAMZhemQ .carousel-indicators li::after,
.cid-tDMAMZhemQ .carousel-indicators li::before {
  content: none;
}
.cid-tDMAMZhemQ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tDMAMZhemQ .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tDMAMZhemQ .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tDMAMZhemQ .carousel-indicators {
    display: none;
  }
}
.cid-tDMAMZhemQ .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tDMAMZhemQ .carousel-inner > .active {
  display: block;
}
.cid-tDMAMZhemQ .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tDMAMZhemQ .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tDMAMZhemQ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tDMAMZhemQ .carousel-control,
  .cid-tDMAMZhemQ .carousel-indicators,
  .cid-tDMAMZhemQ .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tDMAMZhemQ .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tDMAMZhemQ .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tDMAMZhemQ .carousel-indicators .active,
.cid-tDMAMZhemQ .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tDMAMZhemQ .carousel-indicators .active {
  background: #fff;
}
.cid-tDMAMZhemQ .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tDMAMZhemQ .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tDMAMZhemQ .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tDMAMZhemQ .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tDMAMZhemQ .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tDMAMZhemQ .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tDMAMZhemQ .carousel {
  width: 100%;
}
.cid-tDMAMZhemQ .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tDMAMZhemQ .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tDMAMZhemQ .modal.fade .modal-dialog,
.cid-tDMAMZhemQ .modal.in .modal-dialog {
  transform: none;
}
.cid-tDMAMZhemQ .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tDMAMZhemQ H6 {
  text-align: center;
}
.cid-tDMAMZhemQ H3 {
  color: #e6c63b;
}
.cid-tDMAN1Uq9s {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/mbr-1920x1084.webp");
}
@media (max-width: 767px) {
  .cid-tDMAN1Uq9s .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tDMAN1Uq9s .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tDMAN1Uq9s .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tDMAN1Uq9s .card-wrapper {
  border-radius: 4px;
  background-color: #edf5e1;
  background-color: transparent;
}
.cid-tDMAN1Uq9s .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tDMAN1Uq9s .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tDMAN1Uq9s .mbr-text {
  color: #ffffff;
}
.cid-tDMAN1Uq9s .card-title {
  color: #ffe161;
}
.cid-tDMAN1Uq9s .price {
  color: #05386b;
}
.cid-tDMAN2T7yA {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tDMAN2T7yA .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tDMAN2T7yA .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tDMAN2T7yA .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tDMAN2T7yA .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tDMAN2T7yA .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tDMAN2T7yA .row .foot-menu li p {
  margin: 0;
}
.cid-tDMAN2T7yA .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tDMAN2T7yA .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tDMAN2T7yA .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tDMAN2T7yA .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tDMAN2T7yA .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tDMAN2T7yA .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tDMAN2T7yA .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tDMAN2T7yA .row .row-copirayt p {
  width: 100%;
}
.cid-tDMAN2T7yA foot-menu-item {
  color: #e6c63b;
}
.cid-tIqzDjIxK0 .float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 19px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 80px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}
.cid-tIqzDjIxK0 .my-float {
  margin-top: 16px;
}
.cid-tIqzDjIxK0 P {
  color: #232323;
}
.cid-tIqzDjIxK0 DIV {
  color: #ffffff;
}
.cid-tIqzDjIxK0 H10 {
  color: #767676;
}
.cid-tIqzDjIxK0 .hidden {
  display: none;
}
.cid-vgFlvXcTSQ .navbar-dropdown {
  position: relative !important;
}
.cid-vgFlvXcTSQ .navbar-dropdown {
  position: absolute !important;
}
.cid-vgFlvXcTSQ .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-vgFlvXcTSQ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vgFlvXcTSQ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vgFlvXcTSQ .dropdown-item:hover,
.cid-vgFlvXcTSQ .dropdown-item:focus {
  background: #f0ca26 !important;
  color: white !important;
}
.cid-vgFlvXcTSQ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vgFlvXcTSQ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vgFlvXcTSQ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vgFlvXcTSQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vgFlvXcTSQ .nav-link {
  position: relative;
}
.cid-vgFlvXcTSQ .container {
  display: flex;
  margin: auto;
}
.cid-vgFlvXcTSQ .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vgFlvXcTSQ .dropdown-menu,
.cid-vgFlvXcTSQ .navbar.opened {
  background: #ff0f00 !important;
}
.cid-vgFlvXcTSQ .nav-item:focus,
.cid-vgFlvXcTSQ .nav-link:focus {
  outline: none;
}
.cid-vgFlvXcTSQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vgFlvXcTSQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vgFlvXcTSQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vgFlvXcTSQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vgFlvXcTSQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vgFlvXcTSQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vgFlvXcTSQ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(255, 15, 0, 0);
}
.cid-vgFlvXcTSQ .navbar.opened {
  transition: all 0.3s;
}
.cid-vgFlvXcTSQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vgFlvXcTSQ .navbar .navbar-logo img {
  width: auto;
}
.cid-vgFlvXcTSQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vgFlvXcTSQ .navbar.collapsed {
  justify-content: center;
}
.cid-vgFlvXcTSQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vgFlvXcTSQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vgFlvXcTSQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vgFlvXcTSQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vgFlvXcTSQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vgFlvXcTSQ .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-vgFlvXcTSQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vgFlvXcTSQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vgFlvXcTSQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vgFlvXcTSQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vgFlvXcTSQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vgFlvXcTSQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vgFlvXcTSQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vgFlvXcTSQ .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-vgFlvXcTSQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vgFlvXcTSQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vgFlvXcTSQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vgFlvXcTSQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vgFlvXcTSQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vgFlvXcTSQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vgFlvXcTSQ .navbar.navbar-short {
  min-height: 60px;
}
.cid-vgFlvXcTSQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vgFlvXcTSQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vgFlvXcTSQ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vgFlvXcTSQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vgFlvXcTSQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vgFlvXcTSQ .dropdown-item.active,
.cid-vgFlvXcTSQ .dropdown-item:active {
  background-color: transparent;
}
.cid-vgFlvXcTSQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vgFlvXcTSQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vgFlvXcTSQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vgFlvXcTSQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff0f00;
}
.cid-vgFlvXcTSQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vgFlvXcTSQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vgFlvXcTSQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vgFlvXcTSQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vgFlvXcTSQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vgFlvXcTSQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vgFlvXcTSQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vgFlvXcTSQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vgFlvXcTSQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vgFlvXcTSQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vgFlvXcTSQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vgFlvXcTSQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vgFlvXcTSQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vgFlvXcTSQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vgFlvXcTSQ .navbar-dropdown {
  padding: 0 1rem;
}
.cid-vgFlvXcTSQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vgFlvXcTSQ .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-vgFlvXcTSQ .navbar {
    height: 70px;
  }
  .cid-vgFlvXcTSQ .navbar.opened {
    height: auto;
  }
  .cid-vgFlvXcTSQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tDMKIGm7O4 {
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/kom-1280x720.webp");
}
@media (max-width: 991px) {
  .cid-tDMKIGm7O4 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tDMKIGm7O4 .row {
  flex-direction: row-reverse;
}
.cid-tDMKIGm7O4 img {
  width: 100%;
}
.cid-tDN1ifMlVo {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tDN1ifMlVo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDN1ifMlVo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDN1ifMlVo .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-tDN1ifMlVo [class^="socicon-"]:before,
.cid-tDN1ifMlVo [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-tDN1ifMlVo .mbr-section-title,
.cid-tDN1ifMlVo .social-list {
  color: #ffffff;
}
.cid-tDMKIHthnz {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-1-1920x1278.webp");
}
.cid-tDMKIHthnz .mbr-overlay {
  background: #000000;
  opacity: 0.4;
}
.cid-tDMKIHthnz img,
.cid-tDMKIHthnz .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tDMKIHthnz .item:focus,
.cid-tDMKIHthnz span:focus {
  outline: none;
}
.cid-tDMKIHthnz .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tDMKIHthnz .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #bbbbbb;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tDMKIHthnz .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tDMKIHthnz .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tDMKIHthnz .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tDMKIHthnz .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tDMKIHthnz .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tDMKIHthnz .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tDMKIHthnz .mbr-text,
.cid-tDMKIHthnz .mbr-section-btn {
  text-align: left;
}
.cid-tDMKIHthnz .item-title {
  text-align: left;
}
.cid-tDMKIHthnz .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-tDMKIHthnz .mbr-section-subtitle {
  color: #ffe161;
}
.cid-tIqsPbLo79 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tIqsPbLo79 .mbr-section-title {
  text-align: center;
}
.cid-tIqsPbLo79 .mbr-text,
.cid-tIqsPbLo79 .mbr-section-btn {
  color: #232323;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tIqsPbLo79 .mbr-section-title,
  .cid-tIqsPbLo79 .mbr-section-btn,
  .cid-tIqsPbLo79 .mbr-text {
    text-align: center;
  }
}
.cid-tDMKIJnYRk {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/volvo2-1200x620.webp");
}
@media (max-width: 991px) {
  .cid-tDMKIJnYRk .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tDMKIJnYRk .row {
  flex-direction: row-reverse;
}
.cid-tDMKIJnYRk img {
  width: 100%;
}
.cid-vgFuZdnU60 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #bbbbbb;
}
.cid-vgFuZdnU60 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vgFuZdnU60 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vgFuZdnU60 .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-vgFuZdnU60 [class^="socicon-"]:before,
.cid-vgFuZdnU60 [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-vgFuZdnU60 .mbr-section-title,
.cid-vgFuZdnU60 .social-list {
  color: #232323;
}
.cid-vgFre4dkcS {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-2-1920x1278.webp");
}
.cid-vgFre4dkcS .mbr-fallback-image.disabled {
  display: none;
}
.cid-vgFre4dkcS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-vgFre4dkcS .row {
    padding: 0 24px;
  }
}
.cid-vgFre4dkcS .items {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-vgFre4dkcS .items {
    flex-direction: column;
  }
}
.cid-vgFre4dkcS .items img {
  max-width: 330px;
  min-width: 100px;
  height: 405px;
  object-fit: cover;
  border-radius: 20px;
  margin-right: -3rem;
}
@media (max-width: 768px) {
  .cid-vgFre4dkcS .items img {
    margin: 0 !important;
  }
}
.cid-vgFre4dkcS .items img:nth-child(2) {
  height: 330px;
  margin-top: -12rem;
}
.cid-vgFre4dkcS .items img:nth-child(3) {
  height: 290px;
}
.cid-vgFre4dkcS .items img:nth-child(4) {
  height: 440px;
  margin-left: -6rem;
}
.cid-vgFre4dkcS .items img:nth-child(5) {
  height: 430px;
  margin-top: -9rem;
}
.cid-vgFmopwhR7 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/mbr-1-1920x1278.webp");
}
.cid-vgFmopwhR7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vgFmopwhR7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 768px) {
  .cid-vgFmopwhR7 .container-fluid {
    padding: 0;
  }
}
.cid-vgFmopwhR7 .embla__button--next,
.cid-vgFmopwhR7 .embla__button--prev {
  display: flex;
}
.cid-vgFmopwhR7 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-vgFmopwhR7 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-vgFmopwhR7 .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-vgFmopwhR7 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-vgFmopwhR7 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vgFmopwhR7 .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-vgFmopwhR7 .embla__button {
    top: auto;
    bottom: 1rem;
  }
}
.cid-vgFmopwhR7 .embla {
  position: relative;
  width: 100%;
}
.cid-vgFmopwhR7 .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-vgFmopwhR7 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vgFmopwhR7 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vgFmopwhR7 .embla__slide a {
  cursor: grab;
}
.cid-vgFmopwhR7 .embla__slide a:active {
  cursor: grabbing;
}
.cid-vgFmopwhR7 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vgFmopwhR7 .embla__slide {
  position: relative;
  min-width: 490px;
  max-width: 490px;
}
@media (max-width: 768px) {
  .cid-vgFmopwhR7 .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-vgFmopwhR7 .embla__slide a {
  display: block;
  width: 100%;
}
.cid-vgFmopwhR7 .item-menu-overlay {
  border-radius: 2rem;
}
.cid-vgFmopwhR7 .mbr-section-title {
  color: #232323;
}
.cid-vgFmopwhR7 .mbr-section-subtitle {
  color: #232323;
}
.cid-vgFmopwhR7 .mbr-box {
  color: #ffffff;
}
.cid-vgFmopwhR7 .slide-content {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-vgFmopwhR7 img,
.cid-vgFmopwhR7 .item-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-vgFmopwhR7 .item-wrapper {
  position: relative;
}
.cid-vgFmopwhR7 .content-head {
  max-width: 800px;
}
.cid-vgFvVBJo9p {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vgFvVBJo9p .mbr-fallback-image.disabled {
  display: none;
}
.cid-vgFvVBJo9p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vgFvVBJo9p .row {
  flex-direction: row-reverse;
}
.cid-tDMKIMhtes {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/mbr-1-1920x1278.webp");
}
@media (max-width: 767px) {
  .cid-tDMKIMhtes .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tDMKIMhtes .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tDMKIMhtes .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tDMKIMhtes .card-wrapper {
  border-radius: 4px;
  background-color: #edf5e1;
  background-color: transparent;
}
.cid-tDMKIMhtes .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tDMKIMhtes .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tDMKIMhtes .mbr-text {
  color: #ffffff;
}
.cid-tDMKIMhtes .card-title {
  color: #fdd425;
}
.cid-tDMKIMhtes .price {
  color: #05386b;
}
.cid-tDMKINxd8e {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tDMKINxd8e .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tDMKINxd8e .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tDMKINxd8e .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tDMKINxd8e .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tDMKINxd8e .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tDMKINxd8e .row .foot-menu li p {
  margin: 0;
}
.cid-tDMKINxd8e .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tDMKINxd8e .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tDMKINxd8e .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tDMKINxd8e .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tDMKINxd8e .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tDMKINxd8e .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tDMKINxd8e .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tDMKINxd8e .row .row-copirayt p {
  width: 100%;
}
.cid-tDMKINxd8e foot-menu-item {
  color: #e6c63b;
}
.cid-tDN26Whz59 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tDN26Whz59 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDN26Whz59 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDN26Whz59 .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-tDN26Whz59 [class^="socicon-"]:before,
.cid-tDN26Whz59 [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-tGBx9bLOs8 .float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 19px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 80px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}
.cid-tGBx9bLOs8 .my-float {
  margin-top: 16px;
}
.cid-tGBx9bLOs8 P {
  color: #232323;
}
.cid-tGBx9bLOs8 DIV {
  color: #ffffff;
}
.cid-tGBx9bLOs8 H10 {
  color: #767676;
}
.cid-tGBx9bLOs8 .hidden {
  display: none;
}
.cid-vgAtLek6I3 .navbar-dropdown {
  position: relative !important;
}
.cid-vgAtLek6I3 .navbar-dropdown {
  position: absolute !important;
}
.cid-vgAtLek6I3 .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-vgAtLek6I3 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vgAtLek6I3 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vgAtLek6I3 .dropdown-item:hover,
.cid-vgAtLek6I3 .dropdown-item:focus {
  background: #f0ca26 !important;
  color: white !important;
}
.cid-vgAtLek6I3 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vgAtLek6I3 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vgAtLek6I3 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vgAtLek6I3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vgAtLek6I3 .nav-link {
  position: relative;
}
.cid-vgAtLek6I3 .container {
  display: flex;
  margin: auto;
}
.cid-vgAtLek6I3 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vgAtLek6I3 .dropdown-menu,
.cid-vgAtLek6I3 .navbar.opened {
  background: #ff0f00 !important;
}
.cid-vgAtLek6I3 .nav-item:focus,
.cid-vgAtLek6I3 .nav-link:focus {
  outline: none;
}
.cid-vgAtLek6I3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vgAtLek6I3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vgAtLek6I3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vgAtLek6I3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vgAtLek6I3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vgAtLek6I3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vgAtLek6I3 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(255, 15, 0, 0);
}
.cid-vgAtLek6I3 .navbar.opened {
  transition: all 0.3s;
}
.cid-vgAtLek6I3 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vgAtLek6I3 .navbar .navbar-logo img {
  width: auto;
}
.cid-vgAtLek6I3 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vgAtLek6I3 .navbar.collapsed {
  justify-content: center;
}
.cid-vgAtLek6I3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vgAtLek6I3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vgAtLek6I3 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vgAtLek6I3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vgAtLek6I3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vgAtLek6I3 .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-vgAtLek6I3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vgAtLek6I3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vgAtLek6I3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vgAtLek6I3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vgAtLek6I3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vgAtLek6I3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vgAtLek6I3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vgAtLek6I3 .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-vgAtLek6I3 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vgAtLek6I3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vgAtLek6I3 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vgAtLek6I3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vgAtLek6I3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vgAtLek6I3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vgAtLek6I3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-vgAtLek6I3 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vgAtLek6I3 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vgAtLek6I3 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vgAtLek6I3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vgAtLek6I3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vgAtLek6I3 .dropdown-item.active,
.cid-vgAtLek6I3 .dropdown-item:active {
  background-color: transparent;
}
.cid-vgAtLek6I3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vgAtLek6I3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vgAtLek6I3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vgAtLek6I3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff0f00;
}
.cid-vgAtLek6I3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vgAtLek6I3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vgAtLek6I3 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vgAtLek6I3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vgAtLek6I3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vgAtLek6I3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vgAtLek6I3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vgAtLek6I3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vgAtLek6I3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vgAtLek6I3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vgAtLek6I3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vgAtLek6I3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vgAtLek6I3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vgAtLek6I3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vgAtLek6I3 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-vgAtLek6I3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vgAtLek6I3 .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-vgAtLek6I3 .navbar {
    height: 70px;
  }
  .cid-vgAtLek6I3 .navbar.opened {
    height: auto;
  }
  .cid-vgAtLek6I3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tEmZlxQDPf {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/ferro11-1024x625.webp");
}
.cid-tEmZlxQDPf .row {
  flex-direction: row-reverse;
}
.cid-tEmZlxQDPf .container-fluid {
  padding: 0;
}
.cid-tEmZlxQDPf .text-wrapper {
  padding: 0 4rem;
}
@media (max-width: 768px) {
  .cid-tEmZlxQDPf .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tEmZlxQDPf .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tEmZlxQDPf .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tEmZlxQDPf .text-wrapper {
    padding: 0 2rem;
    padding: 0 4rem;
  }
}
@media (max-width: 768px) {
  .cid-tEmZlxQDPf .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tEmZlxQDPf .mbr-text,
.cid-tEmZlxQDPf .mbr-section-btn {
  color: #353535;
}
.cid-tEmZlxQDPf .mbr-section-title {
  color: #ffffff;
}
.cid-ueWjxJNPzE {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #db1509;
}
.cid-ueWjxJNPzE .mbr-fallback-image.disabled {
  display: none;
}
.cid-ueWjxJNPzE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ueWjxJNPzE [class^="socicon-"]:before,
.cid-ueWjxJNPzE [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-ueWjxJNPzE .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #6592e6;
  border-width: 2px;
  transition: all .3s;
  border-color: #6592e6;
}
.cid-ueWjxJNPzE .btn-social:hover {
  background: #6592e6;
}
.cid-ueWjxJNPzE .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-tEmZlyw1KL {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/mbr-1920x1277.webp");
}
.cid-tEmZlyw1KL .mbr-overlay {
  background: #000000;
  opacity: 0.6;
}
.cid-tEmZlyw1KL img,
.cid-tEmZlyw1KL .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tEmZlyw1KL .item:focus,
.cid-tEmZlyw1KL span:focus {
  outline: none;
}
.cid-tEmZlyw1KL .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tEmZlyw1KL .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tEmZlyw1KL .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tEmZlyw1KL .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tEmZlyw1KL .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tEmZlyw1KL .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tEmZlyw1KL .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tEmZlyw1KL .mbr-section-title {
  color: #f90707;
  text-align: center;
}
.cid-tEmZlyw1KL .mbr-text,
.cid-tEmZlyw1KL .mbr-section-btn {
  text-align: left;
}
.cid-tEmZlyw1KL .item-title {
  text-align: left;
}
.cid-tEmZlyw1KL .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-tEmZlyw1KL .mbr-section-subtitle {
  color: #ffe161;
}
.cid-tEmZlzVHY1 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/mbr-6-1920x1440.webp");
}
.cid-tEmZlzVHY1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEmZlzVHY1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEmZlzVHY1 .item {
  padding-bottom: 2rem;
}
.cid-tEmZlzVHY1 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tEmZlzVHY1 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tEmZlzVHY1 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tEmZlzVHY1 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tEmZlzVHY1 .carousel-control,
.cid-tEmZlzVHY1 .close {
  background: #1b1b1b;
}
.cid-tEmZlzVHY1 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tEmZlzVHY1 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tEmZlzVHY1 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tEmZlzVHY1 .carousel-control-next span {
  margin-left: 5px;
}
.cid-tEmZlzVHY1 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tEmZlzVHY1 .close::before {
  content: '\e91a';
}
.cid-tEmZlzVHY1 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tEmZlzVHY1 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tEmZlzVHY1 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tEmZlzVHY1 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tEmZlzVHY1 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tEmZlzVHY1 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tEmZlzVHY1 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tEmZlzVHY1 .carousel-indicators li.active,
.cid-tEmZlzVHY1 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tEmZlzVHY1 .carousel-indicators li::after,
.cid-tEmZlzVHY1 .carousel-indicators li::before {
  content: none;
}
.cid-tEmZlzVHY1 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tEmZlzVHY1 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tEmZlzVHY1 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tEmZlzVHY1 .carousel-indicators {
    display: none;
  }
}
.cid-tEmZlzVHY1 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tEmZlzVHY1 .carousel-inner > .active {
  display: block;
}
.cid-tEmZlzVHY1 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tEmZlzVHY1 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tEmZlzVHY1 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tEmZlzVHY1 .carousel-control,
  .cid-tEmZlzVHY1 .carousel-indicators,
  .cid-tEmZlzVHY1 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tEmZlzVHY1 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tEmZlzVHY1 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tEmZlzVHY1 .carousel-indicators .active,
.cid-tEmZlzVHY1 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tEmZlzVHY1 .carousel-indicators .active {
  background: #fff;
}
.cid-tEmZlzVHY1 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tEmZlzVHY1 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tEmZlzVHY1 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tEmZlzVHY1 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tEmZlzVHY1 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tEmZlzVHY1 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tEmZlzVHY1 .carousel {
  width: 100%;
}
.cid-tEmZlzVHY1 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tEmZlzVHY1 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tEmZlzVHY1 .modal.fade .modal-dialog,
.cid-tEmZlzVHY1 .modal.in .modal-dialog {
  transform: none;
}
.cid-tEmZlzVHY1 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tEmZlzVHY1 H6 {
  text-align: center;
}
.cid-tEmZlzVHY1 H3 {
  color: #f90707;
}
.cid-tEmZlzloDR {
  padding-top: 5rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/ferr2-2000x1330.webp");
}
@media (max-width: 991px) {
  .cid-tEmZlzloDR .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tEmZlzloDR .row {
  flex-direction: row-reverse;
}
.cid-tEmZlzloDR img {
  width: 100%;
}
.cid-vgAnYkQ4Oz {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/mbr-1-1920x1357.webp");
}
.cid-vgAnYkQ4Oz .mbr-fallback-image.disabled {
  display: none;
}
.cid-vgAnYkQ4Oz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vgAnYkQ4Oz [class^="socicon-"]:before,
.cid-vgAnYkQ4Oz [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-vgAnYkQ4Oz .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #6592e6;
  border-width: 2px;
  transition: all .3s;
  border-color: #6592e6;
}
.cid-vgAnYkQ4Oz .btn-social:hover {
  background: #6592e6;
}
.cid-vgAnYkQ4Oz .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-tEmZlCuf4c {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/mbr-3-1920x1080.webp");
}
@media (max-width: 767px) {
  .cid-tEmZlCuf4c .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tEmZlCuf4c .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tEmZlCuf4c .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tEmZlCuf4c .card-wrapper {
  border-radius: 4px;
  background-color: #edf5e1;
  background-color: transparent;
}
.cid-tEmZlCuf4c .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tEmZlCuf4c .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tEmZlCuf4c .mbr-text {
  color: #ffffff;
}
.cid-tEmZlCuf4c .card-title {
  color: #f90707;
}
.cid-tEmZlCuf4c .price {
  color: #05386b;
}
.cid-tEmZlDEBYS {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tEmZlDEBYS .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tEmZlDEBYS .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tEmZlDEBYS .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tEmZlDEBYS .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tEmZlDEBYS .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tEmZlDEBYS .row .foot-menu li p {
  margin: 0;
}
.cid-tEmZlDEBYS .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tEmZlDEBYS .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tEmZlDEBYS .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tEmZlDEBYS .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tEmZlDEBYS .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tEmZlDEBYS .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tEmZlDEBYS .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tEmZlDEBYS .row .row-copirayt p {
  width: 100%;
}
.cid-tEmZlDEBYS foot-menu-item {
  color: #e6c63b;
}
.cid-tIqzx6YCRJ .float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 19px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 80px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}
.cid-tIqzx6YCRJ .my-float {
  margin-top: 16px;
}
.cid-tIqzx6YCRJ P {
  color: #232323;
}
.cid-tIqzx6YCRJ DIV {
  color: #ffffff;
}
.cid-tIqzx6YCRJ H10 {
  color: #767676;
}
.cid-tIqzx6YCRJ .hidden {
  display: none;
}
.cid-tFECAlKqMP .navbar-dropdown {
  position: relative !important;
}
.cid-tFECAlKqMP .navbar-dropdown {
  position: absolute !important;
}
.cid-tFECAlKqMP .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-tFECAlKqMP .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tFECAlKqMP .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tFECAlKqMP .dropdown-item:hover,
.cid-tFECAlKqMP .dropdown-item:focus {
  background: #f0ca26 !important;
  color: white !important;
}
.cid-tFECAlKqMP .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tFECAlKqMP .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tFECAlKqMP .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tFECAlKqMP .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tFECAlKqMP .nav-link {
  position: relative;
}
.cid-tFECAlKqMP .container {
  display: flex;
  margin: auto;
}
.cid-tFECAlKqMP .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tFECAlKqMP .dropdown-menu,
.cid-tFECAlKqMP .navbar.opened {
  background: #ff0f00 !important;
}
.cid-tFECAlKqMP .nav-item:focus,
.cid-tFECAlKqMP .nav-link:focus {
  outline: none;
}
.cid-tFECAlKqMP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tFECAlKqMP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tFECAlKqMP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tFECAlKqMP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tFECAlKqMP .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tFECAlKqMP .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tFECAlKqMP .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(255, 15, 0, 0);
}
.cid-tFECAlKqMP .navbar.opened {
  transition: all 0.3s;
}
.cid-tFECAlKqMP .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tFECAlKqMP .navbar .navbar-logo img {
  width: auto;
}
.cid-tFECAlKqMP .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tFECAlKqMP .navbar.collapsed {
  justify-content: center;
}
.cid-tFECAlKqMP .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tFECAlKqMP .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tFECAlKqMP .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tFECAlKqMP .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tFECAlKqMP .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tFECAlKqMP .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-tFECAlKqMP .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tFECAlKqMP .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tFECAlKqMP .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tFECAlKqMP .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tFECAlKqMP .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tFECAlKqMP .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tFECAlKqMP .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tFECAlKqMP .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-tFECAlKqMP .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tFECAlKqMP .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tFECAlKqMP .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tFECAlKqMP .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tFECAlKqMP .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tFECAlKqMP .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tFECAlKqMP .navbar.navbar-short {
  min-height: 60px;
}
.cid-tFECAlKqMP .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tFECAlKqMP .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tFECAlKqMP .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tFECAlKqMP .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tFECAlKqMP .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tFECAlKqMP .dropdown-item.active,
.cid-tFECAlKqMP .dropdown-item:active {
  background-color: transparent;
}
.cid-tFECAlKqMP .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tFECAlKqMP .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tFECAlKqMP .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tFECAlKqMP .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff0f00;
}
.cid-tFECAlKqMP .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tFECAlKqMP .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tFECAlKqMP ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tFECAlKqMP .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tFECAlKqMP button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tFECAlKqMP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tFECAlKqMP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tFECAlKqMP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFECAlKqMP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFECAlKqMP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tFECAlKqMP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFECAlKqMP nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tFECAlKqMP nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tFECAlKqMP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFECAlKqMP .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tFECAlKqMP a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tFECAlKqMP .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-tFECAlKqMP .navbar {
    height: 70px;
  }
  .cid-tFECAlKqMP .navbar.opened {
    height: auto;
  }
  .cid-tFECAlKqMP .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tFECAi6AbP {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/mbr-1920x1087.webp");
}
@media (max-width: 991px) {
  .cid-tFECAi6AbP .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tFECAi6AbP .row {
  flex-direction: row-reverse;
}
.cid-tFECAi6AbP img {
  width: 100%;
}
.cid-tFECAiJaoL {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #bbbbbb;
}
.cid-tFECAiJaoL img,
.cid-tFECAiJaoL .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tFECAiJaoL .item:focus,
.cid-tFECAiJaoL span:focus {
  outline: none;
}
.cid-tFECAiJaoL .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tFECAiJaoL .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tFECAiJaoL .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tFECAiJaoL .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tFECAiJaoL .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tFECAiJaoL .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tFECAiJaoL .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tFECAiJaoL .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tFECAiJaoL .mbr-text,
.cid-tFECAiJaoL .mbr-section-btn {
  text-align: left;
}
.cid-tFECAiJaoL .item-title {
  text-align: left;
}
.cid-tFECAiJaoL .item-subtitle {
  text-align: left;
  color: #030303;
}
.cid-tFECAiJaoL .mbr-section-subtitle {
  color: #ffe161;
}
.cid-tFECAjLoXz {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/log4-3-850x640.webp");
}
@media (max-width: 991px) {
  .cid-tFECAjLoXz .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tFECAjLoXz .row {
  flex-direction: row-reverse;
}
.cid-tFECAjLoXz img {
  width: 100%;
}
.cid-tFECAksn8H {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #bbbbbb;
}
.cid-tFECAksn8H .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFECAksn8H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFECAksn8H .item {
  padding-bottom: 2rem;
}
.cid-tFECAksn8H .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tFECAksn8H .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tFECAksn8H .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tFECAksn8H .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tFECAksn8H .carousel-control,
.cid-tFECAksn8H .close {
  background: #1b1b1b;
}
.cid-tFECAksn8H .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tFECAksn8H .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tFECAksn8H .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tFECAksn8H .carousel-control-next span {
  margin-left: 5px;
}
.cid-tFECAksn8H .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFECAksn8H .close::before {
  content: '\e91a';
}
.cid-tFECAksn8H .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFECAksn8H .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tFECAksn8H .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFECAksn8H .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFECAksn8H .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tFECAksn8H .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tFECAksn8H .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tFECAksn8H .carousel-indicators li.active,
.cid-tFECAksn8H .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tFECAksn8H .carousel-indicators li::after,
.cid-tFECAksn8H .carousel-indicators li::before {
  content: none;
}
.cid-tFECAksn8H .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tFECAksn8H .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tFECAksn8H .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tFECAksn8H .carousel-indicators {
    display: none;
  }
}
.cid-tFECAksn8H .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFECAksn8H .carousel-inner > .active {
  display: block;
}
.cid-tFECAksn8H .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFECAksn8H .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tFECAksn8H .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tFECAksn8H .carousel-control,
  .cid-tFECAksn8H .carousel-indicators,
  .cid-tFECAksn8H .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tFECAksn8H .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tFECAksn8H .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tFECAksn8H .carousel-indicators .active,
.cid-tFECAksn8H .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tFECAksn8H .carousel-indicators .active {
  background: #fff;
}
.cid-tFECAksn8H .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tFECAksn8H .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tFECAksn8H .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tFECAksn8H .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tFECAksn8H .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tFECAksn8H .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tFECAksn8H .carousel {
  width: 100%;
}
.cid-tFECAksn8H .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tFECAksn8H .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tFECAksn8H .modal.fade .modal-dialog,
.cid-tFECAksn8H .modal.in .modal-dialog {
  transform: none;
}
.cid-tFECAksn8H .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tFECAksn8H H6 {
  text-align: center;
}
.cid-tFECAksn8H H3 {
  color: #232323;
}
.cid-tFECAmOApk {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/log2-2-1080x719.webp");
}
@media (max-width: 767px) {
  .cid-tFECAmOApk .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tFECAmOApk .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tFECAmOApk .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tFECAmOApk .card-wrapper {
  border-radius: 4px;
  background-color: #edf5e1;
  background-color: transparent;
}
.cid-tFECAmOApk .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tFECAmOApk .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tFECAmOApk .mbr-text {
  color: #fafafa;
}
.cid-tFECAmOApk .card-title {
  color: #ffe161;
}
.cid-tFECAmOApk .price {
  color: #05386b;
}
.cid-tFECAnLp4a {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tFECAnLp4a .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tFECAnLp4a .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tFECAnLp4a .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tFECAnLp4a .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tFECAnLp4a .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tFECAnLp4a .row .foot-menu li p {
  margin: 0;
}
.cid-tFECAnLp4a .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tFECAnLp4a .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tFECAnLp4a .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tFECAnLp4a .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tFECAnLp4a .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tFECAnLp4a .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tFECAnLp4a .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tFECAnLp4a .row .row-copirayt p {
  width: 100%;
}
.cid-tFECAnLp4a foot-menu-item {
  color: #e6c63b;
}
.cid-tIqzVRsNkk .float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 19px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 80px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}
.cid-tIqzVRsNkk .my-float {
  margin-top: 16px;
}
.cid-tIqzVRsNkk P {
  color: #232323;
}
.cid-tIqzVRsNkk DIV {
  color: #ffffff;
}
.cid-tIqzVRsNkk H10 {
  color: #767676;
}
.cid-tIqzVRsNkk .hidden {
  display: none;
}
.cid-tGpeL8s96v .navbar-dropdown {
  position: relative !important;
}
.cid-tGpeL8s96v .navbar-dropdown {
  position: absolute !important;
}
.cid-tGpeL8s96v .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-tGpeL8s96v .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tGpeL8s96v .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tGpeL8s96v .dropdown-item:hover,
.cid-tGpeL8s96v .dropdown-item:focus {
  background: #f0ca26 !important;
  color: white !important;
}
.cid-tGpeL8s96v .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tGpeL8s96v .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tGpeL8s96v .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tGpeL8s96v .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tGpeL8s96v .nav-link {
  position: relative;
}
.cid-tGpeL8s96v .container {
  display: flex;
  margin: auto;
}
.cid-tGpeL8s96v .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tGpeL8s96v .dropdown-menu,
.cid-tGpeL8s96v .navbar.opened {
  background: #ff0f00 !important;
}
.cid-tGpeL8s96v .nav-item:focus,
.cid-tGpeL8s96v .nav-link:focus {
  outline: none;
}
.cid-tGpeL8s96v .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tGpeL8s96v .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tGpeL8s96v .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tGpeL8s96v .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tGpeL8s96v .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tGpeL8s96v .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tGpeL8s96v .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(255, 15, 0, 0);
}
.cid-tGpeL8s96v .navbar.opened {
  transition: all 0.3s;
}
.cid-tGpeL8s96v .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tGpeL8s96v .navbar .navbar-logo img {
  width: auto;
}
.cid-tGpeL8s96v .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tGpeL8s96v .navbar.collapsed {
  justify-content: center;
}
.cid-tGpeL8s96v .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tGpeL8s96v .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tGpeL8s96v .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tGpeL8s96v .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tGpeL8s96v .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tGpeL8s96v .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-tGpeL8s96v .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tGpeL8s96v .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tGpeL8s96v .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tGpeL8s96v .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tGpeL8s96v .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tGpeL8s96v .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tGpeL8s96v .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tGpeL8s96v .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-tGpeL8s96v .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tGpeL8s96v .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tGpeL8s96v .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tGpeL8s96v .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tGpeL8s96v .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tGpeL8s96v .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tGpeL8s96v .navbar.navbar-short {
  min-height: 60px;
}
.cid-tGpeL8s96v .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tGpeL8s96v .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tGpeL8s96v .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tGpeL8s96v .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tGpeL8s96v .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tGpeL8s96v .dropdown-item.active,
.cid-tGpeL8s96v .dropdown-item:active {
  background-color: transparent;
}
.cid-tGpeL8s96v .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tGpeL8s96v .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tGpeL8s96v .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tGpeL8s96v .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff0f00;
}
.cid-tGpeL8s96v .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tGpeL8s96v .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tGpeL8s96v ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tGpeL8s96v .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tGpeL8s96v button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tGpeL8s96v button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tGpeL8s96v button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tGpeL8s96v button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGpeL8s96v button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGpeL8s96v button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tGpeL8s96v nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGpeL8s96v nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tGpeL8s96v nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tGpeL8s96v nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGpeL8s96v .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tGpeL8s96v a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tGpeL8s96v .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-tGpeL8s96v .navbar {
    height: 70px;
  }
  .cid-tGpeL8s96v .navbar.opened {
    height: auto;
  }
  .cid-tGpeL8s96v .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tGpeL9lDV3 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/serv-1800x1190.webp");
}
.cid-tGpeL9lDV3 .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tGpeL9lDV3 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tGpeL9lDV3 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tGpeL9lDV3 .text-wrapper {
    padding: 0 2rem;
    padding: 0 4rem;
  }
}
@media (max-width: 768px) {
  .cid-tGpeL9lDV3 .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tGpeL9lDV3 .mbr-text,
.cid-tGpeL9lDV3 .mbr-section-btn {
  color: #353535;
}
.cid-tGpeL9lDV3 .mbr-section-title {
  color: #232323;
}
.cid-vgAvZHe3zA {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vgAvZHe3zA img {
  width: 120px;
  margin: auto;
}
.cid-vgAvZHe3zA .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-vgAvZHe3zA .card {
    max-width: 12.5%;
  }
}
.cid-vgAvZHe3zA .mbr-section-subtitle {
  color: #353535;
}
.cid-tGpeLb7PfG {
  padding-top: 4rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-1-1920x1357.webp");
}
.cid-tGpeLb7PfG .mbr-overlay {
  background: #ffffff;
  opacity: 0;
}
.cid-tGpeLb7PfG img,
.cid-tGpeLb7PfG .item-img {
  width: 100%;
  height: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-tGpeLb7PfG .item:focus,
.cid-tGpeLb7PfG span:focus {
  outline: none;
}
.cid-tGpeLb7PfG .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tGpeLb7PfG .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tGpeLb7PfG .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tGpeLb7PfG .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tGpeLb7PfG .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tGpeLb7PfG .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tGpeLb7PfG .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tGpeLb7PfG .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tGpeLb7PfG .mbr-text,
.cid-tGpeLb7PfG .mbr-section-btn {
  text-align: left;
}
.cid-tGpeLb7PfG .item-title {
  text-align: left;
}
.cid-tGpeLb7PfG .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-tGpeLb7PfG .mbr-section-subtitle {
  color: #ffe161;
}
.cid-tGpeLc9JPc {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tGpeLc9JPc .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tGpeLc9JPc .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tGpeLc9JPc .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-tGpeLc9JPc .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tGpeLcWUOp {
  display: flex;
  background-image: url("../../../assets/images/serv2-1729x1153.webp");
}
.cid-tGpeLcWUOp .mbr-overlay {
  background-color: #353535;
  opacity: 0.5;
}
.cid-tGpeLcWUOp .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-tGpeLcWUOp {
    align-items: flex-end;
  }
  .cid-tGpeLcWUOp .row {
    justify-content: flex-start;
  }
  .cid-tGpeLcWUOp .content-wrap {
    width: 51%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tGpeLcWUOp .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tGpeLcWUOp {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tGpeLcWUOp .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tGpeLcWUOp .content-wrap {
    width: 100%;
  }
}
.cid-tGpeLdNdrT {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tGpeLdNdrT .carousel {
  height: 800px;
}
.cid-tGpeLdNdrT .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tGpeLdNdrT .carousel-item,
.cid-tGpeLdNdrT .carousel-inner {
  height: 100%;
}
.cid-tGpeLdNdrT .carousel-caption {
  bottom: 40px;
}
.cid-tGpeLdNdrT .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tGpeLdNdrT .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tGpeLdNdrT .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tGpeLdNdrT .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tGpeLdNdrT .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tGpeLdNdrT .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tGpeLdNdrT .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tGpeLdNdrT .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tGpeLdNdrT .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tGpeLdNdrT .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tGpeLdNdrT .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tGpeLdNdrT .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tGpeLdNdrT .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tGpeLdNdrT .carousel-indicators li.active,
.cid-tGpeLdNdrT .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tGpeLdNdrT .carousel-indicators li::after,
.cid-tGpeLdNdrT .carousel-indicators li::before {
  content: none;
}
.cid-tGpeLdNdrT .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tGpeLdNdrT .carousel-indicators {
    display: none !important;
  }
}
.cid-tGpeLf4ZfQ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tGpeLf4ZfQ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tGpeLf4ZfQ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tGpeLf4ZfQ .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tGpeLf4ZfQ .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tGpeLf4ZfQ .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tGpeLf4ZfQ .row .foot-menu li p {
  margin: 0;
}
.cid-tGpeLf4ZfQ .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tGpeLf4ZfQ .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tGpeLf4ZfQ .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tGpeLf4ZfQ .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tGpeLf4ZfQ .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tGpeLf4ZfQ .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tGpeLf4ZfQ .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tGpeLf4ZfQ .row .row-copirayt p {
  width: 100%;
}
.cid-tGpeLf4ZfQ foot-menu-item {
  color: #e6c63b;
}
.cid-tGpDUAFMDw .float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 19px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 80px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}
.cid-tGpDUAFMDw .my-float {
  margin-top: 16px;
}
.cid-tGpDUAFMDw P {
  color: #232323;
}
.cid-tGpDUAFMDw DIV {
  color: #ffffff;
}
.cid-tGpDUAFMDw H10 {
  color: #767676;
}
.cid-tGpDUAFMDw .hidden {
  display: none;
}
.cid-sFCw1qGFAI .navbar-dropdown {
  position: relative !important;
}
.cid-sFCw1qGFAI .navbar-dropdown {
  position: absolute !important;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFCw1qGFAI .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFCw1qGFAI .dropdown-item:hover,
.cid-sFCw1qGFAI .dropdown-item:focus {
  background: #f0ca26 !important;
  color: white !important;
}
.cid-sFCw1qGFAI .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFCw1qGFAI .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFCw1qGFAI .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFCw1qGFAI .nav-link {
  position: relative;
}
.cid-sFCw1qGFAI .container {
  display: flex;
  margin: auto;
}
.cid-sFCw1qGFAI .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFCw1qGFAI .dropdown-menu,
.cid-sFCw1qGFAI .navbar.opened {
  background: #ff0f00 !important;
}
.cid-sFCw1qGFAI .nav-item:focus,
.cid-sFCw1qGFAI .nav-link:focus {
  outline: none;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFCw1qGFAI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFCw1qGFAI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFCw1qGFAI .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(255, 15, 0, 0);
}
.cid-sFCw1qGFAI .navbar.opened {
  transition: all 0.3s;
}
.cid-sFCw1qGFAI .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFCw1qGFAI .navbar .navbar-logo img {
  width: auto;
}
.cid-sFCw1qGFAI .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFCw1qGFAI .navbar.collapsed {
  justify-content: center;
}
.cid-sFCw1qGFAI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFCw1qGFAI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sFCw1qGFAI .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFCw1qGFAI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFCw1qGFAI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFCw1qGFAI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFCw1qGFAI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFCw1qGFAI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFCw1qGFAI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFCw1qGFAI .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFCw1qGFAI .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFCw1qGFAI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFCw1qGFAI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFCw1qGFAI .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sFCw1qGFAI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFCw1qGFAI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFCw1qGFAI .dropdown-item.active,
.cid-sFCw1qGFAI .dropdown-item:active {
  background-color: transparent;
}
.cid-sFCw1qGFAI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFCw1qGFAI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff0f00;
}
.cid-sFCw1qGFAI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFCw1qGFAI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFCw1qGFAI ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFCw1qGFAI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFCw1qGFAI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sFCw1qGFAI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar {
    height: 70px;
  }
  .cid-sFCw1qGFAI .navbar.opened {
    height: auto;
  }
  .cid-sFCw1qGFAI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tIiTDSPlRS {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/mbr-1920x1080.webp");
}
.cid-tIiTDSPlRS .mbr-overlay {
  background: #000000;
  opacity: 0.4;
}
.cid-tIiTDSPlRS img,
.cid-tIiTDSPlRS .item-img {
  width: 100%;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-tIiTDSPlRS .item:focus,
.cid-tIiTDSPlRS span:focus {
  outline: none;
}
.cid-tIiTDSPlRS .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tIiTDSPlRS .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tIiTDSPlRS .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tIiTDSPlRS .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tIiTDSPlRS .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tIiTDSPlRS .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tIiTDSPlRS .item-wrapper {
  background: transparent;
}
.cid-tIiTDSPlRS .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tIiTDSPlRS .mbr-section-title {
  color: #ffffff;
}
.cid-tIiTDSPlRS .mbr-text,
.cid-tIiTDSPlRS .mbr-section-btn {
  text-align: left;
  color: #bbbbbb;
}
.cid-tIiTDSPlRS .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-tIiTDSPlRS .item-subtitle {
  text-align: center;
}
.cid-tMyHEBTdQK {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ff1305;
}
.cid-tMyHEBTdQK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMyHEBTdQK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMyHEBTdQK [class^="socicon-"]:before,
.cid-tMyHEBTdQK [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-tMyHEBTdQK .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #6592e6;
  border-width: 2px;
  transition: all .3s;
  border-color: #6592e6;
}
.cid-tMyHEBTdQK .btn-social:hover {
  background: #6592e6;
}
.cid-tMyHEBTdQK .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-uaucDWqDA5 {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/mbr-1920x1080.webp");
}
.cid-uaucDWqDA5 .mbr-overlay {
  background: #000000;
  opacity: 0.4;
}
.cid-uaucDWqDA5 img,
.cid-uaucDWqDA5 .item-img {
  width: 100%;
}
.cid-uaucDWqDA5 .item:focus,
.cid-uaucDWqDA5 span:focus {
  outline: none;
}
.cid-uaucDWqDA5 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uaucDWqDA5 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uaucDWqDA5 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uaucDWqDA5 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uaucDWqDA5 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uaucDWqDA5 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uaucDWqDA5 .item-wrapper {
  background: transparent;
}
.cid-uaucDWqDA5 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uaucDWqDA5 .mbr-section-title {
  color: #ffffff;
}
.cid-uaucDWqDA5 .mbr-text,
.cid-uaucDWqDA5 .mbr-section-btn {
  text-align: left;
  color: #bbbbbb;
}
.cid-uaucDWqDA5 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uaucDWqDA5 .item-subtitle {
  text-align: center;
}
.cid-tN2rTZeYGC {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ff1305;
}
.cid-tN2rTZeYGC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tN2rTZeYGC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tN2rTZeYGC [class^="socicon-"]:before,
.cid-tN2rTZeYGC [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-tN2rTZeYGC .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #6592e6;
  border-width: 2px;
  transition: all .3s;
  border-color: #6592e6;
}
.cid-tN2rTZeYGC .btn-social:hover {
  background: #6592e6;
}
.cid-tN2rTZeYGC .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-tMzbTSlzkD {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/mbr-1920x1080.webp");
}
.cid-tMzbTSlzkD .mbr-overlay {
  background: #000000;
  opacity: 0.4;
}
.cid-tMzbTSlzkD img,
.cid-tMzbTSlzkD .item-img {
  width: 100%;
}
.cid-tMzbTSlzkD .item:focus,
.cid-tMzbTSlzkD span:focus {
  outline: none;
}
.cid-tMzbTSlzkD .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tMzbTSlzkD .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tMzbTSlzkD .item {
  padding: 0;
  margin: 0;
}
.cid-tMzbTSlzkD .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tMzbTSlzkD .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tMzbTSlzkD .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tMzbTSlzkD .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tMzbTSlzkD .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tMzbTSlzkD .item-wrapper {
  background: transparent;
}
.cid-tMzbTSlzkD .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tMzbTSlzkD .mbr-section-title {
  color: #ffffff;
}
.cid-tMzbTSlzkD .mbr-text,
.cid-tMzbTSlzkD .mbr-section-btn {
  text-align: left;
  color: #bbbbbb;
}
.cid-tMzbTSlzkD .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-tMzbTSlzkD .item-subtitle {
  text-align: center;
}
.cid-tMyFTD1NSH {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ff1305;
}
.cid-tMyFTD1NSH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMyFTD1NSH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMyFTD1NSH [class^="socicon-"]:before,
.cid-tMyFTD1NSH [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-tMyFTD1NSH .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #6592e6;
  border-width: 2px;
  transition: all .3s;
  border-color: #6592e6;
}
.cid-tMyFTD1NSH .btn-social:hover {
  background: #6592e6;
}
.cid-tMyFTD1NSH .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-tMzibOUDMX {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/mbr-1920x1080.webp");
}
.cid-tMzibOUDMX .mbr-overlay {
  background: #000000;
  opacity: 0.4;
}
.cid-tMzibOUDMX img,
.cid-tMzibOUDMX .item-img {
  width: 100%;
}
.cid-tMzibOUDMX .item:focus,
.cid-tMzibOUDMX span:focus {
  outline: none;
}
.cid-tMzibOUDMX .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tMzibOUDMX .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tMzibOUDMX .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tMzibOUDMX .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tMzibOUDMX .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tMzibOUDMX .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tMzibOUDMX .item-wrapper {
  background: transparent;
}
.cid-tMzibOUDMX .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tMzibOUDMX .mbr-section-title {
  color: #ffffff;
}
.cid-tMzibOUDMX .mbr-text,
.cid-tMzibOUDMX .mbr-section-btn {
  text-align: left;
  color: #bbbbbb;
}
.cid-tMzibOUDMX .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-tMzibOUDMX .item-subtitle {
  text-align: center;
}
.cid-tMyHACm2XR {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ff1305;
}
.cid-tMyHACm2XR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMyHACm2XR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMyHACm2XR [class^="socicon-"]:before,
.cid-tMyHACm2XR [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-tMyHACm2XR .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #6592e6;
  border-width: 2px;
  transition: all .3s;
  border-color: #6592e6;
}
.cid-tMyHACm2XR .btn-social:hover {
  background: #6592e6;
}
.cid-tMyHACm2XR .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-tMz9hKnxwU {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/mbr-1920x1080.webp");
}
.cid-tMz9hKnxwU .mbr-overlay {
  background: #000000;
  opacity: 0.4;
}
.cid-tMz9hKnxwU img,
.cid-tMz9hKnxwU .item-img {
  width: 100%;
}
.cid-tMz9hKnxwU .item:focus,
.cid-tMz9hKnxwU span:focus {
  outline: none;
}
.cid-tMz9hKnxwU .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tMz9hKnxwU .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tMz9hKnxwU .item {
  padding: 0;
  margin: 0;
}
.cid-tMz9hKnxwU .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tMz9hKnxwU .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tMz9hKnxwU .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tMz9hKnxwU .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tMz9hKnxwU .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tMz9hKnxwU .item-wrapper {
  background: transparent;
}
.cid-tMz9hKnxwU .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tMz9hKnxwU .mbr-section-title {
  color: #ffffff;
}
.cid-tMz9hKnxwU .mbr-text,
.cid-tMz9hKnxwU .mbr-section-btn {
  text-align: left;
  color: #bbbbbb;
}
.cid-tMz9hKnxwU .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-tMz9hKnxwU .item-subtitle {
  text-align: center;
}
.cid-tMzi1W9uu1 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ff1305;
}
.cid-tMzi1W9uu1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMzi1W9uu1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMzi1W9uu1 [class^="socicon-"]:before,
.cid-tMzi1W9uu1 [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-tMzi1W9uu1 .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #6592e6;
  border-width: 2px;
  transition: all .3s;
  border-color: #6592e6;
}
.cid-tMzi1W9uu1 .btn-social:hover {
  background: #6592e6;
}
.cid-tMzi1W9uu1 .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-tHixfbr8oY {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/mbr-1920x1080.webp");
}
.cid-tHixfbr8oY .mbr-overlay {
  background: #000000;
  opacity: 0.4;
}
.cid-tHixfbr8oY img,
.cid-tHixfbr8oY .item-img {
  width: 100%;
}
.cid-tHixfbr8oY .item:focus,
.cid-tHixfbr8oY span:focus {
  outline: none;
}
.cid-tHixfbr8oY .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tHixfbr8oY .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tHixfbr8oY .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tHixfbr8oY .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tHixfbr8oY .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tHixfbr8oY .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tHixfbr8oY .item-wrapper {
  background: transparent;
}
.cid-tHixfbr8oY .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tHixfbr8oY .mbr-section-title {
  color: #ffffff;
}
.cid-tHixfbr8oY .mbr-text,
.cid-tHixfbr8oY .mbr-section-btn {
  text-align: left;
  color: #bbbbbb;
}
.cid-tHixfbr8oY .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-tHixfbr8oY .item-subtitle {
  text-align: center;
}
.cid-tMziefPzj4 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ff1305;
}
.cid-tMziefPzj4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMziefPzj4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMziefPzj4 [class^="socicon-"]:before,
.cid-tMziefPzj4 [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-tMziefPzj4 .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #6592e6;
  border-width: 2px;
  transition: all .3s;
  border-color: #6592e6;
}
.cid-tMziefPzj4 .btn-social:hover {
  background: #6592e6;
}
.cid-tMziefPzj4 .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-sFCygHrmNf {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-sFCygHrmNf .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sFCygHrmNf .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sFCygHrmNf .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sFCygHrmNf .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sFCygHrmNf .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sFCygHrmNf .row .foot-menu li p {
  margin: 0;
}
.cid-sFCygHrmNf .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sFCygHrmNf .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sFCygHrmNf .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sFCygHrmNf .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sFCygHrmNf .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sFCygHrmNf .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sFCygHrmNf .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sFCygHrmNf .row .row-copirayt p {
  width: 100%;
}
.cid-sFCygHrmNf foot-menu-item {
  color: #e6c63b;
}
.cid-tIqAoCLHUb .float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 19px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 80px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}
.cid-tIqAoCLHUb .my-float {
  margin-top: 16px;
}
.cid-tIqAoCLHUb P {
  color: #232323;
}
.cid-tIqAoCLHUb DIV {
  color: #ffffff;
}
.cid-tIqAoCLHUb H10 {
  color: #767676;
}
.cid-tIqAoCLHUb .hidden {
  display: none;
}
