body {
  font-family: Jost;
}
.display-1 {
  font-family: 'PT Sans Narrow', sans-serif;
  font-size: 6.4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 8rem;
}
.display-2 {
  font-family: 'PT Sans Narrow', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'PT Sans Narrow', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-5 {
  font-family: 'Rubik', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Roboto', 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: 5.12rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 4.48rem;
    font-size: calc( 2.89rem + (6.4 - 2.89) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.89rem + (6.4 - 2.89) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.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))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #000000 !important;
}
.bg-success {
  background-color: #e29d35 !important;
}
.bg-info {
  background-color: #fe7501 !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #767676 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #e29d35 !important;
  border-color: #e29d35 !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: #a86f18 !important;
  border-color: #a86f18 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #a86f18 !important;
  border-color: #a86f18 !important;
}
.btn-info,
.btn-info:active {
  background-color: #fe7501 !important;
  border-color: #fe7501 !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: #a84d01 !important;
  border-color: #a84d01 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #a84d01 !important;
  border-color: #a84d01 !important;
}
.btn-success,
.btn-success:active {
  background-color: #e29d35 !important;
  border-color: #e29d35 !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: #a86f18 !important;
  border-color: #a86f18 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #a86f18 !important;
  border-color: #a86f18 !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: #767676 !important;
  border-color: #767676 !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: #4b4b4b !important;
  border-color: #4b4b4b !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #4b4b4b !important;
  border-color: #4b4b4b !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: #000000;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #e29d35;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #a86f18 !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: #e29d35 !important;
  border-color: #e29d35 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fe7501;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #a84d01 !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: #fe7501 !important;
  border-color: #fe7501 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #e29d35;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #a86f18 !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: #e29d35 !important;
  border-color: #e29d35 !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: #767676;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #4b4b4b !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: #767676 !important;
  border-color: #767676 !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: #000000 !important;
}
.text-secondary {
  color: #e29d35 !important;
}
.text-success {
  color: #e29d35 !important;
}
.text-info {
  color: #fe7501 !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #767676 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #9b6616 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #9b6616 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #984601 !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: #434343 !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: #000000;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #fe7501;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #767676;
}
.mbr-gallery-filter li.active .btn {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #000000;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b3b3b3;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #fcf4e7;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffe3cc;
}
.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: #b6b6b6;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'PT Sans Narrow', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.5rem;
}
.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: #000000 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'PT Sans Narrow', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.5rem;
}
blockquote {
  border-color: #000000;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #000000;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #000000;
}
.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: #000000;
  border-bottom-color: #000000;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #000000 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #e29d35 !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='%23000000' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-vbgUQ21TOj .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vbgUQ21TOj .display-2 {
  font-size: 2rem;
}
@media (max-width: 992px) {
  .cid-vbgUQ21TOj .icons-menu {
    padding: 1rem 0 !important;
  }
}
.cid-vbgUQ21TOj .container {
  max-width: 1800px;
  display: flex;
  margin: auto;
}
.cid-vbgUQ21TOj .navbar {
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  min-height: 77px;
  transition: all 0.3s;
  background: #fe7501;
}
.cid-vbgUQ21TOj .navbar.opened {
  transition: all 0.3s;
}
.cid-vbgUQ21TOj .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vbgUQ21TOj .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-vbgUQ21TOj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vbgUQ21TOj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vbgUQ21TOj .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.6rem);
  }
}
.cid-vbgUQ21TOj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vbgUQ21TOj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vbgUQ21TOj .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: 55%;
}
.cid-vbgUQ21TOj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vbgUQ21TOj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vbgUQ21TOj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vbgUQ21TOj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vbgUQ21TOj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vbgUQ21TOj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vbgUQ21TOj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vbgUQ21TOj .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: 55%;
  }
  .cid-vbgUQ21TOj .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-vbgUQ21TOj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vbgUQ21TOj .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vbgUQ21TOj .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vbgUQ21TOj .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-vbgUQ21TOj .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vbgUQ21TOj .navbar.navbar-short {
  background: #fe7501 !important;
  min-height: 60px;
}
.cid-vbgUQ21TOj .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-vbgUQ21TOj .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-vbgUQ21TOj .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: fit-content;
  transition: all 0.3s;
}
.cid-vbgUQ21TOj .nav-link:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-vbgUQ21TOj .nav-link:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}
.cid-vbgUQ21TOj .dropdown-menu {
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}
.cid-vbgUQ21TOj .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.2em 1em !important;
}
.cid-vbgUQ21TOj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vbgUQ21TOj .mbr-iconfont {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vbgUQ21TOj .navbar-caption {
  padding-right: 4rem;
}
.cid-vbgUQ21TOj .navbar-nav {
  justify-content: center;
  width: -webkit-fill-available;
}
.cid-vbgUQ21TOj .dropdown-menu,
.cid-vbgUQ21TOj .navbar.opened {
  background: #fe7501 !important;
}
.cid-vbgUQ21TOj .nav-item:focus,
.cid-vbgUQ21TOj .nav-link:focus {
  outline: none;
}
.cid-vbgUQ21TOj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vbgUQ21TOj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vbgUQ21TOj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-vbgUQ21TOj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vbgUQ21TOj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vbgUQ21TOj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vbgUQ21TOj .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vbgUQ21TOj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vbgUQ21TOj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vbgUQ21TOj .dropdown-item.active,
.cid-vbgUQ21TOj .dropdown-item:active {
  background-color: transparent;
}
.cid-vbgUQ21TOj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vbgUQ21TOj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vbgUQ21TOj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vbgUQ21TOj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fe7501;
}
.cid-vbgUQ21TOj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vbgUQ21TOj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vbgUQ21TOj ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-vbgUQ21TOj .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vbgUQ21TOj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-vbgUQ21TOj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vbgUQ21TOj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vbgUQ21TOj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vbgUQ21TOj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vbgUQ21TOj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vbgUQ21TOj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vbgUQ21TOj nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vbgUQ21TOj nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vbgUQ21TOj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vbgUQ21TOj .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-vbgUQ21TOj a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vbgUQ21TOj .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  min-width: 160px;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-vbgUQ21TOj .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vbgUQ21TOj .navbar {
    height: 77px;
  }
  .cid-vbgUQ21TOj .navbar.opened {
    height: auto;
  }
  .cid-vbgUQ21TOj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vbgWQqOOYR {
  background-image: url("../../../assets/images/marcus-eletrica-1-1920x1080.jpg");
}
.cid-vbgWQqOOYR .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbgWQqOOYR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbgWQqOOYR .mbr-section-title {
  color: #e29d35;
  text-shadow: 2px 3px 5px rgba(0, 0, 0, 0.6);
}
.cid-vbgWQqOOYR .mbr-text {
  color: #FFFFFF;
  margin-top: 20px;
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
}
.cid-vbgWQqOOYR .mbr-section-btn {
  margin-top: 30px;
}
.cid-vbgWQqOOYR .mbr-text,
.cid-vbgWQqOOYR .mbr-section-btn {
  text-align: center;
}
.cid-vblAmHmNzy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vblAmHmNzy .mbr-fallback-image.disabled {
  display: none;
}
.cid-vblAmHmNzy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vblAmHmNzy .content-wrap {
  margin: 0 -20px;
}
.cid-vblAmHmNzy .content-wrap .card {
  padding: 0 20px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-vblAmHmNzy .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vblAmHmNzy .title-wrapper .mbr-label {
  margin-bottom: 12px;
}
.cid-vblAmHmNzy .title-wrapper .mbr-section-title {
  margin-bottom: 12px;
}
.cid-vblAmHmNzy .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vblAmHmNzy .title-wrapper .mbr-section-btn {
  margin-top: 16px;
}
.cid-vblAmHmNzy .title-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vblAmHmNzy .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  max-width: 100%;
}
@media (max-width: 768px) {
  .cid-vblAmHmNzy .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-vblAmHmNzy .embla__slide .slide-content {
  width: 100%;
}
.cid-vblAmHmNzy .embla__slide .slide-content .item-wrapper .item-img img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 1440px) {
  .cid-vblAmHmNzy .embla__slide .slide-content .item-wrapper .item-img img {
    height: 550px;
  }
}
@media (max-width: 1200px) {
  .cid-vblAmHmNzy .embla__slide .slide-content .item-wrapper .item-img img {
    height: 450px;
  }
}
@media (max-width: 992px) {
  .cid-vblAmHmNzy .embla__slide .slide-content .item-wrapper .item-img img {
    height: 300px;
  }
}
.cid-vblAmHmNzy .embla__button--next,
.cid-vblAmHmNzy .embla__button--prev {
  display: flex;
}
.cid-vblAmHmNzy .embla__button {
  bottom: 47%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  background-color: #121212 !important;
  color: #ffffff !important;
  border: none !important;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-vblAmHmNzy .embla__button:hover {
  background-color: #f9652f !important;
  color: #ffffff !important;
}
.cid-vblAmHmNzy .embla__button:disabled {
  opacity: .5 !important;
  background-color: #121212 !important;
  color: #ffffff !important;
}
.cid-vblAmHmNzy .embla__button.embla__button--prev {
  left: 24px;
}
@media (max-width: 992px) {
  .cid-vblAmHmNzy .embla__button.embla__button--prev {
    left: 16px;
  }
}
.cid-vblAmHmNzy .embla__button.embla__button--next {
  right: 24px;
}
@media (max-width: 992px) {
  .cid-vblAmHmNzy .embla__button.embla__button--next {
    right: 16px;
  }
}
.cid-vblAmHmNzy .embla {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}
.cid-vblAmHmNzy .embla__viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0;
}
@media (max-width: 768px) {
  .cid-vblAmHmNzy .embla__viewport {
    padding: 0;
  }
}
.cid-vblAmHmNzy .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vblAmHmNzy .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vblAmHmNzy .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vblAmHmNzy .item-menu-overlay {
  opacity: 0 !important;
}
.cid-vblAmHmNzy .mbr-label {
  color: #232323;
}
.cid-vblAmHmNzy .mbr-section-title {
  color: #ffffff;
}
.cid-vblAmHmNzy .mbr-text {
  color: #ffffff;
}
.cid-vblAmHmNzy .mbr-text,
.cid-vblAmHmNzy .text-wrapper {
  color: #232323;
}
.cid-vblAmHmNzy .mbr-section-title,
.cid-vblAmHmNzy .mbr-section-btn {
  color: #000000;
}
.cid-vblAo1ZTCy {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vblAo1ZTCy .mbr-fallback-image.disabled {
  display: none;
}
.cid-vblAo1ZTCy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vblAo1ZTCy .content-wrapper {
  background: #efefef;
}
@media (max-width: 991px) {
  .cid-vblAo1ZTCy .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vblAo1ZTCy .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vblAo1ZTCy .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vblAo1ZTCy .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vblAo1ZTCy .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-vblAo1ZTCy .image-wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 50px 0 50px 0;
}
.cid-vblAosov5n {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vblAosov5n .mbr-fallback-image.disabled {
  display: none;
}
.cid-vblAosov5n .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vblAosov5n .content-wrapper {
  background: #efefef;
}
@media (max-width: 991px) {
  .cid-vblAosov5n .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-vblAosov5n .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vblAosov5n .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vblAosov5n .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vblAosov5n .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vblAosov5n .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-vblAosov5n .image-wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 50px 0 50px 0;
}
.cid-vblAoX57sR {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vblAoX57sR .mbr-fallback-image.disabled {
  display: none;
}
.cid-vblAoX57sR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vblAoX57sR .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-vblAoX57sR .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-vblAoX57sR .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vblAoX57sR .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vblAoX57sR .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vblAoX57sR .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vblAoX57sR .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-vblAoX57sR .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-vbqeL3ruvn {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #efefef;
}
.cid-vbqeL3ruvn .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbqeL3ruvn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbqeL3ruvn .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  max-width: 100%;
}
@media (max-width: 768px) {
  .cid-vbqeL3ruvn .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-vbqeL3ruvn .embla__slide .slide-content {
  width: 100%;
}
.cid-vbqeL3ruvn .embla__slide .slide-content .item-wrapper .rating-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}
.cid-vbqeL3ruvn .embla__slide .slide-content .item-wrapper .rating-wrapper .rating-wrap {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.cid-vbqeL3ruvn .embla__slide .slide-content .item-wrapper .rating-wrapper .rating-wrap .mbr-star {
  margin-bottom: 0;
}
.cid-vbqeL3ruvn .embla__slide .slide-content .item-wrapper .item-text {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}
.cid-vbqeL3ruvn .embla__slide .slide-content .item-wrapper .person-wrapper .person-wrap {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.cid-vbqeL3ruvn .embla__slide .slide-content .item-wrapper .person-wrapper .person-wrap .item-img img {
  display: inline-flex;
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 100% !important;
  object-fit: cover;
}
.cid-vbqeL3ruvn .embla__slide .slide-content .item-wrapper .person-wrapper .person-wrap .name-wrapper {
  position: relative;
  z-index: 1;
}
.cid-vbqeL3ruvn .embla__slide .slide-content .item-wrapper .person-wrapper .person-wrap .name-wrapper .item-name {
  margin-bottom: 0;
}
.cid-vbqeL3ruvn .embla__slide .slide-content .item-wrapper .person-wrapper .person-wrap .name-wrapper .item-role {
  margin-bottom: 0;
}
.cid-vbqeL3ruvn .embla__button--next,
.cid-vbqeL3ruvn .embla__button--prev {
  display: flex;
}
.cid-vbqeL3ruvn .embla__button {
  bottom: 47%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  background-color: #2b2b2b !important;
  color: #ffffff !important;
  border: none !important;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
@media (max-width: 992px) {
  .cid-vbqeL3ruvn .embla__button {
    bottom: 0;
  }
}
.cid-vbqeL3ruvn .embla__button:hover {
  background-color: #f9652f !important;
  color: #ffffff !important;
}
.cid-vbqeL3ruvn .embla__button:disabled {
  opacity: .5 !important;
  background-color: #2b2b2b !important;
  color: #ffffff !important;
}
.cid-vbqeL3ruvn .embla__button.embla__button--prev {
  left: 0;
}
.cid-vbqeL3ruvn .embla__button.embla__button--next {
  right: 0;
}
.cid-vbqeL3ruvn .embla {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 10%;
}
@media (max-width: 992px) {
  .cid-vbqeL3ruvn .embla {
    padding: 0;
    padding-bottom: 4rem;
  }
}
.cid-vbqeL3ruvn .embla__viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0;
}
@media (max-width: 768px) {
  .cid-vbqeL3ruvn .embla__viewport {
    padding: 0;
  }
}
.cid-vbqeL3ruvn .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vbqeL3ruvn .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vbqeL3ruvn .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vbqeL3ruvn .item-menu-overlay {
  opacity: 0 !important;
}
.cid-vbqeL3ruvn .item-text {
  color: #000000;
}
.cid-vbqeL3ruvn .item-name {
  color: #ffffff;
}
.cid-vbqeL3ruvn .item-role {
  color: #1f1f1f;
}
.cid-vbqeL3ruvn .mbr-star {
  color: #f5b614;
}
.cid-vbqeL3ruvn .item-name,
.cid-vbqeL3ruvn .person-wrapper {
  color: #000000;
}
.cid-vbGpcg3IoX {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-vbGpcg3IoX section {
  position: relative;
}
.cid-vbGpcg3IoX h4 {
  margin: 0;
}
.cid-vbGpcg3IoX img {
  height: 100px;
  padding-rigth: 8px;
}
.cid-vbGpcg3IoX a {
  font-weight: 300;
}
.cid-vbGpcg3IoX .img1 {
  color: #f9652f;
}
.cid-vbGpcg3IoX .img2 {
  color: #f9652f;
}
.cid-vbGpcg3IoX .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #f9652f;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-vbGpcg3IoX .media-wrap {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-vbGpcg3IoX .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-vbGpcg3IoX .item,
.cid-vbGpcg3IoX .link {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-vbGpcg3IoX .item h4,
.cid-vbGpcg3IoX .link h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-vbGpcg3IoX .link {
  border-bottom: 1px solid #4a535e;
}
@media (max-width: 767px) {
  .cid-vbGpcg3IoX .item {
    justify-content: center;
  }
}
.cid-vbGpcg3IoX .item-title {
  color: #ffffff;
  text-align: left;
}
.cid-vbGpcg3IoX .text1 {
  text-align: left;
}
.cid-vbGpcg3IoX .link-title {
  text-align: left;
}
.cid-vbkxzXehvG {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-vbkxzXehvG .mbr-text {
  color: #f6f6ef;
}
.cid-vbmlQKvXS7 .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vbmlQKvXS7 .display-2 {
  font-size: 2rem;
}
@media (max-width: 992px) {
  .cid-vbmlQKvXS7 .icons-menu {
    padding: 1rem 0 !important;
  }
}
.cid-vbmlQKvXS7 .container {
  max-width: 1800px;
  display: flex;
  margin: auto;
}
.cid-vbmlQKvXS7 .navbar {
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  min-height: 77px;
  transition: all 0.3s;
  background: #fe7501;
}
.cid-vbmlQKvXS7 .navbar.opened {
  transition: all 0.3s;
}
.cid-vbmlQKvXS7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vbmlQKvXS7 .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-vbmlQKvXS7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vbmlQKvXS7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vbmlQKvXS7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.6rem);
  }
}
.cid-vbmlQKvXS7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vbmlQKvXS7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vbmlQKvXS7 .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: 55%;
}
.cid-vbmlQKvXS7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vbmlQKvXS7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vbmlQKvXS7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vbmlQKvXS7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vbmlQKvXS7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vbmlQKvXS7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vbmlQKvXS7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vbmlQKvXS7 .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: 55%;
  }
  .cid-vbmlQKvXS7 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-vbmlQKvXS7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vbmlQKvXS7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vbmlQKvXS7 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vbmlQKvXS7 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-vbmlQKvXS7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vbmlQKvXS7 .navbar.navbar-short {
  background: #fe7501 !important;
  min-height: 60px;
}
.cid-vbmlQKvXS7 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-vbmlQKvXS7 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-vbmlQKvXS7 .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: fit-content;
  transition: all 0.3s;
}
.cid-vbmlQKvXS7 .nav-link:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-vbmlQKvXS7 .nav-link:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}
.cid-vbmlQKvXS7 .dropdown-menu {
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}
.cid-vbmlQKvXS7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.2em 1em !important;
}
.cid-vbmlQKvXS7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vbmlQKvXS7 .mbr-iconfont {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vbmlQKvXS7 .navbar-caption {
  padding-right: 4rem;
}
.cid-vbmlQKvXS7 .navbar-nav {
  justify-content: center;
  width: -webkit-fill-available;
}
.cid-vbmlQKvXS7 .dropdown-menu,
.cid-vbmlQKvXS7 .navbar.opened {
  background: #fe7501 !important;
}
.cid-vbmlQKvXS7 .nav-item:focus,
.cid-vbmlQKvXS7 .nav-link:focus {
  outline: none;
}
.cid-vbmlQKvXS7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vbmlQKvXS7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vbmlQKvXS7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-vbmlQKvXS7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vbmlQKvXS7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vbmlQKvXS7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vbmlQKvXS7 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vbmlQKvXS7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vbmlQKvXS7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vbmlQKvXS7 .dropdown-item.active,
.cid-vbmlQKvXS7 .dropdown-item:active {
  background-color: transparent;
}
.cid-vbmlQKvXS7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vbmlQKvXS7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vbmlQKvXS7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vbmlQKvXS7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fe7501;
}
.cid-vbmlQKvXS7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vbmlQKvXS7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vbmlQKvXS7 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-vbmlQKvXS7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vbmlQKvXS7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-vbmlQKvXS7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vbmlQKvXS7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vbmlQKvXS7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vbmlQKvXS7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vbmlQKvXS7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vbmlQKvXS7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vbmlQKvXS7 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vbmlQKvXS7 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vbmlQKvXS7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vbmlQKvXS7 .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-vbmlQKvXS7 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vbmlQKvXS7 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  min-width: 160px;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-vbmlQKvXS7 .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vbmlQKvXS7 .navbar {
    height: 77px;
  }
  .cid-vbmlQKvXS7 .navbar.opened {
    height: auto;
  }
  .cid-vbmlQKvXS7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vbDJxauU9M {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vbDJxauU9M .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbDJxauU9M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbDJxauU9M .content-wrapper {
  background: #efefef;
}
@media (max-width: 991px) {
  .cid-vbDJxauU9M .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vbDJxauU9M .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vbDJxauU9M .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vbDJxauU9M .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vbDJxauU9M .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-vbDJxauU9M .image-wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 30px 0 30px 0;
}
.cid-vbGnGitq7w {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vbGnGitq7w .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbGnGitq7w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbGnGitq7w .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-vbGnGitq7w .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-vbGnGitq7w .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vbGnGitq7w .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vbGnGitq7w .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vbGnGitq7w .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vbGnGitq7w .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-vbGnGitq7w .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-vbGnJP1Ah4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vbGnJP1Ah4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbGnJP1Ah4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbGnJP1Ah4 .content-wrapper {
  background: #efefef;
}
@media (max-width: 991px) {
  .cid-vbGnJP1Ah4 .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vbGnJP1Ah4 .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vbGnJP1Ah4 .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vbGnJP1Ah4 .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vbGnJP1Ah4 .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-vbGnJP1Ah4 .image-wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 50px 0 50px 0;
}
.cid-vbmlQM1YHs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vbmlQM1YHs .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbmlQM1YHs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbmlQM1YHs .content-wrap {
  margin: 0 -20px;
}
.cid-vbmlQM1YHs .content-wrap .card {
  padding: 0 20px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-vbmlQM1YHs .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vbmlQM1YHs .title-wrapper .mbr-label {
  margin-bottom: 12px;
}
.cid-vbmlQM1YHs .title-wrapper .mbr-section-title {
  margin-bottom: 12px;
}
.cid-vbmlQM1YHs .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vbmlQM1YHs .title-wrapper .mbr-section-btn {
  margin-top: 16px;
}
.cid-vbmlQM1YHs .title-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vbmlQM1YHs .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  max-width: 100%;
}
@media (max-width: 768px) {
  .cid-vbmlQM1YHs .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-vbmlQM1YHs .embla__slide .slide-content {
  width: 100%;
}
.cid-vbmlQM1YHs .embla__slide .slide-content .item-wrapper .item-img img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 1440px) {
  .cid-vbmlQM1YHs .embla__slide .slide-content .item-wrapper .item-img img {
    height: 550px;
  }
}
@media (max-width: 1200px) {
  .cid-vbmlQM1YHs .embla__slide .slide-content .item-wrapper .item-img img {
    height: 450px;
  }
}
@media (max-width: 992px) {
  .cid-vbmlQM1YHs .embla__slide .slide-content .item-wrapper .item-img img {
    height: 300px;
  }
}
.cid-vbmlQM1YHs .embla__button--next,
.cid-vbmlQM1YHs .embla__button--prev {
  display: flex;
}
.cid-vbmlQM1YHs .embla__button {
  bottom: 47%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  background-color: #121212 !important;
  color: #ffffff !important;
  border: none !important;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-vbmlQM1YHs .embla__button:hover {
  background-color: #f9652f !important;
  color: #ffffff !important;
}
.cid-vbmlQM1YHs .embla__button:disabled {
  opacity: .5 !important;
  background-color: #121212 !important;
  color: #ffffff !important;
}
.cid-vbmlQM1YHs .embla__button.embla__button--prev {
  left: 24px;
}
@media (max-width: 992px) {
  .cid-vbmlQM1YHs .embla__button.embla__button--prev {
    left: 16px;
  }
}
.cid-vbmlQM1YHs .embla__button.embla__button--next {
  right: 24px;
}
@media (max-width: 992px) {
  .cid-vbmlQM1YHs .embla__button.embla__button--next {
    right: 16px;
  }
}
.cid-vbmlQM1YHs .embla {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}
.cid-vbmlQM1YHs .embla__viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0;
}
@media (max-width: 768px) {
  .cid-vbmlQM1YHs .embla__viewport {
    padding: 0;
  }
}
.cid-vbmlQM1YHs .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vbmlQM1YHs .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vbmlQM1YHs .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vbmlQM1YHs .item-menu-overlay {
  opacity: 0 !important;
}
.cid-vbmlQM1YHs .mbr-label {
  color: #232323;
}
.cid-vbmlQM1YHs .mbr-section-title {
  color: #ffffff;
}
.cid-vbmlQM1YHs .mbr-text {
  color: #ffffff;
}
.cid-vbmlQM1YHs .mbr-text,
.cid-vbmlQM1YHs .text-wrapper {
  color: #232323;
}
.cid-vbmlQM1YHs .mbr-section-title,
.cid-vbmlQM1YHs .mbr-section-btn {
  color: #000000;
}
.cid-vbGpf45PQX {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-vbGpf45PQX section {
  position: relative;
}
.cid-vbGpf45PQX h4 {
  margin: 0;
}
.cid-vbGpf45PQX img {
  height: 100px;
  padding-rigth: 8px;
}
.cid-vbGpf45PQX a {
  font-weight: 300;
}
.cid-vbGpf45PQX .img1 {
  color: #f9652f;
}
.cid-vbGpf45PQX .img2 {
  color: #f9652f;
}
.cid-vbGpf45PQX .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #f9652f;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-vbGpf45PQX .media-wrap {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-vbGpf45PQX .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-vbGpf45PQX .item,
.cid-vbGpf45PQX .link {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-vbGpf45PQX .item h4,
.cid-vbGpf45PQX .link h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-vbGpf45PQX .link {
  border-bottom: 1px solid #4a535e;
}
@media (max-width: 767px) {
  .cid-vbGpf45PQX .item {
    justify-content: center;
  }
}
.cid-vbGpf45PQX .item-title {
  color: #ffffff;
  text-align: left;
}
.cid-vbGpf45PQX .text1 {
  text-align: left;
}
.cid-vbGpf45PQX .link-title {
  text-align: left;
}
.cid-vbmlQP6S5E {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-vbmlQP6S5E .mbr-text {
  color: #f6f6ef;
}
.cid-vbmmAlQ36M .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vbmmAlQ36M .display-2 {
  font-size: 2rem;
}
@media (max-width: 992px) {
  .cid-vbmmAlQ36M .icons-menu {
    padding: 1rem 0 !important;
  }
}
.cid-vbmmAlQ36M .container {
  max-width: 1800px;
  display: flex;
  margin: auto;
}
.cid-vbmmAlQ36M .navbar {
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  min-height: 77px;
  transition: all 0.3s;
  background: #fe7501;
}
.cid-vbmmAlQ36M .navbar.opened {
  transition: all 0.3s;
}
.cid-vbmmAlQ36M .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vbmmAlQ36M .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-vbmmAlQ36M .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vbmmAlQ36M .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vbmmAlQ36M .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.6rem);
  }
}
.cid-vbmmAlQ36M .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vbmmAlQ36M .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vbmmAlQ36M .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: 55%;
}
.cid-vbmmAlQ36M .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vbmmAlQ36M .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vbmmAlQ36M .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vbmmAlQ36M .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vbmmAlQ36M .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vbmmAlQ36M .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vbmmAlQ36M .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vbmmAlQ36M .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: 55%;
  }
  .cid-vbmmAlQ36M .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-vbmmAlQ36M .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vbmmAlQ36M .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vbmmAlQ36M .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vbmmAlQ36M .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-vbmmAlQ36M .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vbmmAlQ36M .navbar.navbar-short {
  background: #fe7501 !important;
  min-height: 60px;
}
.cid-vbmmAlQ36M .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-vbmmAlQ36M .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-vbmmAlQ36M .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: fit-content;
  transition: all 0.3s;
}
.cid-vbmmAlQ36M .nav-link:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-vbmmAlQ36M .nav-link:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}
.cid-vbmmAlQ36M .dropdown-menu {
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}
.cid-vbmmAlQ36M .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.2em 1em !important;
}
.cid-vbmmAlQ36M .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vbmmAlQ36M .mbr-iconfont {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vbmmAlQ36M .navbar-caption {
  padding-right: 4rem;
}
.cid-vbmmAlQ36M .navbar-nav {
  justify-content: center;
  width: -webkit-fill-available;
}
.cid-vbmmAlQ36M .dropdown-menu,
.cid-vbmmAlQ36M .navbar.opened {
  background: #fe7501 !important;
}
.cid-vbmmAlQ36M .nav-item:focus,
.cid-vbmmAlQ36M .nav-link:focus {
  outline: none;
}
.cid-vbmmAlQ36M .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vbmmAlQ36M .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vbmmAlQ36M .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-vbmmAlQ36M .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vbmmAlQ36M .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vbmmAlQ36M .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vbmmAlQ36M .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vbmmAlQ36M .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vbmmAlQ36M .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vbmmAlQ36M .dropdown-item.active,
.cid-vbmmAlQ36M .dropdown-item:active {
  background-color: transparent;
}
.cid-vbmmAlQ36M .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vbmmAlQ36M .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vbmmAlQ36M .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vbmmAlQ36M .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fe7501;
}
.cid-vbmmAlQ36M .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vbmmAlQ36M .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vbmmAlQ36M ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-vbmmAlQ36M .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vbmmAlQ36M button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-vbmmAlQ36M button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vbmmAlQ36M button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vbmmAlQ36M button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vbmmAlQ36M button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vbmmAlQ36M button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vbmmAlQ36M nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vbmmAlQ36M nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vbmmAlQ36M nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vbmmAlQ36M nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vbmmAlQ36M .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-vbmmAlQ36M a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vbmmAlQ36M .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  min-width: 160px;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-vbmmAlQ36M .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vbmmAlQ36M .navbar {
    height: 77px;
  }
  .cid-vbmmAlQ36M .navbar.opened {
    height: auto;
  }
  .cid-vbmmAlQ36M .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vbmmYu71Kf {
  background-color: #ffffff;
}
.cid-vbmmYu71Kf li {
  list-style: none;
  margin-bottom: 1.2rem;
}
.cid-vbmmYu71Kf li:last-child {
  margin-bottom: 0;
}
.cid-vbmmYu71Kf .img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.cid-vbmmYu71Kf .icon-sect .mbr-iconfont {
  margin-right: 26px;
}
.cid-vbmmYu71Kf .icon-sect .mbr-iconfont:last-child {
  margin-right: 0;
}
.cid-vbmmYu71Kf .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbmmYu71Kf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbmmYQoLY4 {
  padding-top: 2rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-vbmmYQoLY4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbmmYQoLY4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbmmYQoLY4 .row {
  justify-content: center;
}
.cid-vbmmYQoLY4 .map-wrapper {
  position: relative;
}
.cid-vbmmYQoLY4 .map-wrapper::before {
  content: '';
  position: absolute;
  top: 2rem;
  width: 110%;
  height: 95%;
  border-radius: 100%;
  background-image: radial-gradient(#da4209, transparent);
  filter: blur(100px);
}
.cid-vbmmYQoLY4 .map-wrapper .google-map {
  position: relative;
  z-index: 1;
  border: 3px solid #da4209;
  background-color: #da4209;
}
.cid-vbmmYQoLY4 .map-wrapper .google-map iframe {
  height: 750px;
  filter: invert(1);
}
@media (max-width: 1200px) {
  .cid-vbmmYQoLY4 .map-wrapper .google-map iframe {
    height: 450px;
  }
}
@media (max-width: 992px) {
  .cid-vbmmYQoLY4 .map-wrapper .google-map iframe {
    height: 350px;
  }
}
.cid-vbGqve3aMc {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-vbGqve3aMc section {
  position: relative;
}
.cid-vbGqve3aMc h4 {
  margin: 0;
}
.cid-vbGqve3aMc img {
  height: 100px;
  padding-rigth: 8px;
}
.cid-vbGqve3aMc a {
  font-weight: 300;
}
.cid-vbGqve3aMc .img1 {
  color: #f9652f;
}
.cid-vbGqve3aMc .img2 {
  color: #f9652f;
}
.cid-vbGqve3aMc .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #f9652f;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-vbGqve3aMc .media-wrap {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-vbGqve3aMc .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-vbGqve3aMc .item,
.cid-vbGqve3aMc .link {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-vbGqve3aMc .item h4,
.cid-vbGqve3aMc .link h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-vbGqve3aMc .link {
  border-bottom: 1px solid #4a535e;
}
@media (max-width: 767px) {
  .cid-vbGqve3aMc .item {
    justify-content: center;
  }
}
.cid-vbGqve3aMc .item-title {
  color: #ffffff;
  text-align: left;
}
.cid-vbGqve3aMc .text1 {
  text-align: left;
}
.cid-vbGqve3aMc .link-title {
  text-align: left;
}
.cid-vbmmAqnErd {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-vbmmAqnErd .mbr-text {
  color: #f6f6ef;
}
.cid-vbmxsTy6Ap .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vbmxsTy6Ap .display-2 {
  font-size: 2rem;
}
@media (max-width: 992px) {
  .cid-vbmxsTy6Ap .icons-menu {
    padding: 1rem 0 !important;
  }
}
.cid-vbmxsTy6Ap .container {
  max-width: 1800px;
  display: flex;
  margin: auto;
}
.cid-vbmxsTy6Ap .navbar {
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  min-height: 77px;
  transition: all 0.3s;
  background: #fe7501;
}
.cid-vbmxsTy6Ap .navbar.opened {
  transition: all 0.3s;
}
.cid-vbmxsTy6Ap .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vbmxsTy6Ap .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-vbmxsTy6Ap .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vbmxsTy6Ap .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vbmxsTy6Ap .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.6rem);
  }
}
.cid-vbmxsTy6Ap .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vbmxsTy6Ap .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vbmxsTy6Ap .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: 55%;
}
.cid-vbmxsTy6Ap .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vbmxsTy6Ap .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vbmxsTy6Ap .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vbmxsTy6Ap .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vbmxsTy6Ap .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vbmxsTy6Ap .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vbmxsTy6Ap .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vbmxsTy6Ap .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: 55%;
  }
  .cid-vbmxsTy6Ap .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-vbmxsTy6Ap .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vbmxsTy6Ap .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vbmxsTy6Ap .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vbmxsTy6Ap .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-vbmxsTy6Ap .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vbmxsTy6Ap .navbar.navbar-short {
  background: #fe7501 !important;
  min-height: 60px;
}
.cid-vbmxsTy6Ap .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-vbmxsTy6Ap .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-vbmxsTy6Ap .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: fit-content;
  transition: all 0.3s;
}
.cid-vbmxsTy6Ap .nav-link:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-vbmxsTy6Ap .nav-link:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}
.cid-vbmxsTy6Ap .dropdown-menu {
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}
.cid-vbmxsTy6Ap .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.2em 1em !important;
}
.cid-vbmxsTy6Ap .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vbmxsTy6Ap .mbr-iconfont {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vbmxsTy6Ap .navbar-caption {
  padding-right: 4rem;
}
.cid-vbmxsTy6Ap .navbar-nav {
  justify-content: center;
  width: -webkit-fill-available;
}
.cid-vbmxsTy6Ap .dropdown-menu,
.cid-vbmxsTy6Ap .navbar.opened {
  background: #fe7501 !important;
}
.cid-vbmxsTy6Ap .nav-item:focus,
.cid-vbmxsTy6Ap .nav-link:focus {
  outline: none;
}
.cid-vbmxsTy6Ap .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vbmxsTy6Ap .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vbmxsTy6Ap .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-vbmxsTy6Ap .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vbmxsTy6Ap .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vbmxsTy6Ap .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vbmxsTy6Ap .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vbmxsTy6Ap .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vbmxsTy6Ap .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vbmxsTy6Ap .dropdown-item.active,
.cid-vbmxsTy6Ap .dropdown-item:active {
  background-color: transparent;
}
.cid-vbmxsTy6Ap .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vbmxsTy6Ap .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vbmxsTy6Ap .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vbmxsTy6Ap .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fe7501;
}
.cid-vbmxsTy6Ap .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vbmxsTy6Ap .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vbmxsTy6Ap ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-vbmxsTy6Ap .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vbmxsTy6Ap button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-vbmxsTy6Ap button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vbmxsTy6Ap button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vbmxsTy6Ap button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vbmxsTy6Ap button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vbmxsTy6Ap button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vbmxsTy6Ap nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vbmxsTy6Ap nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vbmxsTy6Ap nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vbmxsTy6Ap nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vbmxsTy6Ap .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-vbmxsTy6Ap a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vbmxsTy6Ap .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  min-width: 160px;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-vbmxsTy6Ap .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vbmxsTy6Ap .navbar {
    height: 77px;
  }
  .cid-vbmxsTy6Ap .navbar.opened {
    height: auto;
  }
  .cid-vbmxsTy6Ap .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vbmxsVCebP {
  background-image: url("../../../assets/images/marcus-eletrica-frente-loja-1920x1080.jpg");
}
.cid-vbmxsVCebP .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbmxsVCebP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbmxsVCebP .mbr-section-title {
  color: #e29d35;
  text-shadow: 2px 3px 5px rgba(0, 0, 0, 0.6);
}
.cid-vbmxsVCebP .mbr-text {
  color: #FFFFFF;
  margin-top: 20px;
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
}
.cid-vbmxsVCebP .mbr-section-btn {
  margin-top: 30px;
}
.cid-vbmxsVCebP .mbr-text,
.cid-vbmxsVCebP .mbr-section-btn {
  text-align: justify;
}
.cid-vbmxObjole {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #efefef;
}
.cid-vbmxObjole .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbmxObjole .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbmxObjole .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  max-width: 100%;
}
@media (max-width: 768px) {
  .cid-vbmxObjole .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-vbmxObjole .embla__slide .slide-content {
  width: 100%;
}
.cid-vbmxObjole .embla__slide .slide-content .item-wrapper .rating-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}
.cid-vbmxObjole .embla__slide .slide-content .item-wrapper .rating-wrapper .rating-wrap {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.cid-vbmxObjole .embla__slide .slide-content .item-wrapper .rating-wrapper .rating-wrap .mbr-star {
  margin-bottom: 0;
}
.cid-vbmxObjole .embla__slide .slide-content .item-wrapper .item-text {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}
.cid-vbmxObjole .embla__slide .slide-content .item-wrapper .person-wrapper .person-wrap {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.cid-vbmxObjole .embla__slide .slide-content .item-wrapper .person-wrapper .person-wrap .item-img img {
  display: inline-flex;
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 100% !important;
  object-fit: cover;
}
.cid-vbmxObjole .embla__slide .slide-content .item-wrapper .person-wrapper .person-wrap .name-wrapper {
  position: relative;
  z-index: 1;
}
.cid-vbmxObjole .embla__slide .slide-content .item-wrapper .person-wrapper .person-wrap .name-wrapper .item-name {
  margin-bottom: 0;
}
.cid-vbmxObjole .embla__slide .slide-content .item-wrapper .person-wrapper .person-wrap .name-wrapper .item-role {
  margin-bottom: 0;
}
.cid-vbmxObjole .embla__button--next,
.cid-vbmxObjole .embla__button--prev {
  display: flex;
}
.cid-vbmxObjole .embla__button {
  bottom: 47%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  background-color: #2b2b2b !important;
  color: #ffffff !important;
  border: none !important;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
@media (max-width: 992px) {
  .cid-vbmxObjole .embla__button {
    bottom: 0;
  }
}
.cid-vbmxObjole .embla__button:hover {
  background-color: #f9652f !important;
  color: #ffffff !important;
}
.cid-vbmxObjole .embla__button:disabled {
  opacity: .5 !important;
  background-color: #2b2b2b !important;
  color: #ffffff !important;
}
.cid-vbmxObjole .embla__button.embla__button--prev {
  left: 0;
}
.cid-vbmxObjole .embla__button.embla__button--next {
  right: 0;
}
.cid-vbmxObjole .embla {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 10%;
}
@media (max-width: 992px) {
  .cid-vbmxObjole .embla {
    padding: 0;
    padding-bottom: 4rem;
  }
}
.cid-vbmxObjole .embla__viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0;
}
@media (max-width: 768px) {
  .cid-vbmxObjole .embla__viewport {
    padding: 0;
  }
}
.cid-vbmxObjole .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vbmxObjole .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vbmxObjole .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vbmxObjole .item-menu-overlay {
  opacity: 0 !important;
}
.cid-vbmxObjole .item-text {
  color: #000000;
}
.cid-vbmxObjole .item-name {
  color: #ffffff;
}
.cid-vbmxObjole .item-role {
  color: #1f1f1f;
}
.cid-vbmxObjole .mbr-star {
  color: #f5b614;
}
.cid-vbmxObjole .item-name,
.cid-vbmxObjole .person-wrapper {
  color: #000000;
}
.cid-vbGqp2D3xb {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-vbGqp2D3xb section {
  position: relative;
}
.cid-vbGqp2D3xb h4 {
  margin: 0;
}
.cid-vbGqp2D3xb img {
  height: 100px;
  padding-rigth: 8px;
}
.cid-vbGqp2D3xb a {
  font-weight: 300;
}
.cid-vbGqp2D3xb .img1 {
  color: #f9652f;
}
.cid-vbGqp2D3xb .img2 {
  color: #f9652f;
}
.cid-vbGqp2D3xb .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #f9652f;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-vbGqp2D3xb .media-wrap {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-vbGqp2D3xb .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-vbGqp2D3xb .item,
.cid-vbGqp2D3xb .link {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-vbGqp2D3xb .item h4,
.cid-vbGqp2D3xb .link h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-vbGqp2D3xb .link {
  border-bottom: 1px solid #4a535e;
}
@media (max-width: 767px) {
  .cid-vbGqp2D3xb .item {
    justify-content: center;
  }
}
.cid-vbGqp2D3xb .item-title {
  color: #ffffff;
  text-align: left;
}
.cid-vbGqp2D3xb .text1 {
  text-align: left;
}
.cid-vbGqp2D3xb .link-title {
  text-align: left;
}
.cid-vbmxsZPSdp {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-vbmxsZPSdp .mbr-text {
  color: #f6f6ef;
}
.cid-vbmDFn9WyW .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vbmDFn9WyW .display-2 {
  font-size: 2rem;
}
@media (max-width: 992px) {
  .cid-vbmDFn9WyW .icons-menu {
    padding: 1rem 0 !important;
  }
}
.cid-vbmDFn9WyW .container {
  max-width: 1800px;
  display: flex;
  margin: auto;
}
.cid-vbmDFn9WyW .navbar {
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  min-height: 77px;
  transition: all 0.3s;
  background: #fe7501;
}
.cid-vbmDFn9WyW .navbar.opened {
  transition: all 0.3s;
}
.cid-vbmDFn9WyW .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vbmDFn9WyW .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-vbmDFn9WyW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vbmDFn9WyW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vbmDFn9WyW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.6rem);
  }
}
.cid-vbmDFn9WyW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vbmDFn9WyW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vbmDFn9WyW .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: 55%;
}
.cid-vbmDFn9WyW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vbmDFn9WyW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vbmDFn9WyW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vbmDFn9WyW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vbmDFn9WyW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vbmDFn9WyW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vbmDFn9WyW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vbmDFn9WyW .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: 55%;
  }
  .cid-vbmDFn9WyW .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-vbmDFn9WyW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vbmDFn9WyW .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vbmDFn9WyW .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vbmDFn9WyW .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-vbmDFn9WyW .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vbmDFn9WyW .navbar.navbar-short {
  background: #fe7501 !important;
  min-height: 60px;
}
.cid-vbmDFn9WyW .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-vbmDFn9WyW .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-vbmDFn9WyW .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: fit-content;
  transition: all 0.3s;
}
.cid-vbmDFn9WyW .nav-link:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-vbmDFn9WyW .nav-link:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}
.cid-vbmDFn9WyW .dropdown-menu {
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}
.cid-vbmDFn9WyW .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.2em 1em !important;
}
.cid-vbmDFn9WyW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vbmDFn9WyW .mbr-iconfont {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vbmDFn9WyW .navbar-caption {
  padding-right: 4rem;
}
.cid-vbmDFn9WyW .navbar-nav {
  justify-content: center;
  width: -webkit-fill-available;
}
.cid-vbmDFn9WyW .dropdown-menu,
.cid-vbmDFn9WyW .navbar.opened {
  background: #fe7501 !important;
}
.cid-vbmDFn9WyW .nav-item:focus,
.cid-vbmDFn9WyW .nav-link:focus {
  outline: none;
}
.cid-vbmDFn9WyW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vbmDFn9WyW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vbmDFn9WyW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-vbmDFn9WyW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vbmDFn9WyW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vbmDFn9WyW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vbmDFn9WyW .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vbmDFn9WyW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vbmDFn9WyW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vbmDFn9WyW .dropdown-item.active,
.cid-vbmDFn9WyW .dropdown-item:active {
  background-color: transparent;
}
.cid-vbmDFn9WyW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vbmDFn9WyW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vbmDFn9WyW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vbmDFn9WyW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fe7501;
}
.cid-vbmDFn9WyW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vbmDFn9WyW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vbmDFn9WyW ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-vbmDFn9WyW .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vbmDFn9WyW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-vbmDFn9WyW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vbmDFn9WyW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vbmDFn9WyW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vbmDFn9WyW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vbmDFn9WyW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vbmDFn9WyW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vbmDFn9WyW nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vbmDFn9WyW nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vbmDFn9WyW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vbmDFn9WyW .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-vbmDFn9WyW a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vbmDFn9WyW .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  min-width: 160px;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-vbmDFn9WyW .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vbmDFn9WyW .navbar {
    height: 77px;
  }
  .cid-vbmDFn9WyW .navbar.opened {
    height: auto;
  }
  .cid-vbmDFn9WyW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vbmE9ZboB4 {
  padding-top: 150px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-vbmE9ZboB4 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-vbmE9ZboB4 textarea {
  min-height: 150px;
}
.cid-vbmE9ZboB4 input[name='yourSubject'] {
  margin-top: 1.5rem;
}
.cid-vbmE9ZboB4 textarea[name='yourMessage'] {
  margin-top: 0.3rem;
}
.cid-vbmE9ZboB4 .form-control,
.cid-vbmE9ZboB4 .field-input {
  padding: 1rem 0rem;
  background-color: #ffffff;
  border: none !important;
  border-bottom: 2px solid #414141 !important;
  border-color: #414141 !important;
  color: #000000 !important;
  transition: 0.4s;
  font-size: 1.2rem;
  box-shadow: none;
  border-radius: 0px;
  outline: none;
}
.cid-vbmE9ZboB4 .form-control input::-webkit-input-placeholder,
.cid-vbmE9ZboB4 .field-input input::-webkit-input-placeholder,
.cid-vbmE9ZboB4 .form-control textarea::-webkit-input-placeholder,
.cid-vbmE9ZboB4 .field-input textarea::-webkit-input-placeholder {
  color: #000000 !important;
}
.cid-vbmE9ZboB4 .form-control input:-moz-placeholder,
.cid-vbmE9ZboB4 .field-input input:-moz-placeholder,
.cid-vbmE9ZboB4 .form-control textarea:-moz-placeholder,
.cid-vbmE9ZboB4 .field-input textarea:-moz-placeholder {
  color: #000000 !important;
}
.cid-vbmE9ZboB4 .jq-number__spin:hover,
.cid-vbmE9ZboB4 .jq-number__spin:focus {
  background-color: #e29d35;
  border-color: #da4209 !important;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-vbmE9ZboB4 .jq-number__spin {
  background-color: #ffffff;
  border-color: #414141 !important;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-vbmE9ZboB4 .jq-selectbox li,
.cid-vbmE9ZboB4 .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-vbmE9ZboB4 .jq-selectbox li:hover,
.cid-vbmE9ZboB4 .jq-selectbox li.selected {
  background-color: #e29d35;
  color: #000000;
}
.cid-vbmE9ZboB4 .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-vbmE9ZboB4 .jq-number__spin.minus:hover:after,
.cid-vbmE9ZboB4 .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-vbmE9ZboB4 .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-vbmE9ZboB4 .jq-number__spin.minus:after,
.cid-vbmE9ZboB4 .jq-number__spin.plus:after {
  border-top-color: #e29d35;
  border-bottom-color: #e29d35;
}
@media (max-width: 992px) {
  .cid-vbmE9ZboB4 .media-content {
    padding-left: 0rem;
    padding-top: 2rem;
  }
  .cid-vbmE9ZboB4 .social-list {
    margin-bottom: 3rem;
  }
  .cid-vbmE9ZboB4 .email-input {
    margin-top: 2rem;
  }
}
.cid-vbmE9ZboB4 .mbr-section-subtitle {
  color: #000000;
  margin-bottom: 2.4rem;
}
.cid-vbmE9ZboB4 .mbr-text {
  color: #acacac;
  margin-bottom: 3.5rem;
}
.cid-vbmE9ZboB4 .mbr-iconfont-social {
  font-size: 1rem;
  color: #fe7501;
  margin-right: 0.6rem;
}
.cid-vbmE9ZboB4 .mbr-iconfont-social:before {
  padding: 1rem;
  border: 2px solid;
  border-radius: 100px;
  border-color: #767676;
  transition: all 0.3s;
}
.cid-vbmE9ZboB4 .mbr-iconfont-social:hover {
  color: #767676;
}
.cid-vbmE9ZboB4 .social-list {
  display: flex;
}
.cid-vbmE9ZboB4 .social-list a {
  transition: 0.3s;
}
.cid-vbmE9ZboB4 .social-list a:hover {
  transform: translateY(-8px);
}
.cid-vbmE9ZboB4 .row {
  align-items: center;
}
.cid-vbmE9ZboB4 .mbr-section-title {
  margin-bottom: 1.3rem;
}
.cid-vbmE9ZboB4 .btn {
  font-weight: bold;
  padding: 1rem 5.5rem;
}
.cid-vbmE9ZboB4 .form-btn {
  margin-top: 2.5rem;
}
.cid-vbmE9ZboB4 input::-webkit-input-placeholder,
.cid-vbmE9ZboB4 textarea::-webkit-input-placeholder {
  color: #000000 !important;
}
.cid-vbmE9ZboB4 input:-moz-placeholder,
.cid-vbmE9ZboB4 textarea:-moz-placeholder {
  color: #000000 !important;
}
@media (min-width: 992px) {
  .cid-vbmE9ZboB4 .media-content {
    padding-right: 3rem;
  }
  .cid-vbmE9ZboB4 .email-input {
    padding-left: 2.2rem;
  }
}
@media (min-width: 767px) {
  .cid-vbmE9ZboB4 .row {
    padding: 0 1rem;
  }
}
.cid-vbmE9ZboB4 .btn:hover {
  background-color: #767676 !important;
  border-color: #767676 !important;
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-vbmE9ZboB4 .form-btn {
    width: 100%;
  }
  .cid-vbmE9ZboB4 .btn {
    width: 100%;
  }
}
.cid-vbmE9ZboB4 .mbr-text,
.cid-vbmE9ZboB4 .mbr-section-btn {
  color: #232323;
}
.cid-vbGqCFSHA8 {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-vbGqCFSHA8 section {
  position: relative;
}
.cid-vbGqCFSHA8 h4 {
  margin: 0;
}
.cid-vbGqCFSHA8 img {
  height: 100px;
  padding-rigth: 8px;
}
.cid-vbGqCFSHA8 a {
  font-weight: 300;
}
.cid-vbGqCFSHA8 .img1 {
  color: #f9652f;
}
.cid-vbGqCFSHA8 .img2 {
  color: #f9652f;
}
.cid-vbGqCFSHA8 .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #f9652f;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-vbGqCFSHA8 .media-wrap {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-vbGqCFSHA8 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-vbGqCFSHA8 .item,
.cid-vbGqCFSHA8 .link {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-vbGqCFSHA8 .item h4,
.cid-vbGqCFSHA8 .link h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-vbGqCFSHA8 .link {
  border-bottom: 1px solid #4a535e;
}
@media (max-width: 767px) {
  .cid-vbGqCFSHA8 .item {
    justify-content: center;
  }
}
.cid-vbGqCFSHA8 .item-title {
  color: #ffffff;
  text-align: left;
}
.cid-vbGqCFSHA8 .text1 {
  text-align: left;
}
.cid-vbGqCFSHA8 .link-title {
  text-align: left;
}
.cid-vbmDFpKsp3 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-vbmDFpKsp3 .mbr-text {
  color: #f6f6ef;
}
.cid-vbmFVXy6uq .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vbmFVXy6uq .display-2 {
  font-size: 2rem;
}
@media (max-width: 992px) {
  .cid-vbmFVXy6uq .icons-menu {
    padding: 1rem 0 !important;
  }
}
.cid-vbmFVXy6uq .container {
  max-width: 1800px;
  display: flex;
  margin: auto;
}
.cid-vbmFVXy6uq .navbar {
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  min-height: 77px;
  transition: all 0.3s;
  background: #fe7501;
}
.cid-vbmFVXy6uq .navbar.opened {
  transition: all 0.3s;
}
.cid-vbmFVXy6uq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vbmFVXy6uq .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-vbmFVXy6uq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vbmFVXy6uq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vbmFVXy6uq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.6rem);
  }
}
.cid-vbmFVXy6uq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vbmFVXy6uq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vbmFVXy6uq .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: 55%;
}
.cid-vbmFVXy6uq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vbmFVXy6uq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vbmFVXy6uq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vbmFVXy6uq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vbmFVXy6uq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vbmFVXy6uq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vbmFVXy6uq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vbmFVXy6uq .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: 55%;
  }
  .cid-vbmFVXy6uq .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-vbmFVXy6uq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vbmFVXy6uq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vbmFVXy6uq .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vbmFVXy6uq .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-vbmFVXy6uq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vbmFVXy6uq .navbar.navbar-short {
  background: #fe7501 !important;
  min-height: 60px;
}
.cid-vbmFVXy6uq .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-vbmFVXy6uq .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-vbmFVXy6uq .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: fit-content;
  transition: all 0.3s;
}
.cid-vbmFVXy6uq .nav-link:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-vbmFVXy6uq .nav-link:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}
.cid-vbmFVXy6uq .dropdown-menu {
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}
.cid-vbmFVXy6uq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.2em 1em !important;
}
.cid-vbmFVXy6uq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vbmFVXy6uq .mbr-iconfont {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vbmFVXy6uq .navbar-caption {
  padding-right: 4rem;
}
.cid-vbmFVXy6uq .navbar-nav {
  justify-content: center;
  width: -webkit-fill-available;
}
.cid-vbmFVXy6uq .dropdown-menu,
.cid-vbmFVXy6uq .navbar.opened {
  background: #fe7501 !important;
}
.cid-vbmFVXy6uq .nav-item:focus,
.cid-vbmFVXy6uq .nav-link:focus {
  outline: none;
}
.cid-vbmFVXy6uq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vbmFVXy6uq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vbmFVXy6uq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-vbmFVXy6uq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vbmFVXy6uq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vbmFVXy6uq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vbmFVXy6uq .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vbmFVXy6uq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vbmFVXy6uq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vbmFVXy6uq .dropdown-item.active,
.cid-vbmFVXy6uq .dropdown-item:active {
  background-color: transparent;
}
.cid-vbmFVXy6uq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vbmFVXy6uq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vbmFVXy6uq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vbmFVXy6uq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fe7501;
}
.cid-vbmFVXy6uq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vbmFVXy6uq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vbmFVXy6uq ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-vbmFVXy6uq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vbmFVXy6uq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-vbmFVXy6uq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vbmFVXy6uq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vbmFVXy6uq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vbmFVXy6uq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vbmFVXy6uq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vbmFVXy6uq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vbmFVXy6uq nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vbmFVXy6uq nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vbmFVXy6uq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vbmFVXy6uq .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-vbmFVXy6uq a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vbmFVXy6uq .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  min-width: 160px;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-vbmFVXy6uq .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vbmFVXy6uq .navbar {
    height: 77px;
  }
  .cid-vbmFVXy6uq .navbar.opened {
    height: auto;
  }
  .cid-vbmFVXy6uq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vbmFVYQtx7 {
  background-image: url("../../../assets/images/marcus-eletrica-1920x1080.jpg");
}
.cid-vbmFVYQtx7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbmFVYQtx7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbmFVYQtx7 .mbr-section-title {
  color: #e29d35;
  text-shadow: 2px 3px 5px rgba(0, 0, 0, 0.6);
}
.cid-vbmFVYQtx7 .mbr-text {
  color: #FFFFFF;
  margin-top: 20px;
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
}
.cid-vbmFVYQtx7 .mbr-section-btn {
  margin-top: 30px;
}
.cid-vbmFVYQtx7 .mbr-text,
.cid-vbmFVYQtx7 .mbr-section-btn {
  text-align: center;
}
.cid-vbrN4eGcYd {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: #ffffff;
}
.cid-vbrN4eGcYd .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbrN4eGcYd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-vbrN4eGcYd .container {
    padding: 0 26px;
  }
}
.cid-vbrN4eGcYd .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 768px) {
  .cid-vbrN4eGcYd .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-vbrN4eGcYd .embla__slide a {
  display: block;
  width: 100%;
}
.cid-vbrN4eGcYd .embla__slide a .card-wrap .item-wrapper .image-wrap img {
  height: 156px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vbrN4eGcYd .embla__slide a .card-wrap .item-wrapper .image-wrap img {
    height: 156px;
  }
}
.cid-vbrN4eGcYd .embla__button--next,
.cid-vbrN4eGcYd .embla__button--prev {
  display: flex;
}
.cid-vbrN4eGcYd .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 50px;
  background-color: transparent;
  color: #ffffff;
  border: none;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-vbrN4eGcYd .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-vbrN4eGcYd .embla__button:hover {
  background: transparent;
  color: #ffffff;
}
.cid-vbrN4eGcYd .embla__button.embla__button--prev {
  left: 0;
  margin-left: 60px;
}
@media (max-width: 992px) {
  .cid-vbrN4eGcYd .embla__button.embla__button--prev {
    margin-left: 26px;
  }
}
.cid-vbrN4eGcYd .embla__button.embla__button--next {
  right: 0;
  margin-right: 60px;
}
@media (max-width: 992px) {
  .cid-vbrN4eGcYd .embla__button.embla__button--next {
    margin-right: 26px;
  }
}
.cid-vbrN4eGcYd .embla {
  position: relative;
  width: 100%;
}
.cid-vbrN4eGcYd .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-vbrN4eGcYd .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vbrN4eGcYd .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vbrN4eGcYd .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vbGfslCzCO {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vbmFW12zBg {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vbmFW12zBg .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbmFW12zBg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbmFW12zBg .content-wrapper {
  background: #efefef;
}
@media (max-width: 991px) {
  .cid-vbmFW12zBg .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vbmFW12zBg .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vbmFW12zBg .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vbmFW12zBg .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vbmFW12zBg .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-vbmFW12zBg .image-wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 50px 0 50px 0;
}
.cid-vbmHqlMTce {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vbmHqlMTce .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbmHqlMTce .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbmHqlMTce .content-wrapper {
  background: #efefef;
}
@media (max-width: 991px) {
  .cid-vbmHqlMTce .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vbmHqlMTce .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vbmHqlMTce .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vbmHqlMTce .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vbmHqlMTce .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-vbmHqlMTce .image-wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 50px 0 50px 0;
}
.cid-vbmHXE4efk {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vbmHXE4efk .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbmHXE4efk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbmHXE4efk .content-wrapper {
  background: #efefef;
}
@media (max-width: 991px) {
  .cid-vbmHXE4efk .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vbmHXE4efk .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vbmHXE4efk .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vbmHXE4efk .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vbmHXE4efk .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-vbmHXE4efk .image-wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 50px 0 50px 0;
}
.cid-vbmIxDKj8J {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vbmIxDKj8J .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbmIxDKj8J .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbmIxDKj8J .content-wrapper {
  background: #efefef;
}
@media (max-width: 991px) {
  .cid-vbmIxDKj8J .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vbmIxDKj8J .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vbmIxDKj8J .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vbmIxDKj8J .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vbmIxDKj8J .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-vbmIxDKj8J .image-wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 50px 0 50px 0;
}
.cid-vbmILi6Wf2 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vbmILi6Wf2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbmILi6Wf2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbmILi6Wf2 .content-wrapper {
  background: #efefef;
}
@media (max-width: 991px) {
  .cid-vbmILi6Wf2 .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vbmILi6Wf2 .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vbmILi6Wf2 .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vbmILi6Wf2 .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vbmILi6Wf2 .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-vbmILi6Wf2 .image-wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 50px 0 50px 0;
}
.cid-vbmIViqvLB {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vbmIViqvLB .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbmIViqvLB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbmIViqvLB .content-wrapper {
  background: #efefef;
}
@media (max-width: 991px) {
  .cid-vbmIViqvLB .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vbmIViqvLB .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vbmIViqvLB .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vbmIViqvLB .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vbmIViqvLB .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-vbmIViqvLB .image-wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 50px 0 50px 0;
}
.cid-vbPIHQhP3K {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vbPIHQhP3K .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbPIHQhP3K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbPIHQhP3K .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-vbPIHQhP3K .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-vbPIHQhP3K .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vbPIHQhP3K .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vbPIHQhP3K .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vbPIHQhP3K .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vbPIHQhP3K .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-vbPIHQhP3K .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-vbrNiJ7Fsp {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #efefef;
}
.cid-vbrNiJ7Fsp .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbrNiJ7Fsp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbrNiJ7Fsp .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  max-width: 100%;
}
@media (max-width: 768px) {
  .cid-vbrNiJ7Fsp .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-vbrNiJ7Fsp .embla__slide .slide-content {
  width: 100%;
}
.cid-vbrNiJ7Fsp .embla__slide .slide-content .item-wrapper .rating-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}
.cid-vbrNiJ7Fsp .embla__slide .slide-content .item-wrapper .rating-wrapper .rating-wrap {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.cid-vbrNiJ7Fsp .embla__slide .slide-content .item-wrapper .rating-wrapper .rating-wrap .mbr-star {
  margin-bottom: 0;
}
.cid-vbrNiJ7Fsp .embla__slide .slide-content .item-wrapper .item-text {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}
.cid-vbrNiJ7Fsp .embla__slide .slide-content .item-wrapper .person-wrapper .person-wrap {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.cid-vbrNiJ7Fsp .embla__slide .slide-content .item-wrapper .person-wrapper .person-wrap .item-img img {
  display: inline-flex;
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 100% !important;
  object-fit: cover;
}
.cid-vbrNiJ7Fsp .embla__slide .slide-content .item-wrapper .person-wrapper .person-wrap .name-wrapper {
  position: relative;
  z-index: 1;
}
.cid-vbrNiJ7Fsp .embla__slide .slide-content .item-wrapper .person-wrapper .person-wrap .name-wrapper .item-name {
  margin-bottom: 0;
}
.cid-vbrNiJ7Fsp .embla__slide .slide-content .item-wrapper .person-wrapper .person-wrap .name-wrapper .item-role {
  margin-bottom: 0;
}
.cid-vbrNiJ7Fsp .embla__button--next,
.cid-vbrNiJ7Fsp .embla__button--prev {
  display: flex;
}
.cid-vbrNiJ7Fsp .embla__button {
  bottom: 47%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  background-color: #2b2b2b !important;
  color: #ffffff !important;
  border: none !important;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
@media (max-width: 992px) {
  .cid-vbrNiJ7Fsp .embla__button {
    bottom: 0;
  }
}
.cid-vbrNiJ7Fsp .embla__button:hover {
  background-color: #f9652f !important;
  color: #ffffff !important;
}
.cid-vbrNiJ7Fsp .embla__button:disabled {
  opacity: .5 !important;
  background-color: #2b2b2b !important;
  color: #ffffff !important;
}
.cid-vbrNiJ7Fsp .embla__button.embla__button--prev {
  left: 0;
}
.cid-vbrNiJ7Fsp .embla__button.embla__button--next {
  right: 0;
}
.cid-vbrNiJ7Fsp .embla {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 10%;
}
@media (max-width: 992px) {
  .cid-vbrNiJ7Fsp .embla {
    padding: 0;
    padding-bottom: 4rem;
  }
}
.cid-vbrNiJ7Fsp .embla__viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0;
}
@media (max-width: 768px) {
  .cid-vbrNiJ7Fsp .embla__viewport {
    padding: 0;
  }
}
.cid-vbrNiJ7Fsp .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vbrNiJ7Fsp .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vbrNiJ7Fsp .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vbrNiJ7Fsp .item-menu-overlay {
  opacity: 0 !important;
}
.cid-vbrNiJ7Fsp .item-text {
  color: #000000;
}
.cid-vbrNiJ7Fsp .item-name {
  color: #ffffff;
}
.cid-vbrNiJ7Fsp .item-role {
  color: #1f1f1f;
}
.cid-vbrNiJ7Fsp .mbr-star {
  color: #f5b614;
}
.cid-vbrNiJ7Fsp .item-name,
.cid-vbrNiJ7Fsp .person-wrapper {
  color: #000000;
}
.cid-vbvVqQqfje {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vbvVqQqfje .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbvVqQqfje .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbvVqQqfje .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1599px) {
  .cid-vbvVqQqfje .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cid-vbvVqQqfje .mbr-section-head {
  width: 100%;
  margin-bottom: 20px;
}
.cid-vbvVqQqfje .mbr-section-title {
  color: #f9652f;
}
@media (max-width: 767px) {
  .cid-vbvVqQqfje .mbr-section-title {
    text-align: center;
  }
}
.cid-vbvVqQqfje .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-vbvVqQqfje .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-vbvVqQqfje .item {
  margin: 40px auto 0;
  width: 90% !important;
}
.cid-vbvVqQqfje .item-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  width: 100%;
  padding: 30px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #d7d7d7, #fafafa);
}
@media (max-width: 991px) {
  .cid-vbvVqQqfje .item-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-vbvVqQqfje .item-wrapper {
    padding: 20px;
  }
}
.cid-vbvVqQqfje .item-left {
  display: flex;
  align-items: center;
  flex-basis: 80%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbvVqQqfje .item-left {
    flex-basis: 70%;
  }
}
@media (max-width: 991px) {
  .cid-vbvVqQqfje .item-left {
    flex-basis: 100%;
    flex-wrap: wrap;
  }
}
.cid-vbvVqQqfje .item-right {
  flex-basis: 20%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbvVqQqfje .item-right {
    flex-basis: 30%;
  }
}
@media (max-width: 991px) {
  .cid-vbvVqQqfje .item-right {
    flex-basis: 100%;
  }
}
.cid-vbvVqQqfje .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-vbvVqQqfje .item-img {
    max-width: 250px;
  }
}
.cid-vbvVqQqfje .item-img img {
  width: 100%;
  aspect-ratio: 1.49700599;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-vbvVqQqfje .item-img:hover img {
  transform: scale(1.05);
}
.cid-vbvVqQqfje .card-box {
  padding-left: 30px;
}
@media (max-width: 1199px) {
  .cid-vbvVqQqfje .card-box {
    padding-left: 20px;
    flex-basis: 50%;
  }
}
@media (max-width: 991px) {
  .cid-vbvVqQqfje .card-box {
    padding-left: 0;
    padding-top: 25px;
    flex-basis: 100%;
  }
}
.cid-vbvVqQqfje .label-container {
  padding: 3px 8px;
  border-radius: 20px;
  width: fit-content;
  background-color: #434a51;
  margin-bottom: 10px;
}
.cid-vbvVqQqfje .label-text {
  color: #C4CFDE;
  margin-bottom: 0;
}
.cid-vbvVqQqfje .card-title {
  color: #C4CFDE;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-vbvVqQqfje .card-title {
    margin-bottom: 10px;
  }
}
.cid-vbvVqQqfje .card-subtitle {
  color: #C4CFDE;
  margin-bottom: 7px;
}
.cid-vbvVqQqfje .card-text {
  color: #000000;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-vbvVqQqfje .mbr-section-btn {
    margin-top: 10px;
    text-align: left !important;
  }
}
.cid-vbvXmNndWd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vbvXmNndWd .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbvXmNndWd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbvXmNndWd .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1599px) {
  .cid-vbvXmNndWd .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cid-vbvXmNndWd .mbr-section-head {
  width: 100%;
  margin-bottom: 20px;
}
.cid-vbvXmNndWd .mbr-section-title {
  color: #f9652f;
}
@media (max-width: 767px) {
  .cid-vbvXmNndWd .mbr-section-title {
    text-align: center;
  }
}
.cid-vbvXmNndWd .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-vbvXmNndWd .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-vbvXmNndWd .item {
  margin: 40px auto 0;
  width: 90% !important;
}
.cid-vbvXmNndWd .item-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  width: 100%;
  padding: 30px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #d7d7d7, #fafafa);
}
@media (max-width: 991px) {
  .cid-vbvXmNndWd .item-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-vbvXmNndWd .item-wrapper {
    padding: 20px;
  }
}
.cid-vbvXmNndWd .item-left {
  display: flex;
  align-items: center;
  flex-basis: 80%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbvXmNndWd .item-left {
    flex-basis: 70%;
  }
}
@media (max-width: 991px) {
  .cid-vbvXmNndWd .item-left {
    flex-basis: 100%;
    flex-wrap: wrap;
  }
}
.cid-vbvXmNndWd .item-right {
  flex-basis: 20%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbvXmNndWd .item-right {
    flex-basis: 30%;
  }
}
@media (max-width: 991px) {
  .cid-vbvXmNndWd .item-right {
    flex-basis: 100%;
  }
}
.cid-vbvXmNndWd .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-vbvXmNndWd .item-img {
    max-width: 250px;
  }
}
.cid-vbvXmNndWd .item-img img {
  width: 100%;
  aspect-ratio: 1.49700599;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-vbvXmNndWd .item-img:hover img {
  transform: scale(1.05);
}
.cid-vbvXmNndWd .card-box {
  padding-left: 30px;
}
@media (max-width: 1199px) {
  .cid-vbvXmNndWd .card-box {
    padding-left: 20px;
    flex-basis: 50%;
  }
}
@media (max-width: 991px) {
  .cid-vbvXmNndWd .card-box {
    padding-left: 0;
    padding-top: 25px;
    flex-basis: 100%;
  }
}
.cid-vbvXmNndWd .label-container {
  padding: 3px 8px;
  border-radius: 20px;
  width: fit-content;
  background-color: #434a51;
  margin-bottom: 10px;
}
.cid-vbvXmNndWd .label-text {
  color: #C4CFDE;
  margin-bottom: 0;
}
.cid-vbvXmNndWd .card-title {
  color: #C4CFDE;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-vbvXmNndWd .card-title {
    margin-bottom: 10px;
  }
}
.cid-vbvXmNndWd .card-subtitle {
  color: #C4CFDE;
  margin-bottom: 7px;
}
.cid-vbvXmNndWd .card-text {
  color: #000000;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-vbvXmNndWd .mbr-section-btn {
    margin-top: 10px;
    text-align: left !important;
  }
}
.cid-vbvXnu7nNF {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vbvXnu7nNF .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbvXnu7nNF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbvXnu7nNF .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1599px) {
  .cid-vbvXnu7nNF .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cid-vbvXnu7nNF .mbr-section-head {
  width: 100%;
  margin-bottom: 20px;
}
.cid-vbvXnu7nNF .mbr-section-title {
  color: #f9652f;
}
@media (max-width: 767px) {
  .cid-vbvXnu7nNF .mbr-section-title {
    text-align: center;
  }
}
.cid-vbvXnu7nNF .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-vbvXnu7nNF .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-vbvXnu7nNF .item {
  margin: 40px auto 0;
  width: 90% !important;
}
.cid-vbvXnu7nNF .item-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  width: 100%;
  padding: 30px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #d7d7d7, #ffffff);
}
@media (max-width: 991px) {
  .cid-vbvXnu7nNF .item-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-vbvXnu7nNF .item-wrapper {
    padding: 20px;
  }
}
.cid-vbvXnu7nNF .item-left {
  display: flex;
  align-items: center;
  flex-basis: 80%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbvXnu7nNF .item-left {
    flex-basis: 70%;
  }
}
@media (max-width: 991px) {
  .cid-vbvXnu7nNF .item-left {
    flex-basis: 100%;
    flex-wrap: wrap;
  }
}
.cid-vbvXnu7nNF .item-right {
  flex-basis: 20%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbvXnu7nNF .item-right {
    flex-basis: 30%;
  }
}
@media (max-width: 991px) {
  .cid-vbvXnu7nNF .item-right {
    flex-basis: 100%;
  }
}
.cid-vbvXnu7nNF .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-vbvXnu7nNF .item-img {
    max-width: 250px;
  }
}
.cid-vbvXnu7nNF .item-img img {
  width: 100%;
  aspect-ratio: 1.49700599;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-vbvXnu7nNF .item-img:hover img {
  transform: scale(1.05);
}
.cid-vbvXnu7nNF .card-box {
  padding-left: 30px;
}
@media (max-width: 1199px) {
  .cid-vbvXnu7nNF .card-box {
    padding-left: 20px;
    flex-basis: 50%;
  }
}
@media (max-width: 991px) {
  .cid-vbvXnu7nNF .card-box {
    padding-left: 0;
    padding-top: 25px;
    flex-basis: 100%;
  }
}
.cid-vbvXnu7nNF .label-container {
  padding: 3px 8px;
  border-radius: 20px;
  width: fit-content;
  background-color: #434a51;
  margin-bottom: 10px;
}
.cid-vbvXnu7nNF .label-text {
  color: #C4CFDE;
  margin-bottom: 0;
}
.cid-vbvXnu7nNF .card-title {
  color: #C4CFDE;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-vbvXnu7nNF .card-title {
    margin-bottom: 10px;
  }
}
.cid-vbvXnu7nNF .card-subtitle {
  color: #C4CFDE;
  margin-bottom: 7px;
}
.cid-vbvXnu7nNF .card-text {
  color: #000000;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-vbvXnu7nNF .mbr-section-btn {
    margin-top: 10px;
    text-align: left !important;
  }
}
.cid-vbvXnS1yEk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vbvXnS1yEk .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbvXnS1yEk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbvXnS1yEk .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1599px) {
  .cid-vbvXnS1yEk .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cid-vbvXnS1yEk .mbr-section-head {
  width: 100%;
  margin-bottom: 20px;
}
.cid-vbvXnS1yEk .mbr-section-title {
  color: #f9652f;
}
@media (max-width: 767px) {
  .cid-vbvXnS1yEk .mbr-section-title {
    text-align: center;
  }
}
.cid-vbvXnS1yEk .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-vbvXnS1yEk .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-vbvXnS1yEk .item {
  margin: 40px auto 0;
  width: 90% !important;
}
.cid-vbvXnS1yEk .item-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  width: 100%;
  padding: 30px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #d7d7d7, #fafafa);
}
@media (max-width: 991px) {
  .cid-vbvXnS1yEk .item-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-vbvXnS1yEk .item-wrapper {
    padding: 20px;
  }
}
.cid-vbvXnS1yEk .item-left {
  display: flex;
  align-items: center;
  flex-basis: 80%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbvXnS1yEk .item-left {
    flex-basis: 70%;
  }
}
@media (max-width: 991px) {
  .cid-vbvXnS1yEk .item-left {
    flex-basis: 100%;
    flex-wrap: wrap;
  }
}
.cid-vbvXnS1yEk .item-right {
  flex-basis: 20%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbvXnS1yEk .item-right {
    flex-basis: 30%;
  }
}
@media (max-width: 991px) {
  .cid-vbvXnS1yEk .item-right {
    flex-basis: 100%;
  }
}
.cid-vbvXnS1yEk .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-vbvXnS1yEk .item-img {
    max-width: 250px;
  }
}
.cid-vbvXnS1yEk .item-img img {
  width: 100%;
  aspect-ratio: 1.49700599;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-vbvXnS1yEk .item-img:hover img {
  transform: scale(1.05);
}
.cid-vbvXnS1yEk .card-box {
  padding-left: 30px;
}
@media (max-width: 1199px) {
  .cid-vbvXnS1yEk .card-box {
    padding-left: 20px;
    flex-basis: 50%;
  }
}
@media (max-width: 991px) {
  .cid-vbvXnS1yEk .card-box {
    padding-left: 0;
    padding-top: 25px;
    flex-basis: 100%;
  }
}
.cid-vbvXnS1yEk .label-container {
  padding: 3px 8px;
  border-radius: 20px;
  width: fit-content;
  background-color: #434a51;
  margin-bottom: 10px;
}
.cid-vbvXnS1yEk .label-text {
  color: #C4CFDE;
  margin-bottom: 0;
}
.cid-vbvXnS1yEk .card-title {
  color: #C4CFDE;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-vbvXnS1yEk .card-title {
    margin-bottom: 10px;
  }
}
.cid-vbvXnS1yEk .card-subtitle {
  color: #C4CFDE;
  margin-bottom: 7px;
}
.cid-vbvXnS1yEk .card-text {
  color: #000000;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-vbvXnS1yEk .mbr-section-btn {
    margin-top: 10px;
    text-align: left !important;
  }
}
.cid-vbvXKHs7ZM {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vbvXKHs7ZM .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbvXKHs7ZM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbvXKHs7ZM .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1599px) {
  .cid-vbvXKHs7ZM .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cid-vbvXKHs7ZM .mbr-section-head {
  width: 100%;
  margin-bottom: 20px;
}
.cid-vbvXKHs7ZM .mbr-section-title {
  color: #f9652f;
}
@media (max-width: 767px) {
  .cid-vbvXKHs7ZM .mbr-section-title {
    text-align: center;
  }
}
.cid-vbvXKHs7ZM .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-vbvXKHs7ZM .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-vbvXKHs7ZM .item {
  margin: 40px auto 0;
  width: 90% !important;
}
.cid-vbvXKHs7ZM .item-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  width: 100%;
  padding: 30px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #d7d7d7, #fafafa);
}
@media (max-width: 991px) {
  .cid-vbvXKHs7ZM .item-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-vbvXKHs7ZM .item-wrapper {
    padding: 20px;
  }
}
.cid-vbvXKHs7ZM .item-left {
  display: flex;
  align-items: center;
  flex-basis: 80%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbvXKHs7ZM .item-left {
    flex-basis: 70%;
  }
}
@media (max-width: 991px) {
  .cid-vbvXKHs7ZM .item-left {
    flex-basis: 100%;
    flex-wrap: wrap;
  }
}
.cid-vbvXKHs7ZM .item-right {
  flex-basis: 20%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbvXKHs7ZM .item-right {
    flex-basis: 30%;
  }
}
@media (max-width: 991px) {
  .cid-vbvXKHs7ZM .item-right {
    flex-basis: 100%;
  }
}
.cid-vbvXKHs7ZM .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-vbvXKHs7ZM .item-img {
    max-width: 250px;
  }
}
.cid-vbvXKHs7ZM .item-img img {
  width: 100%;
  aspect-ratio: 1.49700599;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-vbvXKHs7ZM .item-img:hover img {
  transform: scale(1.05);
}
.cid-vbvXKHs7ZM .card-box {
  padding-left: 30px;
}
@media (max-width: 1199px) {
  .cid-vbvXKHs7ZM .card-box {
    padding-left: 20px;
    flex-basis: 50%;
  }
}
@media (max-width: 991px) {
  .cid-vbvXKHs7ZM .card-box {
    padding-left: 0;
    padding-top: 25px;
    flex-basis: 100%;
  }
}
.cid-vbvXKHs7ZM .label-container {
  padding: 3px 8px;
  border-radius: 20px;
  width: fit-content;
  background-color: #434a51;
  margin-bottom: 10px;
}
.cid-vbvXKHs7ZM .label-text {
  color: #C4CFDE;
  margin-bottom: 0;
}
.cid-vbvXKHs7ZM .card-title {
  color: #C4CFDE;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-vbvXKHs7ZM .card-title {
    margin-bottom: 10px;
  }
}
.cid-vbvXKHs7ZM .card-subtitle {
  color: #C4CFDE;
  margin-bottom: 7px;
}
.cid-vbvXKHs7ZM .card-text {
  color: #000000;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-vbvXKHs7ZM .mbr-section-btn {
    margin-top: 10px;
    text-align: left !important;
  }
}
.cid-vbvXL8mZua {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vbvXL8mZua .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbvXL8mZua .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbvXL8mZua .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1599px) {
  .cid-vbvXL8mZua .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cid-vbvXL8mZua .mbr-section-head {
  width: 100%;
  margin-bottom: 20px;
}
.cid-vbvXL8mZua .mbr-section-title {
  color: #f9652f;
}
@media (max-width: 767px) {
  .cid-vbvXL8mZua .mbr-section-title {
    text-align: center;
  }
}
.cid-vbvXL8mZua .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-vbvXL8mZua .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-vbvXL8mZua .item {
  margin: 40px auto 0;
  width: 90% !important;
}
.cid-vbvXL8mZua .item-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  width: 100%;
  padding: 30px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #d7d7d7, #fafafa);
}
@media (max-width: 991px) {
  .cid-vbvXL8mZua .item-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-vbvXL8mZua .item-wrapper {
    padding: 20px;
  }
}
.cid-vbvXL8mZua .item-left {
  display: flex;
  align-items: center;
  flex-basis: 80%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbvXL8mZua .item-left {
    flex-basis: 70%;
  }
}
@media (max-width: 991px) {
  .cid-vbvXL8mZua .item-left {
    flex-basis: 100%;
    flex-wrap: wrap;
  }
}
.cid-vbvXL8mZua .item-right {
  flex-basis: 20%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbvXL8mZua .item-right {
    flex-basis: 30%;
  }
}
@media (max-width: 991px) {
  .cid-vbvXL8mZua .item-right {
    flex-basis: 100%;
  }
}
.cid-vbvXL8mZua .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-vbvXL8mZua .item-img {
    max-width: 250px;
  }
}
.cid-vbvXL8mZua .item-img img {
  width: 100%;
  aspect-ratio: 1.49700599;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-vbvXL8mZua .item-img:hover img {
  transform: scale(1.05);
}
.cid-vbvXL8mZua .card-box {
  padding-left: 30px;
}
@media (max-width: 1199px) {
  .cid-vbvXL8mZua .card-box {
    padding-left: 20px;
    flex-basis: 50%;
  }
}
@media (max-width: 991px) {
  .cid-vbvXL8mZua .card-box {
    padding-left: 0;
    padding-top: 25px;
    flex-basis: 100%;
  }
}
.cid-vbvXL8mZua .label-container {
  padding: 3px 8px;
  border-radius: 20px;
  width: fit-content;
  background-color: #434a51;
  margin-bottom: 10px;
}
.cid-vbvXL8mZua .label-text {
  color: #C4CFDE;
  margin-bottom: 0;
}
.cid-vbvXL8mZua .card-title {
  color: #C4CFDE;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-vbvXL8mZua .card-title {
    margin-bottom: 10px;
  }
}
.cid-vbvXL8mZua .card-subtitle {
  color: #C4CFDE;
  margin-bottom: 7px;
}
.cid-vbvXL8mZua .card-text {
  color: #000000;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-vbvXL8mZua .mbr-section-btn {
    margin-top: 10px;
    text-align: left !important;
  }
}
.cid-vbGpiMBDO8 {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-vbGpiMBDO8 section {
  position: relative;
}
.cid-vbGpiMBDO8 h4 {
  margin: 0;
}
.cid-vbGpiMBDO8 img {
  height: 100px;
  padding-rigth: 8px;
}
.cid-vbGpiMBDO8 a {
  font-weight: 300;
}
.cid-vbGpiMBDO8 .img1 {
  color: #f9652f;
}
.cid-vbGpiMBDO8 .img2 {
  color: #f9652f;
}
.cid-vbGpiMBDO8 .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #f9652f;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-vbGpiMBDO8 .media-wrap {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-vbGpiMBDO8 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-vbGpiMBDO8 .item,
.cid-vbGpiMBDO8 .link {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-vbGpiMBDO8 .item h4,
.cid-vbGpiMBDO8 .link h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-vbGpiMBDO8 .link {
  border-bottom: 1px solid #4a535e;
}
@media (max-width: 767px) {
  .cid-vbGpiMBDO8 .item {
    justify-content: center;
  }
}
.cid-vbGpiMBDO8 .item-title {
  color: #ffffff;
  text-align: left;
}
.cid-vbGpiMBDO8 .text1 {
  text-align: left;
}
.cid-vbGpiMBDO8 .link-title {
  text-align: left;
}
.cid-vbmFW4j1o8 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-vbmFW4j1o8 .mbr-text {
  color: #f6f6ef;
}
.cid-vbmKUceGge .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vbmKUceGge .display-2 {
  font-size: 2rem;
}
@media (max-width: 992px) {
  .cid-vbmKUceGge .icons-menu {
    padding: 1rem 0 !important;
  }
}
.cid-vbmKUceGge .container {
  max-width: 1800px;
  display: flex;
  margin: auto;
}
.cid-vbmKUceGge .navbar {
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  min-height: 77px;
  transition: all 0.3s;
  background: #fe7501;
}
.cid-vbmKUceGge .navbar.opened {
  transition: all 0.3s;
}
.cid-vbmKUceGge .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vbmKUceGge .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-vbmKUceGge .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vbmKUceGge .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vbmKUceGge .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.6rem);
  }
}
.cid-vbmKUceGge .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vbmKUceGge .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vbmKUceGge .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: 55%;
}
.cid-vbmKUceGge .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vbmKUceGge .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vbmKUceGge .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vbmKUceGge .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vbmKUceGge .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vbmKUceGge .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vbmKUceGge .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vbmKUceGge .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: 55%;
  }
  .cid-vbmKUceGge .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-vbmKUceGge .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vbmKUceGge .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vbmKUceGge .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vbmKUceGge .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-vbmKUceGge .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vbmKUceGge .navbar.navbar-short {
  background: #fe7501 !important;
  min-height: 60px;
}
.cid-vbmKUceGge .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-vbmKUceGge .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-vbmKUceGge .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: fit-content;
  transition: all 0.3s;
}
.cid-vbmKUceGge .nav-link:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-vbmKUceGge .nav-link:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}
.cid-vbmKUceGge .dropdown-menu {
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}
.cid-vbmKUceGge .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.2em 1em !important;
}
.cid-vbmKUceGge .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vbmKUceGge .mbr-iconfont {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vbmKUceGge .navbar-caption {
  padding-right: 4rem;
}
.cid-vbmKUceGge .navbar-nav {
  justify-content: center;
  width: -webkit-fill-available;
}
.cid-vbmKUceGge .dropdown-menu,
.cid-vbmKUceGge .navbar.opened {
  background: #fe7501 !important;
}
.cid-vbmKUceGge .nav-item:focus,
.cid-vbmKUceGge .nav-link:focus {
  outline: none;
}
.cid-vbmKUceGge .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vbmKUceGge .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vbmKUceGge .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-vbmKUceGge .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vbmKUceGge .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vbmKUceGge .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vbmKUceGge .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vbmKUceGge .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vbmKUceGge .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vbmKUceGge .dropdown-item.active,
.cid-vbmKUceGge .dropdown-item:active {
  background-color: transparent;
}
.cid-vbmKUceGge .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vbmKUceGge .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vbmKUceGge .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vbmKUceGge .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fe7501;
}
.cid-vbmKUceGge .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vbmKUceGge .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vbmKUceGge ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-vbmKUceGge .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vbmKUceGge button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-vbmKUceGge button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vbmKUceGge button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vbmKUceGge button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vbmKUceGge button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vbmKUceGge button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vbmKUceGge nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vbmKUceGge nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vbmKUceGge nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vbmKUceGge nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vbmKUceGge .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-vbmKUceGge a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vbmKUceGge .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  min-width: 160px;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-vbmKUceGge .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vbmKUceGge .navbar {
    height: 77px;
  }
  .cid-vbmKUceGge .navbar.opened {
    height: auto;
  }
  .cid-vbmKUceGge .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vbmKUcQhKn {
  background-image: url("../../../assets/images/materiais-hidraulicos-1600x1131.jpg");
}
.cid-vbmKUcQhKn .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbmKUcQhKn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbmKUcQhKn .mbr-section-title {
  color: #e29d35;
  text-shadow: 2px 3px 5px rgba(0, 0, 0, 0.6);
}
.cid-vbmKUcQhKn .mbr-text {
  color: #FFFFFF;
  margin-top: 20px;
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
}
.cid-vbmKUcQhKn .mbr-section-btn {
  margin-top: 30px;
}
.cid-vbmKUcQhKn .mbr-text,
.cid-vbmKUcQhKn .mbr-section-btn {
  text-align: center;
}
.cid-vbrQ9O1wuG {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: #ffffff;
}
.cid-vbrQ9O1wuG .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbrQ9O1wuG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-vbrQ9O1wuG .container {
    padding: 0 26px;
  }
}
.cid-vbrQ9O1wuG .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 768px) {
  .cid-vbrQ9O1wuG .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-vbrQ9O1wuG .embla__slide a {
  display: block;
  width: 100%;
}
.cid-vbrQ9O1wuG .embla__slide a .card-wrap .item-wrapper .image-wrap img {
  height: 156px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vbrQ9O1wuG .embla__slide a .card-wrap .item-wrapper .image-wrap img {
    height: 156px;
  }
}
.cid-vbrQ9O1wuG .embla__button--next,
.cid-vbrQ9O1wuG .embla__button--prev {
  display: flex;
}
.cid-vbrQ9O1wuG .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 50px;
  background-color: transparent;
  color: #ffffff;
  border: none;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-vbrQ9O1wuG .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-vbrQ9O1wuG .embla__button:hover {
  background: transparent;
  color: #ffffff;
}
.cid-vbrQ9O1wuG .embla__button.embla__button--prev {
  left: 0;
  margin-left: 60px;
}
@media (max-width: 992px) {
  .cid-vbrQ9O1wuG .embla__button.embla__button--prev {
    margin-left: 26px;
  }
}
.cid-vbrQ9O1wuG .embla__button.embla__button--next {
  right: 0;
  margin-right: 60px;
}
@media (max-width: 992px) {
  .cid-vbrQ9O1wuG .embla__button.embla__button--next {
    margin-right: 26px;
  }
}
.cid-vbrQ9O1wuG .embla {
  position: relative;
  width: 100%;
}
.cid-vbrQ9O1wuG .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-vbrQ9O1wuG .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vbrQ9O1wuG .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vbrQ9O1wuG .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vbGWKoHVo9 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vbmKUdkThO {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vbmKUdkThO .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbmKUdkThO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbmKUdkThO .content-wrapper {
  background: #efefef;
}
@media (max-width: 991px) {
  .cid-vbmKUdkThO .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vbmKUdkThO .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vbmKUdkThO .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vbmKUdkThO .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vbmKUdkThO .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-vbmKUdkThO .image-wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 50px 0 50px 0;
}
.cid-vbmLLusEER {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vbmLLusEER .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbmLLusEER .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbmLLusEER .content-wrapper {
  background: #efefef;
}
@media (max-width: 991px) {
  .cid-vbmLLusEER .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vbmLLusEER .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vbmLLusEER .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vbmLLusEER .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vbmLLusEER .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-vbmLLusEER .image-wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 50px 0 50px 0;
}
.cid-vbmLV1NSxb {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vbmLV1NSxb .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbmLV1NSxb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbmLV1NSxb .content-wrapper {
  background: #efefef;
}
@media (max-width: 991px) {
  .cid-vbmLV1NSxb .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vbmLV1NSxb .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vbmLV1NSxb .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vbmLV1NSxb .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vbmLV1NSxb .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-vbmLV1NSxb .image-wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 50px 0 50px 0;
}
.cid-vbmM9HjcMb {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vbmM9HjcMb .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbmM9HjcMb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbmM9HjcMb .content-wrapper {
  background: #efefef;
}
@media (max-width: 991px) {
  .cid-vbmM9HjcMb .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vbmM9HjcMb .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vbmM9HjcMb .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vbmM9HjcMb .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vbmM9HjcMb .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-vbmM9HjcMb .image-wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 50px 0 50px 0;
}
.cid-vbmMjGdqC7 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vbmMjGdqC7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbmMjGdqC7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbmMjGdqC7 .content-wrapper {
  background: #efefef;
}
@media (max-width: 991px) {
  .cid-vbmMjGdqC7 .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vbmMjGdqC7 .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vbmMjGdqC7 .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vbmMjGdqC7 .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vbmMjGdqC7 .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-vbmMjGdqC7 .image-wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 50px 0 50px 0;
}
.cid-vbmNXKdKDa {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vbmNXKdKDa .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbmNXKdKDa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbmNXKdKDa .content-wrapper {
  background: #efefef;
}
@media (max-width: 991px) {
  .cid-vbmNXKdKDa .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vbmNXKdKDa .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vbmNXKdKDa .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vbmNXKdKDa .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vbmNXKdKDa .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-vbmNXKdKDa .image-wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 50px 0 50px 0;
}
.cid-vbmKUgaXE0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vbmKUgaXE0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbmKUgaXE0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbmKUgaXE0 .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-vbmKUgaXE0 .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-vbmKUgaXE0 .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vbmKUgaXE0 .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vbmKUgaXE0 .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vbmKUgaXE0 .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vbmKUgaXE0 .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-vbmKUgaXE0 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-vbvYJRx1xh {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #efefef;
}
.cid-vbvYJRx1xh .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbvYJRx1xh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbvYJRx1xh .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  max-width: 100%;
}
@media (max-width: 768px) {
  .cid-vbvYJRx1xh .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-vbvYJRx1xh .embla__slide .slide-content {
  width: 100%;
}
.cid-vbvYJRx1xh .embla__slide .slide-content .item-wrapper .rating-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}
.cid-vbvYJRx1xh .embla__slide .slide-content .item-wrapper .rating-wrapper .rating-wrap {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.cid-vbvYJRx1xh .embla__slide .slide-content .item-wrapper .rating-wrapper .rating-wrap .mbr-star {
  margin-bottom: 0;
}
.cid-vbvYJRx1xh .embla__slide .slide-content .item-wrapper .item-text {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}
.cid-vbvYJRx1xh .embla__slide .slide-content .item-wrapper .person-wrapper .person-wrap {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.cid-vbvYJRx1xh .embla__slide .slide-content .item-wrapper .person-wrapper .person-wrap .item-img img {
  display: inline-flex;
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 100% !important;
  object-fit: cover;
}
.cid-vbvYJRx1xh .embla__slide .slide-content .item-wrapper .person-wrapper .person-wrap .name-wrapper {
  position: relative;
  z-index: 1;
}
.cid-vbvYJRx1xh .embla__slide .slide-content .item-wrapper .person-wrapper .person-wrap .name-wrapper .item-name {
  margin-bottom: 0;
}
.cid-vbvYJRx1xh .embla__slide .slide-content .item-wrapper .person-wrapper .person-wrap .name-wrapper .item-role {
  margin-bottom: 0;
}
.cid-vbvYJRx1xh .embla__button--next,
.cid-vbvYJRx1xh .embla__button--prev {
  display: flex;
}
.cid-vbvYJRx1xh .embla__button {
  bottom: 47%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  background-color: #2b2b2b !important;
  color: #ffffff !important;
  border: none !important;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
@media (max-width: 992px) {
  .cid-vbvYJRx1xh .embla__button {
    bottom: 0;
  }
}
.cid-vbvYJRx1xh .embla__button:hover {
  background-color: #f9652f !important;
  color: #ffffff !important;
}
.cid-vbvYJRx1xh .embla__button:disabled {
  opacity: .5 !important;
  background-color: #2b2b2b !important;
  color: #ffffff !important;
}
.cid-vbvYJRx1xh .embla__button.embla__button--prev {
  left: 0;
}
.cid-vbvYJRx1xh .embla__button.embla__button--next {
  right: 0;
}
.cid-vbvYJRx1xh .embla {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 10%;
}
@media (max-width: 992px) {
  .cid-vbvYJRx1xh .embla {
    padding: 0;
    padding-bottom: 4rem;
  }
}
.cid-vbvYJRx1xh .embla__viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0;
}
@media (max-width: 768px) {
  .cid-vbvYJRx1xh .embla__viewport {
    padding: 0;
  }
}
.cid-vbvYJRx1xh .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vbvYJRx1xh .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vbvYJRx1xh .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vbvYJRx1xh .item-menu-overlay {
  opacity: 0 !important;
}
.cid-vbvYJRx1xh .item-text {
  color: #000000;
}
.cid-vbvYJRx1xh .item-name {
  color: #ffffff;
}
.cid-vbvYJRx1xh .item-role {
  color: #1f1f1f;
}
.cid-vbvYJRx1xh .mbr-star {
  color: #f5b614;
}
.cid-vbvYJRx1xh .item-name,
.cid-vbvYJRx1xh .person-wrapper {
  color: #000000;
}
.cid-vbvZzbqfYP {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vbvZzbqfYP .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbvZzbqfYP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbvZzbqfYP .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1599px) {
  .cid-vbvZzbqfYP .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cid-vbvZzbqfYP .mbr-section-head {
  width: 100%;
  margin-bottom: 20px;
}
.cid-vbvZzbqfYP .mbr-section-title {
  color: #f9652f;
}
@media (max-width: 767px) {
  .cid-vbvZzbqfYP .mbr-section-title {
    text-align: center;
  }
}
.cid-vbvZzbqfYP .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-vbvZzbqfYP .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-vbvZzbqfYP .item {
  margin: 40px auto 0;
  width: 90% !important;
}
.cid-vbvZzbqfYP .item-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  width: 100%;
  padding: 30px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #d7d7d7, #fafafa);
}
@media (max-width: 991px) {
  .cid-vbvZzbqfYP .item-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-vbvZzbqfYP .item-wrapper {
    padding: 20px;
  }
}
.cid-vbvZzbqfYP .item-left {
  display: flex;
  align-items: center;
  flex-basis: 80%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbvZzbqfYP .item-left {
    flex-basis: 70%;
  }
}
@media (max-width: 991px) {
  .cid-vbvZzbqfYP .item-left {
    flex-basis: 100%;
    flex-wrap: wrap;
  }
}
.cid-vbvZzbqfYP .item-right {
  flex-basis: 20%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbvZzbqfYP .item-right {
    flex-basis: 30%;
  }
}
@media (max-width: 991px) {
  .cid-vbvZzbqfYP .item-right {
    flex-basis: 100%;
  }
}
.cid-vbvZzbqfYP .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-vbvZzbqfYP .item-img {
    max-width: 250px;
  }
}
.cid-vbvZzbqfYP .item-img img {
  width: 100%;
  aspect-ratio: 1.49700599;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-vbvZzbqfYP .item-img:hover img {
  transform: scale(1.05);
}
.cid-vbvZzbqfYP .card-box {
  padding-left: 30px;
}
@media (max-width: 1199px) {
  .cid-vbvZzbqfYP .card-box {
    padding-left: 20px;
    flex-basis: 50%;
  }
}
@media (max-width: 991px) {
  .cid-vbvZzbqfYP .card-box {
    padding-left: 0;
    padding-top: 25px;
    flex-basis: 100%;
  }
}
.cid-vbvZzbqfYP .label-container {
  padding: 3px 8px;
  border-radius: 20px;
  width: fit-content;
  background-color: #434a51;
  margin-bottom: 10px;
}
.cid-vbvZzbqfYP .label-text {
  color: #C4CFDE;
  margin-bottom: 0;
}
.cid-vbvZzbqfYP .card-title {
  color: #C4CFDE;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-vbvZzbqfYP .card-title {
    margin-bottom: 10px;
  }
}
.cid-vbvZzbqfYP .card-subtitle {
  color: #C4CFDE;
  margin-bottom: 7px;
}
.cid-vbvZzbqfYP .card-text {
  color: #000000;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-vbvZzbqfYP .mbr-section-btn {
    margin-top: 10px;
    text-align: left !important;
  }
}
.cid-vbvZAd7lS2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vbvZAd7lS2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbvZAd7lS2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbvZAd7lS2 .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1599px) {
  .cid-vbvZAd7lS2 .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cid-vbvZAd7lS2 .mbr-section-head {
  width: 100%;
  margin-bottom: 20px;
}
.cid-vbvZAd7lS2 .mbr-section-title {
  color: #f9652f;
}
@media (max-width: 767px) {
  .cid-vbvZAd7lS2 .mbr-section-title {
    text-align: center;
  }
}
.cid-vbvZAd7lS2 .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-vbvZAd7lS2 .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-vbvZAd7lS2 .item {
  margin: 40px auto 0;
  width: 90% !important;
}
.cid-vbvZAd7lS2 .item-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  width: 100%;
  padding: 30px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #d7d7d7, #fafafa);
}
@media (max-width: 991px) {
  .cid-vbvZAd7lS2 .item-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-vbvZAd7lS2 .item-wrapper {
    padding: 20px;
  }
}
.cid-vbvZAd7lS2 .item-left {
  display: flex;
  align-items: center;
  flex-basis: 80%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbvZAd7lS2 .item-left {
    flex-basis: 70%;
  }
}
@media (max-width: 991px) {
  .cid-vbvZAd7lS2 .item-left {
    flex-basis: 100%;
    flex-wrap: wrap;
  }
}
.cid-vbvZAd7lS2 .item-right {
  flex-basis: 20%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbvZAd7lS2 .item-right {
    flex-basis: 30%;
  }
}
@media (max-width: 991px) {
  .cid-vbvZAd7lS2 .item-right {
    flex-basis: 100%;
  }
}
.cid-vbvZAd7lS2 .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-vbvZAd7lS2 .item-img {
    max-width: 250px;
  }
}
.cid-vbvZAd7lS2 .item-img img {
  width: 100%;
  aspect-ratio: 1.49700599;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-vbvZAd7lS2 .item-img:hover img {
  transform: scale(1.05);
}
.cid-vbvZAd7lS2 .card-box {
  padding-left: 30px;
}
@media (max-width: 1199px) {
  .cid-vbvZAd7lS2 .card-box {
    padding-left: 20px;
    flex-basis: 50%;
  }
}
@media (max-width: 991px) {
  .cid-vbvZAd7lS2 .card-box {
    padding-left: 0;
    padding-top: 25px;
    flex-basis: 100%;
  }
}
.cid-vbvZAd7lS2 .label-container {
  padding: 3px 8px;
  border-radius: 20px;
  width: fit-content;
  background-color: #434a51;
  margin-bottom: 10px;
}
.cid-vbvZAd7lS2 .label-text {
  color: #C4CFDE;
  margin-bottom: 0;
}
.cid-vbvZAd7lS2 .card-title {
  color: #C4CFDE;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-vbvZAd7lS2 .card-title {
    margin-bottom: 10px;
  }
}
.cid-vbvZAd7lS2 .card-subtitle {
  color: #C4CFDE;
  margin-bottom: 7px;
}
.cid-vbvZAd7lS2 .card-text {
  color: #000000;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-vbvZAd7lS2 .mbr-section-btn {
    margin-top: 10px;
    text-align: left !important;
  }
}
.cid-vbvZB5jxzc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vbvZB5jxzc .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbvZB5jxzc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbvZB5jxzc .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1599px) {
  .cid-vbvZB5jxzc .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cid-vbvZB5jxzc .mbr-section-head {
  width: 100%;
  margin-bottom: 20px;
}
.cid-vbvZB5jxzc .mbr-section-title {
  color: #f9652f;
}
@media (max-width: 767px) {
  .cid-vbvZB5jxzc .mbr-section-title {
    text-align: center;
  }
}
.cid-vbvZB5jxzc .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-vbvZB5jxzc .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-vbvZB5jxzc .item {
  margin: 40px auto 0;
  width: 90% !important;
}
.cid-vbvZB5jxzc .item-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  width: 100%;
  padding: 30px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #d7d7d7, #fafafa);
}
@media (max-width: 991px) {
  .cid-vbvZB5jxzc .item-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-vbvZB5jxzc .item-wrapper {
    padding: 20px;
  }
}
.cid-vbvZB5jxzc .item-left {
  display: flex;
  align-items: center;
  flex-basis: 80%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbvZB5jxzc .item-left {
    flex-basis: 70%;
  }
}
@media (max-width: 991px) {
  .cid-vbvZB5jxzc .item-left {
    flex-basis: 100%;
    flex-wrap: wrap;
  }
}
.cid-vbvZB5jxzc .item-right {
  flex-basis: 20%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbvZB5jxzc .item-right {
    flex-basis: 30%;
  }
}
@media (max-width: 991px) {
  .cid-vbvZB5jxzc .item-right {
    flex-basis: 100%;
  }
}
.cid-vbvZB5jxzc .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-vbvZB5jxzc .item-img {
    max-width: 250px;
  }
}
.cid-vbvZB5jxzc .item-img img {
  width: 100%;
  aspect-ratio: 1.49700599;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-vbvZB5jxzc .item-img:hover img {
  transform: scale(1.05);
}
.cid-vbvZB5jxzc .card-box {
  padding-left: 30px;
}
@media (max-width: 1199px) {
  .cid-vbvZB5jxzc .card-box {
    padding-left: 20px;
    flex-basis: 50%;
  }
}
@media (max-width: 991px) {
  .cid-vbvZB5jxzc .card-box {
    padding-left: 0;
    padding-top: 25px;
    flex-basis: 100%;
  }
}
.cid-vbvZB5jxzc .label-container {
  padding: 3px 8px;
  border-radius: 20px;
  width: fit-content;
  background-color: #434a51;
  margin-bottom: 10px;
}
.cid-vbvZB5jxzc .label-text {
  color: #C4CFDE;
  margin-bottom: 0;
}
.cid-vbvZB5jxzc .card-title {
  color: #C4CFDE;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-vbvZB5jxzc .card-title {
    margin-bottom: 10px;
  }
}
.cid-vbvZB5jxzc .card-subtitle {
  color: #C4CFDE;
  margin-bottom: 7px;
}
.cid-vbvZB5jxzc .card-text {
  color: #000000;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-vbvZB5jxzc .mbr-section-btn {
    margin-top: 10px;
    text-align: left !important;
  }
}
.cid-vbvZBxDd7D {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vbvZBxDd7D .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbvZBxDd7D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbvZBxDd7D .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1599px) {
  .cid-vbvZBxDd7D .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cid-vbvZBxDd7D .mbr-section-head {
  width: 100%;
  margin-bottom: 20px;
}
.cid-vbvZBxDd7D .mbr-section-title {
  color: #f9652f;
}
@media (max-width: 767px) {
  .cid-vbvZBxDd7D .mbr-section-title {
    text-align: center;
  }
}
.cid-vbvZBxDd7D .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-vbvZBxDd7D .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-vbvZBxDd7D .item {
  margin: 40px auto 0;
  width: 90% !important;
}
.cid-vbvZBxDd7D .item-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  width: 100%;
  padding: 30px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #d7d7d7, #fafafa);
}
@media (max-width: 991px) {
  .cid-vbvZBxDd7D .item-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-vbvZBxDd7D .item-wrapper {
    padding: 20px;
  }
}
.cid-vbvZBxDd7D .item-left {
  display: flex;
  align-items: center;
  flex-basis: 80%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbvZBxDd7D .item-left {
    flex-basis: 70%;
  }
}
@media (max-width: 991px) {
  .cid-vbvZBxDd7D .item-left {
    flex-basis: 100%;
    flex-wrap: wrap;
  }
}
.cid-vbvZBxDd7D .item-right {
  flex-basis: 20%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbvZBxDd7D .item-right {
    flex-basis: 30%;
  }
}
@media (max-width: 991px) {
  .cid-vbvZBxDd7D .item-right {
    flex-basis: 100%;
  }
}
.cid-vbvZBxDd7D .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-vbvZBxDd7D .item-img {
    max-width: 250px;
  }
}
.cid-vbvZBxDd7D .item-img img {
  width: 100%;
  aspect-ratio: 1.49700599;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-vbvZBxDd7D .item-img:hover img {
  transform: scale(1.05);
}
.cid-vbvZBxDd7D .card-box {
  padding-left: 30px;
}
@media (max-width: 1199px) {
  .cid-vbvZBxDd7D .card-box {
    padding-left: 20px;
    flex-basis: 50%;
  }
}
@media (max-width: 991px) {
  .cid-vbvZBxDd7D .card-box {
    padding-left: 0;
    padding-top: 25px;
    flex-basis: 100%;
  }
}
.cid-vbvZBxDd7D .label-container {
  padding: 3px 8px;
  border-radius: 20px;
  width: fit-content;
  background-color: #434a51;
  margin-bottom: 10px;
}
.cid-vbvZBxDd7D .label-text {
  color: #C4CFDE;
  margin-bottom: 0;
}
.cid-vbvZBxDd7D .card-title {
  color: #C4CFDE;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-vbvZBxDd7D .card-title {
    margin-bottom: 10px;
  }
}
.cid-vbvZBxDd7D .card-subtitle {
  color: #C4CFDE;
  margin-bottom: 7px;
}
.cid-vbvZBxDd7D .card-text {
  color: #000000;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-vbvZBxDd7D .mbr-section-btn {
    margin-top: 10px;
    text-align: left !important;
  }
}
.cid-vbvZC1EYd0 {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vbvZC1EYd0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbvZC1EYd0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbvZC1EYd0 .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1599px) {
  .cid-vbvZC1EYd0 .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cid-vbvZC1EYd0 .mbr-section-head {
  width: 100%;
  margin-bottom: 20px;
}
.cid-vbvZC1EYd0 .mbr-section-title {
  color: #f9652f;
}
@media (max-width: 767px) {
  .cid-vbvZC1EYd0 .mbr-section-title {
    text-align: center;
  }
}
.cid-vbvZC1EYd0 .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-vbvZC1EYd0 .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-vbvZC1EYd0 .item {
  margin: 40px auto 0;
  width: 90% !important;
}
.cid-vbvZC1EYd0 .item-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  width: 100%;
  padding: 30px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #d7d7d7, #fafafa);
}
@media (max-width: 991px) {
  .cid-vbvZC1EYd0 .item-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-vbvZC1EYd0 .item-wrapper {
    padding: 20px;
  }
}
.cid-vbvZC1EYd0 .item-left {
  display: flex;
  align-items: center;
  flex-basis: 80%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbvZC1EYd0 .item-left {
    flex-basis: 70%;
  }
}
@media (max-width: 991px) {
  .cid-vbvZC1EYd0 .item-left {
    flex-basis: 100%;
    flex-wrap: wrap;
  }
}
.cid-vbvZC1EYd0 .item-right {
  flex-basis: 20%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbvZC1EYd0 .item-right {
    flex-basis: 30%;
  }
}
@media (max-width: 991px) {
  .cid-vbvZC1EYd0 .item-right {
    flex-basis: 100%;
  }
}
.cid-vbvZC1EYd0 .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-vbvZC1EYd0 .item-img {
    max-width: 250px;
  }
}
.cid-vbvZC1EYd0 .item-img img {
  width: 100%;
  aspect-ratio: 1.49700599;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-vbvZC1EYd0 .item-img:hover img {
  transform: scale(1.05);
}
.cid-vbvZC1EYd0 .card-box {
  padding-left: 30px;
}
@media (max-width: 1199px) {
  .cid-vbvZC1EYd0 .card-box {
    padding-left: 20px;
    flex-basis: 50%;
  }
}
@media (max-width: 991px) {
  .cid-vbvZC1EYd0 .card-box {
    padding-left: 0;
    padding-top: 25px;
    flex-basis: 100%;
  }
}
.cid-vbvZC1EYd0 .label-container {
  padding: 3px 8px;
  border-radius: 20px;
  width: fit-content;
  background-color: #434a51;
  margin-bottom: 10px;
}
.cid-vbvZC1EYd0 .label-text {
  color: #C4CFDE;
  margin-bottom: 0;
}
.cid-vbvZC1EYd0 .card-title {
  color: #C4CFDE;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-vbvZC1EYd0 .card-title {
    margin-bottom: 10px;
  }
}
.cid-vbvZC1EYd0 .card-subtitle {
  color: #C4CFDE;
  margin-bottom: 7px;
}
.cid-vbvZC1EYd0 .card-text {
  color: #000000;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-vbvZC1EYd0 .mbr-section-btn {
    margin-top: 10px;
    text-align: left !important;
  }
}
.cid-vbGplZKkeB {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-vbGplZKkeB section {
  position: relative;
}
.cid-vbGplZKkeB h4 {
  margin: 0;
}
.cid-vbGplZKkeB img {
  height: 100px;
  padding-rigth: 8px;
}
.cid-vbGplZKkeB a {
  font-weight: 300;
}
.cid-vbGplZKkeB .img1 {
  color: #f9652f;
}
.cid-vbGplZKkeB .img2 {
  color: #f9652f;
}
.cid-vbGplZKkeB .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #f9652f;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-vbGplZKkeB .media-wrap {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-vbGplZKkeB .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-vbGplZKkeB .item,
.cid-vbGplZKkeB .link {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-vbGplZKkeB .item h4,
.cid-vbGplZKkeB .link h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-vbGplZKkeB .link {
  border-bottom: 1px solid #4a535e;
}
@media (max-width: 767px) {
  .cid-vbGplZKkeB .item {
    justify-content: center;
  }
}
.cid-vbGplZKkeB .item-title {
  color: #ffffff;
  text-align: left;
}
.cid-vbGplZKkeB .text1 {
  text-align: left;
}
.cid-vbGplZKkeB .link-title {
  text-align: left;
}
.cid-vbmKUhvQly {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-vbmKUhvQly .mbr-text {
  color: #f6f6ef;
}
.cid-vbmPj16lfD .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vbmPj16lfD .display-2 {
  font-size: 2rem;
}
@media (max-width: 992px) {
  .cid-vbmPj16lfD .icons-menu {
    padding: 1rem 0 !important;
  }
}
.cid-vbmPj16lfD .container {
  max-width: 1800px;
  display: flex;
  margin: auto;
}
.cid-vbmPj16lfD .navbar {
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  min-height: 77px;
  transition: all 0.3s;
  background: #fe7501;
}
.cid-vbmPj16lfD .navbar.opened {
  transition: all 0.3s;
}
.cid-vbmPj16lfD .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vbmPj16lfD .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-vbmPj16lfD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vbmPj16lfD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vbmPj16lfD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.6rem);
  }
}
.cid-vbmPj16lfD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vbmPj16lfD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vbmPj16lfD .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: 55%;
}
.cid-vbmPj16lfD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vbmPj16lfD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vbmPj16lfD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vbmPj16lfD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vbmPj16lfD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vbmPj16lfD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vbmPj16lfD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vbmPj16lfD .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: 55%;
  }
  .cid-vbmPj16lfD .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-vbmPj16lfD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vbmPj16lfD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vbmPj16lfD .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vbmPj16lfD .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-vbmPj16lfD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vbmPj16lfD .navbar.navbar-short {
  background: #fe7501 !important;
  min-height: 60px;
}
.cid-vbmPj16lfD .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-vbmPj16lfD .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-vbmPj16lfD .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: fit-content;
  transition: all 0.3s;
}
.cid-vbmPj16lfD .nav-link:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-vbmPj16lfD .nav-link:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}
.cid-vbmPj16lfD .dropdown-menu {
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}
.cid-vbmPj16lfD .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.2em 1em !important;
}
.cid-vbmPj16lfD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vbmPj16lfD .mbr-iconfont {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vbmPj16lfD .navbar-caption {
  padding-right: 4rem;
}
.cid-vbmPj16lfD .navbar-nav {
  justify-content: center;
  width: -webkit-fill-available;
}
.cid-vbmPj16lfD .dropdown-menu,
.cid-vbmPj16lfD .navbar.opened {
  background: #fe7501 !important;
}
.cid-vbmPj16lfD .nav-item:focus,
.cid-vbmPj16lfD .nav-link:focus {
  outline: none;
}
.cid-vbmPj16lfD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vbmPj16lfD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vbmPj16lfD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-vbmPj16lfD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vbmPj16lfD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vbmPj16lfD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vbmPj16lfD .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vbmPj16lfD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vbmPj16lfD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vbmPj16lfD .dropdown-item.active,
.cid-vbmPj16lfD .dropdown-item:active {
  background-color: transparent;
}
.cid-vbmPj16lfD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vbmPj16lfD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vbmPj16lfD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vbmPj16lfD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fe7501;
}
.cid-vbmPj16lfD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vbmPj16lfD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vbmPj16lfD ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-vbmPj16lfD .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vbmPj16lfD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-vbmPj16lfD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vbmPj16lfD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vbmPj16lfD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vbmPj16lfD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vbmPj16lfD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vbmPj16lfD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vbmPj16lfD nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vbmPj16lfD nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vbmPj16lfD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vbmPj16lfD .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-vbmPj16lfD a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vbmPj16lfD .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  min-width: 160px;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-vbmPj16lfD .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vbmPj16lfD .navbar {
    height: 77px;
  }
  .cid-vbmPj16lfD .navbar.opened {
    height: auto;
  }
  .cid-vbmPj16lfD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vbmPj1J1i9 {
  background-image: url("../../../assets/images/ferramentas-domesticas-profissionais-marcus-eletricas-1920x1080.jpg");
}
.cid-vbmPj1J1i9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbmPj1J1i9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbmPj1J1i9 .mbr-section-title {
  color: #e29d35;
  text-shadow: 2px 3px 5px rgba(0, 0, 0, 0.6);
}
.cid-vbmPj1J1i9 .mbr-text {
  color: #FFFFFF;
  margin-top: 20px;
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
}
.cid-vbmPj1J1i9 .mbr-section-btn {
  margin-top: 30px;
}
.cid-vbmPj1J1i9 .mbr-text,
.cid-vbmPj1J1i9 .mbr-section-btn {
  text-align: center;
}
.cid-vbuECFKfSF {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: #ffffff;
}
.cid-vbuECFKfSF .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbuECFKfSF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-vbuECFKfSF .container {
    padding: 0 26px;
  }
}
.cid-vbuECFKfSF .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 768px) {
  .cid-vbuECFKfSF .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-vbuECFKfSF .embla__slide a {
  display: block;
  width: 100%;
}
.cid-vbuECFKfSF .embla__slide a .card-wrap .item-wrapper .image-wrap img {
  height: 156px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vbuECFKfSF .embla__slide a .card-wrap .item-wrapper .image-wrap img {
    height: 156px;
  }
}
.cid-vbuECFKfSF .embla__button--next,
.cid-vbuECFKfSF .embla__button--prev {
  display: flex;
}
.cid-vbuECFKfSF .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 50px;
  background-color: transparent;
  color: #ffffff;
  border: none;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-vbuECFKfSF .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-vbuECFKfSF .embla__button:hover {
  background: transparent;
  color: #ffffff;
}
.cid-vbuECFKfSF .embla__button.embla__button--prev {
  left: 0;
  margin-left: 60px;
}
@media (max-width: 992px) {
  .cid-vbuECFKfSF .embla__button.embla__button--prev {
    margin-left: 26px;
  }
}
.cid-vbuECFKfSF .embla__button.embla__button--next {
  right: 0;
  margin-right: 60px;
}
@media (max-width: 992px) {
  .cid-vbuECFKfSF .embla__button.embla__button--next {
    margin-right: 26px;
  }
}
.cid-vbuECFKfSF .embla {
  position: relative;
  width: 100%;
}
.cid-vbuECFKfSF .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-vbuECFKfSF .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vbuECFKfSF .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vbuECFKfSF .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vbGX9TTkVm {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vbmPj2al2C {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vbmPj2al2C .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbmPj2al2C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbmPj2al2C .content-wrapper {
  background: #efefef;
}
@media (max-width: 991px) {
  .cid-vbmPj2al2C .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vbmPj2al2C .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vbmPj2al2C .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vbmPj2al2C .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vbmPj2al2C .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-vbmPj2al2C .image-wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 50px 0 50px 0;
}
.cid-vbmQtC3AIo {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vbmQtC3AIo .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbmQtC3AIo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbmQtC3AIo .content-wrapper {
  background: #efefef;
}
@media (max-width: 991px) {
  .cid-vbmQtC3AIo .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vbmQtC3AIo .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vbmQtC3AIo .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vbmQtC3AIo .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vbmQtC3AIo .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-vbmQtC3AIo .image-wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 50px 0 50px 0;
}
.cid-vbmQKNS0zt {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vbmQKNS0zt .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbmQKNS0zt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbmQKNS0zt .content-wrapper {
  background: #efefef;
}
@media (max-width: 991px) {
  .cid-vbmQKNS0zt .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vbmQKNS0zt .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vbmQKNS0zt .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vbmQKNS0zt .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vbmQKNS0zt .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-vbmQKNS0zt .image-wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 50px 0 50px 0;
}
.cid-vbmQUZdsRS {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vbmQUZdsRS .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbmQUZdsRS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbmQUZdsRS .content-wrapper {
  background: #efefef;
}
@media (max-width: 991px) {
  .cid-vbmQUZdsRS .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vbmQUZdsRS .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vbmQUZdsRS .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vbmQUZdsRS .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vbmQUZdsRS .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-vbmQUZdsRS .image-wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 50px 0 50px 0;
}
.cid-vbmR9lVi4n {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vbmR9lVi4n .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbmR9lVi4n .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbmR9lVi4n .content-wrapper {
  background: #efefef;
}
@media (max-width: 991px) {
  .cid-vbmR9lVi4n .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vbmR9lVi4n .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vbmR9lVi4n .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vbmR9lVi4n .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vbmR9lVi4n .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-vbmR9lVi4n .image-wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 50px 0 50px 0;
}
.cid-vbmPj4PIM1 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vbmPj4PIM1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbmPj4PIM1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbmPj4PIM1 .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-vbmPj4PIM1 .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-vbmPj4PIM1 .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vbmPj4PIM1 .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vbmPj4PIM1 .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vbmPj4PIM1 .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vbmPj4PIM1 .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-vbmPj4PIM1 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-vbvYUEOOvv {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #efefef;
}
.cid-vbvYUEOOvv .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbvYUEOOvv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbvYUEOOvv .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  max-width: 100%;
}
@media (max-width: 768px) {
  .cid-vbvYUEOOvv .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-vbvYUEOOvv .embla__slide .slide-content {
  width: 100%;
}
.cid-vbvYUEOOvv .embla__slide .slide-content .item-wrapper .rating-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}
.cid-vbvYUEOOvv .embla__slide .slide-content .item-wrapper .rating-wrapper .rating-wrap {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.cid-vbvYUEOOvv .embla__slide .slide-content .item-wrapper .rating-wrapper .rating-wrap .mbr-star {
  margin-bottom: 0;
}
.cid-vbvYUEOOvv .embla__slide .slide-content .item-wrapper .item-text {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}
.cid-vbvYUEOOvv .embla__slide .slide-content .item-wrapper .person-wrapper .person-wrap {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.cid-vbvYUEOOvv .embla__slide .slide-content .item-wrapper .person-wrapper .person-wrap .item-img img {
  display: inline-flex;
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 100% !important;
  object-fit: cover;
}
.cid-vbvYUEOOvv .embla__slide .slide-content .item-wrapper .person-wrapper .person-wrap .name-wrapper {
  position: relative;
  z-index: 1;
}
.cid-vbvYUEOOvv .embla__slide .slide-content .item-wrapper .person-wrapper .person-wrap .name-wrapper .item-name {
  margin-bottom: 0;
}
.cid-vbvYUEOOvv .embla__slide .slide-content .item-wrapper .person-wrapper .person-wrap .name-wrapper .item-role {
  margin-bottom: 0;
}
.cid-vbvYUEOOvv .embla__button--next,
.cid-vbvYUEOOvv .embla__button--prev {
  display: flex;
}
.cid-vbvYUEOOvv .embla__button {
  bottom: 47%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  background-color: #2b2b2b !important;
  color: #ffffff !important;
  border: none !important;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
@media (max-width: 992px) {
  .cid-vbvYUEOOvv .embla__button {
    bottom: 0;
  }
}
.cid-vbvYUEOOvv .embla__button:hover {
  background-color: #f9652f !important;
  color: #ffffff !important;
}
.cid-vbvYUEOOvv .embla__button:disabled {
  opacity: .5 !important;
  background-color: #2b2b2b !important;
  color: #ffffff !important;
}
.cid-vbvYUEOOvv .embla__button.embla__button--prev {
  left: 0;
}
.cid-vbvYUEOOvv .embla__button.embla__button--next {
  right: 0;
}
.cid-vbvYUEOOvv .embla {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 10%;
}
@media (max-width: 992px) {
  .cid-vbvYUEOOvv .embla {
    padding: 0;
    padding-bottom: 4rem;
  }
}
.cid-vbvYUEOOvv .embla__viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0;
}
@media (max-width: 768px) {
  .cid-vbvYUEOOvv .embla__viewport {
    padding: 0;
  }
}
.cid-vbvYUEOOvv .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vbvYUEOOvv .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vbvYUEOOvv .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vbvYUEOOvv .item-menu-overlay {
  opacity: 0 !important;
}
.cid-vbvYUEOOvv .item-text {
  color: #000000;
}
.cid-vbvYUEOOvv .item-name {
  color: #ffffff;
}
.cid-vbvYUEOOvv .item-role {
  color: #1f1f1f;
}
.cid-vbvYUEOOvv .mbr-star {
  color: #f5b614;
}
.cid-vbvYUEOOvv .item-name,
.cid-vbvYUEOOvv .person-wrapper {
  color: #000000;
}
.cid-vbw1xKt3QV {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vbw1xKt3QV .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbw1xKt3QV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbw1xKt3QV .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1599px) {
  .cid-vbw1xKt3QV .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cid-vbw1xKt3QV .mbr-section-head {
  width: 100%;
  margin-bottom: 20px;
}
.cid-vbw1xKt3QV .mbr-section-title {
  color: #f9652f;
}
@media (max-width: 767px) {
  .cid-vbw1xKt3QV .mbr-section-title {
    text-align: center;
  }
}
.cid-vbw1xKt3QV .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-vbw1xKt3QV .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-vbw1xKt3QV .item {
  margin: 40px auto 0;
  width: 90% !important;
}
.cid-vbw1xKt3QV .item-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  width: 100%;
  padding: 30px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #d7d7d7, #fafafa);
}
@media (max-width: 991px) {
  .cid-vbw1xKt3QV .item-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-vbw1xKt3QV .item-wrapper {
    padding: 20px;
  }
}
.cid-vbw1xKt3QV .item-left {
  display: flex;
  align-items: center;
  flex-basis: 80%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbw1xKt3QV .item-left {
    flex-basis: 70%;
  }
}
@media (max-width: 991px) {
  .cid-vbw1xKt3QV .item-left {
    flex-basis: 100%;
    flex-wrap: wrap;
  }
}
.cid-vbw1xKt3QV .item-right {
  flex-basis: 20%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbw1xKt3QV .item-right {
    flex-basis: 30%;
  }
}
@media (max-width: 991px) {
  .cid-vbw1xKt3QV .item-right {
    flex-basis: 100%;
  }
}
.cid-vbw1xKt3QV .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-vbw1xKt3QV .item-img {
    max-width: 250px;
  }
}
.cid-vbw1xKt3QV .item-img img {
  width: 100%;
  aspect-ratio: 1.49700599;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-vbw1xKt3QV .item-img:hover img {
  transform: scale(1.05);
}
.cid-vbw1xKt3QV .card-box {
  padding-left: 30px;
}
@media (max-width: 1199px) {
  .cid-vbw1xKt3QV .card-box {
    padding-left: 20px;
    flex-basis: 50%;
  }
}
@media (max-width: 991px) {
  .cid-vbw1xKt3QV .card-box {
    padding-left: 0;
    padding-top: 25px;
    flex-basis: 100%;
  }
}
.cid-vbw1xKt3QV .label-container {
  padding: 3px 8px;
  border-radius: 20px;
  width: fit-content;
  background-color: #434a51;
  margin-bottom: 10px;
}
.cid-vbw1xKt3QV .label-text {
  color: #C4CFDE;
  margin-bottom: 0;
}
.cid-vbw1xKt3QV .card-title {
  color: #C4CFDE;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-vbw1xKt3QV .card-title {
    margin-bottom: 10px;
  }
}
.cid-vbw1xKt3QV .card-subtitle {
  color: #C4CFDE;
  margin-bottom: 7px;
}
.cid-vbw1xKt3QV .card-text {
  color: #000000;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-vbw1xKt3QV .mbr-section-btn {
    margin-top: 10px;
    text-align: left !important;
  }
}
.cid-vbw1zx41Um {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vbw1zx41Um .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbw1zx41Um .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbw1zx41Um .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1599px) {
  .cid-vbw1zx41Um .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cid-vbw1zx41Um .mbr-section-head {
  width: 100%;
  margin-bottom: 20px;
}
.cid-vbw1zx41Um .mbr-section-title {
  color: #f9652f;
}
@media (max-width: 767px) {
  .cid-vbw1zx41Um .mbr-section-title {
    text-align: center;
  }
}
.cid-vbw1zx41Um .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-vbw1zx41Um .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-vbw1zx41Um .item {
  margin: 40px auto 0;
  width: 90% !important;
}
.cid-vbw1zx41Um .item-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  width: 100%;
  padding: 30px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #d7d7d7, #fafafa);
}
@media (max-width: 991px) {
  .cid-vbw1zx41Um .item-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-vbw1zx41Um .item-wrapper {
    padding: 20px;
  }
}
.cid-vbw1zx41Um .item-left {
  display: flex;
  align-items: center;
  flex-basis: 80%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbw1zx41Um .item-left {
    flex-basis: 70%;
  }
}
@media (max-width: 991px) {
  .cid-vbw1zx41Um .item-left {
    flex-basis: 100%;
    flex-wrap: wrap;
  }
}
.cid-vbw1zx41Um .item-right {
  flex-basis: 20%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbw1zx41Um .item-right {
    flex-basis: 30%;
  }
}
@media (max-width: 991px) {
  .cid-vbw1zx41Um .item-right {
    flex-basis: 100%;
  }
}
.cid-vbw1zx41Um .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-vbw1zx41Um .item-img {
    max-width: 250px;
  }
}
.cid-vbw1zx41Um .item-img img {
  width: 100%;
  aspect-ratio: 1.49700599;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-vbw1zx41Um .item-img:hover img {
  transform: scale(1.05);
}
.cid-vbw1zx41Um .card-box {
  padding-left: 30px;
}
@media (max-width: 1199px) {
  .cid-vbw1zx41Um .card-box {
    padding-left: 20px;
    flex-basis: 50%;
  }
}
@media (max-width: 991px) {
  .cid-vbw1zx41Um .card-box {
    padding-left: 0;
    padding-top: 25px;
    flex-basis: 100%;
  }
}
.cid-vbw1zx41Um .label-container {
  padding: 3px 8px;
  border-radius: 20px;
  width: fit-content;
  background-color: #434a51;
  margin-bottom: 10px;
}
.cid-vbw1zx41Um .label-text {
  color: #C4CFDE;
  margin-bottom: 0;
}
.cid-vbw1zx41Um .card-title {
  color: #C4CFDE;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-vbw1zx41Um .card-title {
    margin-bottom: 10px;
  }
}
.cid-vbw1zx41Um .card-subtitle {
  color: #C4CFDE;
  margin-bottom: 7px;
}
.cid-vbw1zx41Um .card-text {
  color: #000000;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-vbw1zx41Um .mbr-section-btn {
    margin-top: 10px;
    text-align: left !important;
  }
}
.cid-vbw1B6mvs8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vbw1B6mvs8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbw1B6mvs8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbw1B6mvs8 .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1599px) {
  .cid-vbw1B6mvs8 .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cid-vbw1B6mvs8 .mbr-section-head {
  width: 100%;
  margin-bottom: 20px;
}
.cid-vbw1B6mvs8 .mbr-section-title {
  color: #f9652f;
}
@media (max-width: 767px) {
  .cid-vbw1B6mvs8 .mbr-section-title {
    text-align: center;
  }
}
.cid-vbw1B6mvs8 .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-vbw1B6mvs8 .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-vbw1B6mvs8 .item {
  margin: 40px auto 0;
  width: 90% !important;
}
.cid-vbw1B6mvs8 .item-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  width: 100%;
  padding: 30px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #d7d7d7, #fafafa);
}
@media (max-width: 991px) {
  .cid-vbw1B6mvs8 .item-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-vbw1B6mvs8 .item-wrapper {
    padding: 20px;
  }
}
.cid-vbw1B6mvs8 .item-left {
  display: flex;
  align-items: center;
  flex-basis: 80%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbw1B6mvs8 .item-left {
    flex-basis: 70%;
  }
}
@media (max-width: 991px) {
  .cid-vbw1B6mvs8 .item-left {
    flex-basis: 100%;
    flex-wrap: wrap;
  }
}
.cid-vbw1B6mvs8 .item-right {
  flex-basis: 20%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbw1B6mvs8 .item-right {
    flex-basis: 30%;
  }
}
@media (max-width: 991px) {
  .cid-vbw1B6mvs8 .item-right {
    flex-basis: 100%;
  }
}
.cid-vbw1B6mvs8 .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-vbw1B6mvs8 .item-img {
    max-width: 250px;
  }
}
.cid-vbw1B6mvs8 .item-img img {
  width: 100%;
  aspect-ratio: 1.49700599;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-vbw1B6mvs8 .item-img:hover img {
  transform: scale(1.05);
}
.cid-vbw1B6mvs8 .card-box {
  padding-left: 30px;
}
@media (max-width: 1199px) {
  .cid-vbw1B6mvs8 .card-box {
    padding-left: 20px;
    flex-basis: 50%;
  }
}
@media (max-width: 991px) {
  .cid-vbw1B6mvs8 .card-box {
    padding-left: 0;
    padding-top: 25px;
    flex-basis: 100%;
  }
}
.cid-vbw1B6mvs8 .label-container {
  padding: 3px 8px;
  border-radius: 20px;
  width: fit-content;
  background-color: #434a51;
  margin-bottom: 10px;
}
.cid-vbw1B6mvs8 .label-text {
  color: #C4CFDE;
  margin-bottom: 0;
}
.cid-vbw1B6mvs8 .card-title {
  color: #C4CFDE;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-vbw1B6mvs8 .card-title {
    margin-bottom: 10px;
  }
}
.cid-vbw1B6mvs8 .card-subtitle {
  color: #C4CFDE;
  margin-bottom: 7px;
}
.cid-vbw1B6mvs8 .card-text {
  color: #000000;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-vbw1B6mvs8 .mbr-section-btn {
    margin-top: 10px;
    text-align: left !important;
  }
}
.cid-vbw1BEy5Fj {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vbw1BEy5Fj .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbw1BEy5Fj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbw1BEy5Fj .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1599px) {
  .cid-vbw1BEy5Fj .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cid-vbw1BEy5Fj .mbr-section-head {
  width: 100%;
  margin-bottom: 20px;
}
.cid-vbw1BEy5Fj .mbr-section-title {
  color: #f9652f;
}
@media (max-width: 767px) {
  .cid-vbw1BEy5Fj .mbr-section-title {
    text-align: center;
  }
}
.cid-vbw1BEy5Fj .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-vbw1BEy5Fj .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-vbw1BEy5Fj .item {
  margin: 40px auto 0;
  width: 90% !important;
}
.cid-vbw1BEy5Fj .item-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  width: 100%;
  padding: 30px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #d7d7d7, #fafafa);
}
@media (max-width: 991px) {
  .cid-vbw1BEy5Fj .item-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-vbw1BEy5Fj .item-wrapper {
    padding: 20px;
  }
}
.cid-vbw1BEy5Fj .item-left {
  display: flex;
  align-items: center;
  flex-basis: 80%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbw1BEy5Fj .item-left {
    flex-basis: 70%;
  }
}
@media (max-width: 991px) {
  .cid-vbw1BEy5Fj .item-left {
    flex-basis: 100%;
    flex-wrap: wrap;
  }
}
.cid-vbw1BEy5Fj .item-right {
  flex-basis: 20%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbw1BEy5Fj .item-right {
    flex-basis: 30%;
  }
}
@media (max-width: 991px) {
  .cid-vbw1BEy5Fj .item-right {
    flex-basis: 100%;
  }
}
.cid-vbw1BEy5Fj .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-vbw1BEy5Fj .item-img {
    max-width: 250px;
  }
}
.cid-vbw1BEy5Fj .item-img img {
  width: 100%;
  aspect-ratio: 1.49700599;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-vbw1BEy5Fj .item-img:hover img {
  transform: scale(1.05);
}
.cid-vbw1BEy5Fj .card-box {
  padding-left: 30px;
}
@media (max-width: 1199px) {
  .cid-vbw1BEy5Fj .card-box {
    padding-left: 20px;
    flex-basis: 50%;
  }
}
@media (max-width: 991px) {
  .cid-vbw1BEy5Fj .card-box {
    padding-left: 0;
    padding-top: 25px;
    flex-basis: 100%;
  }
}
.cid-vbw1BEy5Fj .label-container {
  padding: 3px 8px;
  border-radius: 20px;
  width: fit-content;
  background-color: #434a51;
  margin-bottom: 10px;
}
.cid-vbw1BEy5Fj .label-text {
  color: #C4CFDE;
  margin-bottom: 0;
}
.cid-vbw1BEy5Fj .card-title {
  color: #C4CFDE;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-vbw1BEy5Fj .card-title {
    margin-bottom: 10px;
  }
}
.cid-vbw1BEy5Fj .card-subtitle {
  color: #C4CFDE;
  margin-bottom: 7px;
}
.cid-vbw1BEy5Fj .card-text {
  color: #000000;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-vbw1BEy5Fj .mbr-section-btn {
    margin-top: 10px;
    text-align: left !important;
  }
}
.cid-vbGpoYGlCP {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-vbGpoYGlCP section {
  position: relative;
}
.cid-vbGpoYGlCP h4 {
  margin: 0;
}
.cid-vbGpoYGlCP img {
  height: 100px;
  padding-rigth: 8px;
}
.cid-vbGpoYGlCP a {
  font-weight: 300;
}
.cid-vbGpoYGlCP .img1 {
  color: #f9652f;
}
.cid-vbGpoYGlCP .img2 {
  color: #f9652f;
}
.cid-vbGpoYGlCP .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #f9652f;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-vbGpoYGlCP .media-wrap {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-vbGpoYGlCP .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-vbGpoYGlCP .item,
.cid-vbGpoYGlCP .link {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-vbGpoYGlCP .item h4,
.cid-vbGpoYGlCP .link h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-vbGpoYGlCP .link {
  border-bottom: 1px solid #4a535e;
}
@media (max-width: 767px) {
  .cid-vbGpoYGlCP .item {
    justify-content: center;
  }
}
.cid-vbGpoYGlCP .item-title {
  color: #ffffff;
  text-align: left;
}
.cid-vbGpoYGlCP .text1 {
  text-align: left;
}
.cid-vbGpoYGlCP .link-title {
  text-align: left;
}
.cid-vbmPj5W7ih {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-vbmPj5W7ih .mbr-text {
  color: #f6f6ef;
}
.cid-vbmRVxjKa4 .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vbmRVxjKa4 .display-2 {
  font-size: 2rem;
}
@media (max-width: 992px) {
  .cid-vbmRVxjKa4 .icons-menu {
    padding: 1rem 0 !important;
  }
}
.cid-vbmRVxjKa4 .container {
  max-width: 1800px;
  display: flex;
  margin: auto;
}
.cid-vbmRVxjKa4 .navbar {
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  min-height: 77px;
  transition: all 0.3s;
  background: #fe7501;
}
.cid-vbmRVxjKa4 .navbar.opened {
  transition: all 0.3s;
}
.cid-vbmRVxjKa4 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vbmRVxjKa4 .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-vbmRVxjKa4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vbmRVxjKa4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vbmRVxjKa4 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.6rem);
  }
}
.cid-vbmRVxjKa4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vbmRVxjKa4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vbmRVxjKa4 .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: 55%;
}
.cid-vbmRVxjKa4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vbmRVxjKa4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vbmRVxjKa4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vbmRVxjKa4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vbmRVxjKa4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vbmRVxjKa4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vbmRVxjKa4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vbmRVxjKa4 .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: 55%;
  }
  .cid-vbmRVxjKa4 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-vbmRVxjKa4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vbmRVxjKa4 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vbmRVxjKa4 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vbmRVxjKa4 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-vbmRVxjKa4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vbmRVxjKa4 .navbar.navbar-short {
  background: #fe7501 !important;
  min-height: 60px;
}
.cid-vbmRVxjKa4 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-vbmRVxjKa4 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-vbmRVxjKa4 .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: fit-content;
  transition: all 0.3s;
}
.cid-vbmRVxjKa4 .nav-link:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-vbmRVxjKa4 .nav-link:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}
.cid-vbmRVxjKa4 .dropdown-menu {
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}
.cid-vbmRVxjKa4 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.2em 1em !important;
}
.cid-vbmRVxjKa4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vbmRVxjKa4 .mbr-iconfont {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vbmRVxjKa4 .navbar-caption {
  padding-right: 4rem;
}
.cid-vbmRVxjKa4 .navbar-nav {
  justify-content: center;
  width: -webkit-fill-available;
}
.cid-vbmRVxjKa4 .dropdown-menu,
.cid-vbmRVxjKa4 .navbar.opened {
  background: #fe7501 !important;
}
.cid-vbmRVxjKa4 .nav-item:focus,
.cid-vbmRVxjKa4 .nav-link:focus {
  outline: none;
}
.cid-vbmRVxjKa4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vbmRVxjKa4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vbmRVxjKa4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-vbmRVxjKa4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vbmRVxjKa4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vbmRVxjKa4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vbmRVxjKa4 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vbmRVxjKa4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vbmRVxjKa4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vbmRVxjKa4 .dropdown-item.active,
.cid-vbmRVxjKa4 .dropdown-item:active {
  background-color: transparent;
}
.cid-vbmRVxjKa4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vbmRVxjKa4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vbmRVxjKa4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vbmRVxjKa4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fe7501;
}
.cid-vbmRVxjKa4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vbmRVxjKa4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vbmRVxjKa4 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-vbmRVxjKa4 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vbmRVxjKa4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-vbmRVxjKa4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vbmRVxjKa4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vbmRVxjKa4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vbmRVxjKa4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vbmRVxjKa4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vbmRVxjKa4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vbmRVxjKa4 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vbmRVxjKa4 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vbmRVxjKa4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vbmRVxjKa4 .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-vbmRVxjKa4 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vbmRVxjKa4 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  min-width: 160px;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-vbmRVxjKa4 .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vbmRVxjKa4 .navbar {
    height: 77px;
  }
  .cid-vbmRVxjKa4 .navbar.opened {
    height: auto;
  }
  .cid-vbmRVxjKa4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vbmRVzeiMe {
  background-image: url("../../../assets/images/instalacao-hidraulica-1920x1080.jpg");
}
.cid-vbmRVzeiMe .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbmRVzeiMe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbmRVzeiMe .mbr-section-title {
  color: #e29d35;
  text-shadow: 2px 3px 5px rgba(0, 0, 0, 0.6);
}
.cid-vbmRVzeiMe .mbr-text {
  color: #FFFFFF;
  margin-top: 20px;
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
}
.cid-vbmRVzeiMe .mbr-section-btn {
  margin-top: 30px;
}
.cid-vbmRVzeiMe .mbr-text,
.cid-vbmRVzeiMe .mbr-section-btn {
  text-align: center;
}
.cid-vbuKLDmBPG {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: #ffffff;
}
.cid-vbuKLDmBPG .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbuKLDmBPG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-vbuKLDmBPG .container {
    padding: 0 26px;
  }
}
.cid-vbuKLDmBPG .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 768px) {
  .cid-vbuKLDmBPG .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-vbuKLDmBPG .embla__slide a {
  display: block;
  width: 100%;
}
.cid-vbuKLDmBPG .embla__slide a .card-wrap .item-wrapper .image-wrap img {
  height: 156px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vbuKLDmBPG .embla__slide a .card-wrap .item-wrapper .image-wrap img {
    height: 156px;
  }
}
.cid-vbuKLDmBPG .embla__button--next,
.cid-vbuKLDmBPG .embla__button--prev {
  display: flex;
}
.cid-vbuKLDmBPG .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 50px;
  background-color: transparent;
  color: #ffffff;
  border: none;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-vbuKLDmBPG .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-vbuKLDmBPG .embla__button:hover {
  background: transparent;
  color: #ffffff;
}
.cid-vbuKLDmBPG .embla__button.embla__button--prev {
  left: 0;
  margin-left: 60px;
}
@media (max-width: 992px) {
  .cid-vbuKLDmBPG .embla__button.embla__button--prev {
    margin-left: 26px;
  }
}
.cid-vbuKLDmBPG .embla__button.embla__button--next {
  right: 0;
  margin-right: 60px;
}
@media (max-width: 992px) {
  .cid-vbuKLDmBPG .embla__button.embla__button--next {
    margin-right: 26px;
  }
}
.cid-vbuKLDmBPG .embla {
  position: relative;
  width: 100%;
}
.cid-vbuKLDmBPG .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-vbuKLDmBPG .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vbuKLDmBPG .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vbuKLDmBPG .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vbGXk2oMQZ {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vbmRVA6SZs {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vbmRVA6SZs .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbmRVA6SZs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbmRVA6SZs .content-wrapper {
  background: #efefef;
}
@media (max-width: 991px) {
  .cid-vbmRVA6SZs .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vbmRVA6SZs .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vbmRVA6SZs .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vbmRVA6SZs .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vbmRVA6SZs .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-vbmRVA6SZs .image-wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 50px 0 50px 0;
}
.cid-vbmSyrNWOc {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vbmSyrNWOc .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbmSyrNWOc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbmSyrNWOc .content-wrapper {
  background: #efefef;
}
@media (max-width: 991px) {
  .cid-vbmSyrNWOc .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vbmSyrNWOc .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vbmSyrNWOc .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vbmSyrNWOc .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vbmSyrNWOc .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-vbmSyrNWOc .image-wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 50px 0 50px 0;
}
.cid-vbmSFJKRmd {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vbmSFJKRmd .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbmSFJKRmd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbmSFJKRmd .content-wrapper {
  background: #efefef;
}
@media (max-width: 991px) {
  .cid-vbmSFJKRmd .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vbmSFJKRmd .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vbmSFJKRmd .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vbmSFJKRmd .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vbmSFJKRmd .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-vbmSFJKRmd .image-wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 50px 0 50px 0;
}
.cid-vbmSPwLzDY {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vbmSPwLzDY .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbmSPwLzDY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbmSPwLzDY .content-wrapper {
  background: #efefef;
}
@media (max-width: 991px) {
  .cid-vbmSPwLzDY .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vbmSPwLzDY .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vbmSPwLzDY .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vbmSPwLzDY .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vbmSPwLzDY .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-vbmSPwLzDY .image-wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 50px 0 50px 0;
}
.cid-vbmSXoeHxE {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vbmSXoeHxE .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbmSXoeHxE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbmSXoeHxE .content-wrapper {
  background: #efefef;
}
@media (max-width: 991px) {
  .cid-vbmSXoeHxE .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vbmSXoeHxE .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vbmSXoeHxE .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vbmSXoeHxE .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vbmSXoeHxE .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-vbmSXoeHxE .image-wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 50px 0 50px 0;
}
.cid-vbmTdhkVdh {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vbmTdhkVdh .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbmTdhkVdh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbmTdhkVdh .content-wrapper {
  background: #efefef;
}
@media (max-width: 991px) {
  .cid-vbmTdhkVdh .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vbmTdhkVdh .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vbmTdhkVdh .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vbmTdhkVdh .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vbmTdhkVdh .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-vbmTdhkVdh .image-wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 50px 0 50px 0;
}
.cid-vbmRVEo9Ei {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vbmRVEo9Ei .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbmRVEo9Ei .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbmRVEo9Ei .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-vbmRVEo9Ei .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-vbmRVEo9Ei .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vbmRVEo9Ei .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vbmRVEo9Ei .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vbmRVEo9Ei .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vbmRVEo9Ei .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-vbmRVEo9Ei .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-vbvYX8hSHA {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #efefef;
}
.cid-vbvYX8hSHA .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbvYX8hSHA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbvYX8hSHA .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  max-width: 100%;
}
@media (max-width: 768px) {
  .cid-vbvYX8hSHA .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-vbvYX8hSHA .embla__slide .slide-content {
  width: 100%;
}
.cid-vbvYX8hSHA .embla__slide .slide-content .item-wrapper .rating-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}
.cid-vbvYX8hSHA .embla__slide .slide-content .item-wrapper .rating-wrapper .rating-wrap {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.cid-vbvYX8hSHA .embla__slide .slide-content .item-wrapper .rating-wrapper .rating-wrap .mbr-star {
  margin-bottom: 0;
}
.cid-vbvYX8hSHA .embla__slide .slide-content .item-wrapper .item-text {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}
.cid-vbvYX8hSHA .embla__slide .slide-content .item-wrapper .person-wrapper .person-wrap {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.cid-vbvYX8hSHA .embla__slide .slide-content .item-wrapper .person-wrapper .person-wrap .item-img img {
  display: inline-flex;
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 100% !important;
  object-fit: cover;
}
.cid-vbvYX8hSHA .embla__slide .slide-content .item-wrapper .person-wrapper .person-wrap .name-wrapper {
  position: relative;
  z-index: 1;
}
.cid-vbvYX8hSHA .embla__slide .slide-content .item-wrapper .person-wrapper .person-wrap .name-wrapper .item-name {
  margin-bottom: 0;
}
.cid-vbvYX8hSHA .embla__slide .slide-content .item-wrapper .person-wrapper .person-wrap .name-wrapper .item-role {
  margin-bottom: 0;
}
.cid-vbvYX8hSHA .embla__button--next,
.cid-vbvYX8hSHA .embla__button--prev {
  display: flex;
}
.cid-vbvYX8hSHA .embla__button {
  bottom: 47%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  background-color: #2b2b2b !important;
  color: #ffffff !important;
  border: none !important;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
@media (max-width: 992px) {
  .cid-vbvYX8hSHA .embla__button {
    bottom: 0;
  }
}
.cid-vbvYX8hSHA .embla__button:hover {
  background-color: #f9652f !important;
  color: #ffffff !important;
}
.cid-vbvYX8hSHA .embla__button:disabled {
  opacity: .5 !important;
  background-color: #2b2b2b !important;
  color: #ffffff !important;
}
.cid-vbvYX8hSHA .embla__button.embla__button--prev {
  left: 0;
}
.cid-vbvYX8hSHA .embla__button.embla__button--next {
  right: 0;
}
.cid-vbvYX8hSHA .embla {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 10%;
}
@media (max-width: 992px) {
  .cid-vbvYX8hSHA .embla {
    padding: 0;
    padding-bottom: 4rem;
  }
}
.cid-vbvYX8hSHA .embla__viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0;
}
@media (max-width: 768px) {
  .cid-vbvYX8hSHA .embla__viewport {
    padding: 0;
  }
}
.cid-vbvYX8hSHA .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vbvYX8hSHA .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vbvYX8hSHA .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vbvYX8hSHA .item-menu-overlay {
  opacity: 0 !important;
}
.cid-vbvYX8hSHA .item-text {
  color: #000000;
}
.cid-vbvYX8hSHA .item-name {
  color: #ffffff;
}
.cid-vbvYX8hSHA .item-role {
  color: #1f1f1f;
}
.cid-vbvYX8hSHA .mbr-star {
  color: #f5b614;
}
.cid-vbvYX8hSHA .item-name,
.cid-vbvYX8hSHA .person-wrapper {
  color: #000000;
}
.cid-vbw2nJ8vM3 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vbw2nJ8vM3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbw2nJ8vM3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbw2nJ8vM3 .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1599px) {
  .cid-vbw2nJ8vM3 .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cid-vbw2nJ8vM3 .mbr-section-head {
  width: 100%;
  margin-bottom: 20px;
}
.cid-vbw2nJ8vM3 .mbr-section-title {
  color: #f9652f;
}
@media (max-width: 767px) {
  .cid-vbw2nJ8vM3 .mbr-section-title {
    text-align: center;
  }
}
.cid-vbw2nJ8vM3 .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-vbw2nJ8vM3 .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-vbw2nJ8vM3 .item {
  margin: 40px auto 0;
  width: 90% !important;
}
.cid-vbw2nJ8vM3 .item-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  width: 100%;
  padding: 30px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #d7d7d7, #fafafa);
}
@media (max-width: 991px) {
  .cid-vbw2nJ8vM3 .item-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-vbw2nJ8vM3 .item-wrapper {
    padding: 20px;
  }
}
.cid-vbw2nJ8vM3 .item-left {
  display: flex;
  align-items: center;
  flex-basis: 80%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbw2nJ8vM3 .item-left {
    flex-basis: 70%;
  }
}
@media (max-width: 991px) {
  .cid-vbw2nJ8vM3 .item-left {
    flex-basis: 100%;
    flex-wrap: wrap;
  }
}
.cid-vbw2nJ8vM3 .item-right {
  flex-basis: 20%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbw2nJ8vM3 .item-right {
    flex-basis: 30%;
  }
}
@media (max-width: 991px) {
  .cid-vbw2nJ8vM3 .item-right {
    flex-basis: 100%;
  }
}
.cid-vbw2nJ8vM3 .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-vbw2nJ8vM3 .item-img {
    max-width: 250px;
  }
}
.cid-vbw2nJ8vM3 .item-img img {
  width: 100%;
  aspect-ratio: 1.49700599;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-vbw2nJ8vM3 .item-img:hover img {
  transform: scale(1.05);
}
.cid-vbw2nJ8vM3 .card-box {
  padding-left: 30px;
}
@media (max-width: 1199px) {
  .cid-vbw2nJ8vM3 .card-box {
    padding-left: 20px;
    flex-basis: 50%;
  }
}
@media (max-width: 991px) {
  .cid-vbw2nJ8vM3 .card-box {
    padding-left: 0;
    padding-top: 25px;
    flex-basis: 100%;
  }
}
.cid-vbw2nJ8vM3 .label-container {
  padding: 3px 8px;
  border-radius: 20px;
  width: fit-content;
  background-color: #434a51;
  margin-bottom: 10px;
}
.cid-vbw2nJ8vM3 .label-text {
  color: #C4CFDE;
  margin-bottom: 0;
}
.cid-vbw2nJ8vM3 .card-title {
  color: #C4CFDE;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-vbw2nJ8vM3 .card-title {
    margin-bottom: 10px;
  }
}
.cid-vbw2nJ8vM3 .card-subtitle {
  color: #C4CFDE;
  margin-bottom: 7px;
}
.cid-vbw2nJ8vM3 .card-text {
  color: #000000;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-vbw2nJ8vM3 .mbr-section-btn {
    margin-top: 10px;
    text-align: left !important;
  }
}
.cid-vbw2omvLrp {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vbw2omvLrp .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbw2omvLrp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbw2omvLrp .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1599px) {
  .cid-vbw2omvLrp .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cid-vbw2omvLrp .mbr-section-head {
  width: 100%;
  margin-bottom: 20px;
}
.cid-vbw2omvLrp .mbr-section-title {
  color: #f9652f;
}
@media (max-width: 767px) {
  .cid-vbw2omvLrp .mbr-section-title {
    text-align: center;
  }
}
.cid-vbw2omvLrp .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-vbw2omvLrp .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-vbw2omvLrp .item {
  margin: 40px auto 0;
  width: 90% !important;
}
.cid-vbw2omvLrp .item-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  width: 100%;
  padding: 30px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #d7d7d7, #fafafa);
}
@media (max-width: 991px) {
  .cid-vbw2omvLrp .item-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-vbw2omvLrp .item-wrapper {
    padding: 20px;
  }
}
.cid-vbw2omvLrp .item-left {
  display: flex;
  align-items: center;
  flex-basis: 80%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbw2omvLrp .item-left {
    flex-basis: 70%;
  }
}
@media (max-width: 991px) {
  .cid-vbw2omvLrp .item-left {
    flex-basis: 100%;
    flex-wrap: wrap;
  }
}
.cid-vbw2omvLrp .item-right {
  flex-basis: 20%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbw2omvLrp .item-right {
    flex-basis: 30%;
  }
}
@media (max-width: 991px) {
  .cid-vbw2omvLrp .item-right {
    flex-basis: 100%;
  }
}
.cid-vbw2omvLrp .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-vbw2omvLrp .item-img {
    max-width: 250px;
  }
}
.cid-vbw2omvLrp .item-img img {
  width: 100%;
  aspect-ratio: 1.49700599;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-vbw2omvLrp .item-img:hover img {
  transform: scale(1.05);
}
.cid-vbw2omvLrp .card-box {
  padding-left: 30px;
}
@media (max-width: 1199px) {
  .cid-vbw2omvLrp .card-box {
    padding-left: 20px;
    flex-basis: 50%;
  }
}
@media (max-width: 991px) {
  .cid-vbw2omvLrp .card-box {
    padding-left: 0;
    padding-top: 25px;
    flex-basis: 100%;
  }
}
.cid-vbw2omvLrp .label-container {
  padding: 3px 8px;
  border-radius: 20px;
  width: fit-content;
  background-color: #434a51;
  margin-bottom: 10px;
}
.cid-vbw2omvLrp .label-text {
  color: #C4CFDE;
  margin-bottom: 0;
}
.cid-vbw2omvLrp .card-title {
  color: #C4CFDE;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-vbw2omvLrp .card-title {
    margin-bottom: 10px;
  }
}
.cid-vbw2omvLrp .card-subtitle {
  color: #C4CFDE;
  margin-bottom: 7px;
}
.cid-vbw2omvLrp .card-text {
  color: #000000;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-vbw2omvLrp .mbr-section-btn {
    margin-top: 10px;
    text-align: left !important;
  }
}
.cid-vbw2oM4qqI {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vbw2oM4qqI .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbw2oM4qqI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbw2oM4qqI .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1599px) {
  .cid-vbw2oM4qqI .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cid-vbw2oM4qqI .mbr-section-head {
  width: 100%;
  margin-bottom: 20px;
}
.cid-vbw2oM4qqI .mbr-section-title {
  color: #f9652f;
}
@media (max-width: 767px) {
  .cid-vbw2oM4qqI .mbr-section-title {
    text-align: center;
  }
}
.cid-vbw2oM4qqI .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-vbw2oM4qqI .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-vbw2oM4qqI .item {
  margin: 40px auto 0;
  width: 90% !important;
}
.cid-vbw2oM4qqI .item-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  width: 100%;
  padding: 30px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #d7d7d7, #fafafa);
}
@media (max-width: 991px) {
  .cid-vbw2oM4qqI .item-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-vbw2oM4qqI .item-wrapper {
    padding: 20px;
  }
}
.cid-vbw2oM4qqI .item-left {
  display: flex;
  align-items: center;
  flex-basis: 80%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbw2oM4qqI .item-left {
    flex-basis: 70%;
  }
}
@media (max-width: 991px) {
  .cid-vbw2oM4qqI .item-left {
    flex-basis: 100%;
    flex-wrap: wrap;
  }
}
.cid-vbw2oM4qqI .item-right {
  flex-basis: 20%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbw2oM4qqI .item-right {
    flex-basis: 30%;
  }
}
@media (max-width: 991px) {
  .cid-vbw2oM4qqI .item-right {
    flex-basis: 100%;
  }
}
.cid-vbw2oM4qqI .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-vbw2oM4qqI .item-img {
    max-width: 250px;
  }
}
.cid-vbw2oM4qqI .item-img img {
  width: 100%;
  aspect-ratio: 1.49700599;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-vbw2oM4qqI .item-img:hover img {
  transform: scale(1.05);
}
.cid-vbw2oM4qqI .card-box {
  padding-left: 30px;
}
@media (max-width: 1199px) {
  .cid-vbw2oM4qqI .card-box {
    padding-left: 20px;
    flex-basis: 50%;
  }
}
@media (max-width: 991px) {
  .cid-vbw2oM4qqI .card-box {
    padding-left: 0;
    padding-top: 25px;
    flex-basis: 100%;
  }
}
.cid-vbw2oM4qqI .label-container {
  padding: 3px 8px;
  border-radius: 20px;
  width: fit-content;
  background-color: #434a51;
  margin-bottom: 10px;
}
.cid-vbw2oM4qqI .label-text {
  color: #C4CFDE;
  margin-bottom: 0;
}
.cid-vbw2oM4qqI .card-title {
  color: #C4CFDE;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-vbw2oM4qqI .card-title {
    margin-bottom: 10px;
  }
}
.cid-vbw2oM4qqI .card-subtitle {
  color: #C4CFDE;
  margin-bottom: 7px;
}
.cid-vbw2oM4qqI .card-text {
  color: #000000;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-vbw2oM4qqI .mbr-section-btn {
    margin-top: 10px;
    text-align: left !important;
  }
}
.cid-vbw2pnDLXG {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vbw2pnDLXG .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbw2pnDLXG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbw2pnDLXG .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1599px) {
  .cid-vbw2pnDLXG .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cid-vbw2pnDLXG .mbr-section-head {
  width: 100%;
  margin-bottom: 20px;
}
.cid-vbw2pnDLXG .mbr-section-title {
  color: #f9652f;
}
@media (max-width: 767px) {
  .cid-vbw2pnDLXG .mbr-section-title {
    text-align: center;
  }
}
.cid-vbw2pnDLXG .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-vbw2pnDLXG .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-vbw2pnDLXG .item {
  margin: 40px auto 0;
  width: 90% !important;
}
.cid-vbw2pnDLXG .item-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  width: 100%;
  padding: 30px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #d7d7d7, #fafafa);
}
@media (max-width: 991px) {
  .cid-vbw2pnDLXG .item-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-vbw2pnDLXG .item-wrapper {
    padding: 20px;
  }
}
.cid-vbw2pnDLXG .item-left {
  display: flex;
  align-items: center;
  flex-basis: 80%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbw2pnDLXG .item-left {
    flex-basis: 70%;
  }
}
@media (max-width: 991px) {
  .cid-vbw2pnDLXG .item-left {
    flex-basis: 100%;
    flex-wrap: wrap;
  }
}
.cid-vbw2pnDLXG .item-right {
  flex-basis: 20%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbw2pnDLXG .item-right {
    flex-basis: 30%;
  }
}
@media (max-width: 991px) {
  .cid-vbw2pnDLXG .item-right {
    flex-basis: 100%;
  }
}
.cid-vbw2pnDLXG .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-vbw2pnDLXG .item-img {
    max-width: 250px;
  }
}
.cid-vbw2pnDLXG .item-img img {
  width: 100%;
  aspect-ratio: 1.49700599;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-vbw2pnDLXG .item-img:hover img {
  transform: scale(1.05);
}
.cid-vbw2pnDLXG .card-box {
  padding-left: 30px;
}
@media (max-width: 1199px) {
  .cid-vbw2pnDLXG .card-box {
    padding-left: 20px;
    flex-basis: 50%;
  }
}
@media (max-width: 991px) {
  .cid-vbw2pnDLXG .card-box {
    padding-left: 0;
    padding-top: 25px;
    flex-basis: 100%;
  }
}
.cid-vbw2pnDLXG .label-container {
  padding: 3px 8px;
  border-radius: 20px;
  width: fit-content;
  background-color: #434a51;
  margin-bottom: 10px;
}
.cid-vbw2pnDLXG .label-text {
  color: #C4CFDE;
  margin-bottom: 0;
}
.cid-vbw2pnDLXG .card-title {
  color: #C4CFDE;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-vbw2pnDLXG .card-title {
    margin-bottom: 10px;
  }
}
.cid-vbw2pnDLXG .card-subtitle {
  color: #C4CFDE;
  margin-bottom: 7px;
}
.cid-vbw2pnDLXG .card-text {
  color: #000000;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-vbw2pnDLXG .mbr-section-btn {
    margin-top: 10px;
    text-align: left !important;
  }
}
.cid-vbGpLRaWTr {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-vbGpLRaWTr section {
  position: relative;
}
.cid-vbGpLRaWTr h4 {
  margin: 0;
}
.cid-vbGpLRaWTr img {
  height: 100px;
  padding-rigth: 8px;
}
.cid-vbGpLRaWTr a {
  font-weight: 300;
}
.cid-vbGpLRaWTr .img1 {
  color: #f9652f;
}
.cid-vbGpLRaWTr .img2 {
  color: #f9652f;
}
.cid-vbGpLRaWTr .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #f9652f;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-vbGpLRaWTr .media-wrap {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-vbGpLRaWTr .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-vbGpLRaWTr .item,
.cid-vbGpLRaWTr .link {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-vbGpLRaWTr .item h4,
.cid-vbGpLRaWTr .link h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-vbGpLRaWTr .link {
  border-bottom: 1px solid #4a535e;
}
@media (max-width: 767px) {
  .cid-vbGpLRaWTr .item {
    justify-content: center;
  }
}
.cid-vbGpLRaWTr .item-title {
  color: #ffffff;
  text-align: left;
}
.cid-vbGpLRaWTr .text1 {
  text-align: left;
}
.cid-vbGpLRaWTr .link-title {
  text-align: left;
}
.cid-vbmRVGERxV {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-vbmRVGERxV .mbr-text {
  color: #f6f6ef;
}
.cid-vbmTChl4F3 .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vbmTChl4F3 .display-2 {
  font-size: 2rem;
}
@media (max-width: 992px) {
  .cid-vbmTChl4F3 .icons-menu {
    padding: 1rem 0 !important;
  }
}
.cid-vbmTChl4F3 .container {
  max-width: 1800px;
  display: flex;
  margin: auto;
}
.cid-vbmTChl4F3 .navbar {
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  min-height: 77px;
  transition: all 0.3s;
  background: #fe7501;
}
.cid-vbmTChl4F3 .navbar.opened {
  transition: all 0.3s;
}
.cid-vbmTChl4F3 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vbmTChl4F3 .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-vbmTChl4F3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vbmTChl4F3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vbmTChl4F3 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.6rem);
  }
}
.cid-vbmTChl4F3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vbmTChl4F3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vbmTChl4F3 .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: 55%;
}
.cid-vbmTChl4F3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vbmTChl4F3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vbmTChl4F3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vbmTChl4F3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vbmTChl4F3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vbmTChl4F3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vbmTChl4F3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vbmTChl4F3 .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: 55%;
  }
  .cid-vbmTChl4F3 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-vbmTChl4F3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vbmTChl4F3 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vbmTChl4F3 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vbmTChl4F3 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-vbmTChl4F3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vbmTChl4F3 .navbar.navbar-short {
  background: #fe7501 !important;
  min-height: 60px;
}
.cid-vbmTChl4F3 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-vbmTChl4F3 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-vbmTChl4F3 .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: fit-content;
  transition: all 0.3s;
}
.cid-vbmTChl4F3 .nav-link:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-vbmTChl4F3 .nav-link:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}
.cid-vbmTChl4F3 .dropdown-menu {
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}
.cid-vbmTChl4F3 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.2em 1em !important;
}
.cid-vbmTChl4F3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vbmTChl4F3 .mbr-iconfont {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vbmTChl4F3 .navbar-caption {
  padding-right: 4rem;
}
.cid-vbmTChl4F3 .navbar-nav {
  justify-content: center;
  width: -webkit-fill-available;
}
.cid-vbmTChl4F3 .dropdown-menu,
.cid-vbmTChl4F3 .navbar.opened {
  background: #fe7501 !important;
}
.cid-vbmTChl4F3 .nav-item:focus,
.cid-vbmTChl4F3 .nav-link:focus {
  outline: none;
}
.cid-vbmTChl4F3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vbmTChl4F3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vbmTChl4F3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-vbmTChl4F3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vbmTChl4F3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vbmTChl4F3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vbmTChl4F3 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vbmTChl4F3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vbmTChl4F3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vbmTChl4F3 .dropdown-item.active,
.cid-vbmTChl4F3 .dropdown-item:active {
  background-color: transparent;
}
.cid-vbmTChl4F3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vbmTChl4F3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vbmTChl4F3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vbmTChl4F3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fe7501;
}
.cid-vbmTChl4F3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vbmTChl4F3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vbmTChl4F3 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-vbmTChl4F3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vbmTChl4F3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-vbmTChl4F3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vbmTChl4F3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vbmTChl4F3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vbmTChl4F3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vbmTChl4F3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vbmTChl4F3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vbmTChl4F3 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vbmTChl4F3 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vbmTChl4F3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vbmTChl4F3 .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-vbmTChl4F3 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vbmTChl4F3 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  min-width: 160px;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-vbmTChl4F3 .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vbmTChl4F3 .navbar {
    height: 77px;
  }
  .cid-vbmTChl4F3 .navbar.opened {
    height: auto;
  }
  .cid-vbmTChl4F3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vbmTCipBBd {
  background-image: url("../../../assets/images/material-energia-solar-1920x1080.jpg");
}
.cid-vbmTCipBBd .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbmTCipBBd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbmTCipBBd .mbr-section-title {
  color: #e29d35;
  text-shadow: 2px 3px 5px rgba(0, 0, 0, 0.6);
}
.cid-vbmTCipBBd .mbr-text {
  color: #FFFFFF;
  margin-top: 20px;
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
}
.cid-vbmTCipBBd .mbr-section-btn {
  margin-top: 30px;
}
.cid-vbmTCipBBd .mbr-text,
.cid-vbmTCipBBd .mbr-section-btn {
  text-align: center;
}
.cid-vbuZSwkcwI {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: #ffffff;
}
.cid-vbuZSwkcwI .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbuZSwkcwI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-vbuZSwkcwI .container {
    padding: 0 26px;
  }
}
.cid-vbuZSwkcwI .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 768px) {
  .cid-vbuZSwkcwI .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-vbuZSwkcwI .embla__slide a {
  display: block;
  width: 100%;
}
.cid-vbuZSwkcwI .embla__slide a .card-wrap .item-wrapper .image-wrap img {
  height: 156px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vbuZSwkcwI .embla__slide a .card-wrap .item-wrapper .image-wrap img {
    height: 156px;
  }
}
.cid-vbuZSwkcwI .embla__button--next,
.cid-vbuZSwkcwI .embla__button--prev {
  display: flex;
}
.cid-vbuZSwkcwI .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 50px;
  background-color: transparent;
  color: #ffffff;
  border: none;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-vbuZSwkcwI .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-vbuZSwkcwI .embla__button:hover {
  background: transparent;
  color: #ffffff;
}
.cid-vbuZSwkcwI .embla__button.embla__button--prev {
  left: 0;
  margin-left: 60px;
}
@media (max-width: 992px) {
  .cid-vbuZSwkcwI .embla__button.embla__button--prev {
    margin-left: 26px;
  }
}
.cid-vbuZSwkcwI .embla__button.embla__button--next {
  right: 0;
  margin-right: 60px;
}
@media (max-width: 992px) {
  .cid-vbuZSwkcwI .embla__button.embla__button--next {
    margin-right: 26px;
  }
}
.cid-vbuZSwkcwI .embla {
  position: relative;
  width: 100%;
}
.cid-vbuZSwkcwI .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-vbuZSwkcwI .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vbuZSwkcwI .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vbuZSwkcwI .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vbGXxXeKMU {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vbmTCj9KWn {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vbmTCj9KWn .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbmTCj9KWn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbmTCj9KWn .content-wrapper {
  background: #efefef;
}
@media (max-width: 991px) {
  .cid-vbmTCj9KWn .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vbmTCj9KWn .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vbmTCj9KWn .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vbmTCj9KWn .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vbmTCj9KWn .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-vbmTCj9KWn .image-wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 50px 0 50px 0;
}
.cid-vbmV3wvQqD {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vbmV3wvQqD .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbmV3wvQqD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbmV3wvQqD .content-wrapper {
  background: #efefef;
}
@media (max-width: 991px) {
  .cid-vbmV3wvQqD .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vbmV3wvQqD .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vbmV3wvQqD .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vbmV3wvQqD .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vbmV3wvQqD .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-vbmV3wvQqD .image-wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 50px 0 50px 0;
}
.cid-vbmVhNnFrq {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vbmVhNnFrq .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbmVhNnFrq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbmVhNnFrq .content-wrapper {
  background: #efefef;
}
@media (max-width: 991px) {
  .cid-vbmVhNnFrq .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vbmVhNnFrq .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vbmVhNnFrq .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vbmVhNnFrq .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vbmVhNnFrq .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-vbmVhNnFrq .image-wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 50px 0 50px 0;
}
.cid-vbmVsltIM8 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vbmVsltIM8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbmVsltIM8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbmVsltIM8 .content-wrapper {
  background: #efefef;
}
@media (max-width: 991px) {
  .cid-vbmVsltIM8 .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vbmVsltIM8 .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vbmVsltIM8 .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vbmVsltIM8 .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vbmVsltIM8 .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-vbmVsltIM8 .image-wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 50px 0 50px 0;
}
.cid-vbmVCsw8Iv {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vbmVCsw8Iv .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbmVCsw8Iv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbmVCsw8Iv .content-wrapper {
  background: #efefef;
}
@media (max-width: 991px) {
  .cid-vbmVCsw8Iv .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vbmVCsw8Iv .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vbmVCsw8Iv .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vbmVCsw8Iv .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vbmVCsw8Iv .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-vbmVCsw8Iv .image-wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 50px 0 50px 0;
}
.cid-vbmVP5C4VX {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vbmVP5C4VX .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbmVP5C4VX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbmVP5C4VX .content-wrapper {
  background: #efefef;
}
@media (max-width: 991px) {
  .cid-vbmVP5C4VX .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vbmVP5C4VX .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vbmVP5C4VX .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vbmVP5C4VX .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vbmVP5C4VX .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-vbmVP5C4VX .image-wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 50px 0 50px 0;
}
.cid-vbmTCo5Y61 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vbmTCo5Y61 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbmTCo5Y61 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbmTCo5Y61 .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-vbmTCo5Y61 .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-vbmTCo5Y61 .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vbmTCo5Y61 .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vbmTCo5Y61 .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vbmTCo5Y61 .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vbmTCo5Y61 .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-vbmTCo5Y61 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-vbvYZjwiLL {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #efefef;
}
.cid-vbvYZjwiLL .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbvYZjwiLL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbvYZjwiLL .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  max-width: 100%;
}
@media (max-width: 768px) {
  .cid-vbvYZjwiLL .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-vbvYZjwiLL .embla__slide .slide-content {
  width: 100%;
}
.cid-vbvYZjwiLL .embla__slide .slide-content .item-wrapper .rating-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}
.cid-vbvYZjwiLL .embla__slide .slide-content .item-wrapper .rating-wrapper .rating-wrap {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.cid-vbvYZjwiLL .embla__slide .slide-content .item-wrapper .rating-wrapper .rating-wrap .mbr-star {
  margin-bottom: 0;
}
.cid-vbvYZjwiLL .embla__slide .slide-content .item-wrapper .item-text {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}
.cid-vbvYZjwiLL .embla__slide .slide-content .item-wrapper .person-wrapper .person-wrap {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.cid-vbvYZjwiLL .embla__slide .slide-content .item-wrapper .person-wrapper .person-wrap .item-img img {
  display: inline-flex;
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 100% !important;
  object-fit: cover;
}
.cid-vbvYZjwiLL .embla__slide .slide-content .item-wrapper .person-wrapper .person-wrap .name-wrapper {
  position: relative;
  z-index: 1;
}
.cid-vbvYZjwiLL .embla__slide .slide-content .item-wrapper .person-wrapper .person-wrap .name-wrapper .item-name {
  margin-bottom: 0;
}
.cid-vbvYZjwiLL .embla__slide .slide-content .item-wrapper .person-wrapper .person-wrap .name-wrapper .item-role {
  margin-bottom: 0;
}
.cid-vbvYZjwiLL .embla__button--next,
.cid-vbvYZjwiLL .embla__button--prev {
  display: flex;
}
.cid-vbvYZjwiLL .embla__button {
  bottom: 47%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  background-color: #2b2b2b !important;
  color: #ffffff !important;
  border: none !important;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
@media (max-width: 992px) {
  .cid-vbvYZjwiLL .embla__button {
    bottom: 0;
  }
}
.cid-vbvYZjwiLL .embla__button:hover {
  background-color: #f9652f !important;
  color: #ffffff !important;
}
.cid-vbvYZjwiLL .embla__button:disabled {
  opacity: .5 !important;
  background-color: #2b2b2b !important;
  color: #ffffff !important;
}
.cid-vbvYZjwiLL .embla__button.embla__button--prev {
  left: 0;
}
.cid-vbvYZjwiLL .embla__button.embla__button--next {
  right: 0;
}
.cid-vbvYZjwiLL .embla {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 10%;
}
@media (max-width: 992px) {
  .cid-vbvYZjwiLL .embla {
    padding: 0;
    padding-bottom: 4rem;
  }
}
.cid-vbvYZjwiLL .embla__viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0;
}
@media (max-width: 768px) {
  .cid-vbvYZjwiLL .embla__viewport {
    padding: 0;
  }
}
.cid-vbvYZjwiLL .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vbvYZjwiLL .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vbvYZjwiLL .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vbvYZjwiLL .item-menu-overlay {
  opacity: 0 !important;
}
.cid-vbvYZjwiLL .item-text {
  color: #000000;
}
.cid-vbvYZjwiLL .item-name {
  color: #ffffff;
}
.cid-vbvYZjwiLL .item-role {
  color: #1f1f1f;
}
.cid-vbvYZjwiLL .mbr-star {
  color: #f5b614;
}
.cid-vbvYZjwiLL .item-name,
.cid-vbvYZjwiLL .person-wrapper {
  color: #000000;
}
.cid-vbw4cg7cuZ {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vbw4cg7cuZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbw4cg7cuZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbw4cg7cuZ .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1599px) {
  .cid-vbw4cg7cuZ .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cid-vbw4cg7cuZ .mbr-section-head {
  width: 100%;
  margin-bottom: 20px;
}
.cid-vbw4cg7cuZ .mbr-section-title {
  color: #f9652f;
}
@media (max-width: 767px) {
  .cid-vbw4cg7cuZ .mbr-section-title {
    text-align: center;
  }
}
.cid-vbw4cg7cuZ .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-vbw4cg7cuZ .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-vbw4cg7cuZ .item {
  margin: 40px auto 0;
  width: 90% !important;
}
.cid-vbw4cg7cuZ .item-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  width: 100%;
  padding: 30px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #d7d7d7, #fafafa);
}
@media (max-width: 991px) {
  .cid-vbw4cg7cuZ .item-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-vbw4cg7cuZ .item-wrapper {
    padding: 20px;
  }
}
.cid-vbw4cg7cuZ .item-left {
  display: flex;
  align-items: center;
  flex-basis: 80%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbw4cg7cuZ .item-left {
    flex-basis: 70%;
  }
}
@media (max-width: 991px) {
  .cid-vbw4cg7cuZ .item-left {
    flex-basis: 100%;
    flex-wrap: wrap;
  }
}
.cid-vbw4cg7cuZ .item-right {
  flex-basis: 20%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbw4cg7cuZ .item-right {
    flex-basis: 30%;
  }
}
@media (max-width: 991px) {
  .cid-vbw4cg7cuZ .item-right {
    flex-basis: 100%;
  }
}
.cid-vbw4cg7cuZ .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-vbw4cg7cuZ .item-img {
    max-width: 250px;
  }
}
.cid-vbw4cg7cuZ .item-img img {
  width: 100%;
  aspect-ratio: 1.49700599;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-vbw4cg7cuZ .item-img:hover img {
  transform: scale(1.05);
}
.cid-vbw4cg7cuZ .card-box {
  padding-left: 30px;
}
@media (max-width: 1199px) {
  .cid-vbw4cg7cuZ .card-box {
    padding-left: 20px;
    flex-basis: 50%;
  }
}
@media (max-width: 991px) {
  .cid-vbw4cg7cuZ .card-box {
    padding-left: 0;
    padding-top: 25px;
    flex-basis: 100%;
  }
}
.cid-vbw4cg7cuZ .label-container {
  padding: 3px 8px;
  border-radius: 20px;
  width: fit-content;
  background-color: #434a51;
  margin-bottom: 10px;
}
.cid-vbw4cg7cuZ .label-text {
  color: #C4CFDE;
  margin-bottom: 0;
}
.cid-vbw4cg7cuZ .card-title {
  color: #C4CFDE;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-vbw4cg7cuZ .card-title {
    margin-bottom: 10px;
  }
}
.cid-vbw4cg7cuZ .card-subtitle {
  color: #C4CFDE;
  margin-bottom: 7px;
}
.cid-vbw4cg7cuZ .card-text {
  color: #000000;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-vbw4cg7cuZ .mbr-section-btn {
    margin-top: 10px;
    text-align: left !important;
  }
}
.cid-vbw4cK7q5g {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vbw4cK7q5g .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbw4cK7q5g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbw4cK7q5g .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1599px) {
  .cid-vbw4cK7q5g .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cid-vbw4cK7q5g .mbr-section-head {
  width: 100%;
  margin-bottom: 20px;
}
.cid-vbw4cK7q5g .mbr-section-title {
  color: #f9652f;
}
@media (max-width: 767px) {
  .cid-vbw4cK7q5g .mbr-section-title {
    text-align: center;
  }
}
.cid-vbw4cK7q5g .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-vbw4cK7q5g .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-vbw4cK7q5g .item {
  margin: 40px auto 0;
  width: 90% !important;
}
.cid-vbw4cK7q5g .item-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  width: 100%;
  padding: 30px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #d7d7d7, #fafafa);
}
@media (max-width: 991px) {
  .cid-vbw4cK7q5g .item-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-vbw4cK7q5g .item-wrapper {
    padding: 20px;
  }
}
.cid-vbw4cK7q5g .item-left {
  display: flex;
  align-items: center;
  flex-basis: 80%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbw4cK7q5g .item-left {
    flex-basis: 70%;
  }
}
@media (max-width: 991px) {
  .cid-vbw4cK7q5g .item-left {
    flex-basis: 100%;
    flex-wrap: wrap;
  }
}
.cid-vbw4cK7q5g .item-right {
  flex-basis: 20%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbw4cK7q5g .item-right {
    flex-basis: 30%;
  }
}
@media (max-width: 991px) {
  .cid-vbw4cK7q5g .item-right {
    flex-basis: 100%;
  }
}
.cid-vbw4cK7q5g .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-vbw4cK7q5g .item-img {
    max-width: 250px;
  }
}
.cid-vbw4cK7q5g .item-img img {
  width: 100%;
  aspect-ratio: 1.49700599;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-vbw4cK7q5g .item-img:hover img {
  transform: scale(1.05);
}
.cid-vbw4cK7q5g .card-box {
  padding-left: 30px;
}
@media (max-width: 1199px) {
  .cid-vbw4cK7q5g .card-box {
    padding-left: 20px;
    flex-basis: 50%;
  }
}
@media (max-width: 991px) {
  .cid-vbw4cK7q5g .card-box {
    padding-left: 0;
    padding-top: 25px;
    flex-basis: 100%;
  }
}
.cid-vbw4cK7q5g .label-container {
  padding: 3px 8px;
  border-radius: 20px;
  width: fit-content;
  background-color: #434a51;
  margin-bottom: 10px;
}
.cid-vbw4cK7q5g .label-text {
  color: #C4CFDE;
  margin-bottom: 0;
}
.cid-vbw4cK7q5g .card-title {
  color: #C4CFDE;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-vbw4cK7q5g .card-title {
    margin-bottom: 10px;
  }
}
.cid-vbw4cK7q5g .card-subtitle {
  color: #C4CFDE;
  margin-bottom: 7px;
}
.cid-vbw4cK7q5g .card-text {
  color: #000000;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-vbw4cK7q5g .mbr-section-btn {
    margin-top: 10px;
    text-align: left !important;
  }
}
.cid-vbw4dahGBJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vbw4dahGBJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbw4dahGBJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbw4dahGBJ .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1599px) {
  .cid-vbw4dahGBJ .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cid-vbw4dahGBJ .mbr-section-head {
  width: 100%;
  margin-bottom: 20px;
}
.cid-vbw4dahGBJ .mbr-section-title {
  color: #f9652f;
}
@media (max-width: 767px) {
  .cid-vbw4dahGBJ .mbr-section-title {
    text-align: center;
  }
}
.cid-vbw4dahGBJ .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-vbw4dahGBJ .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-vbw4dahGBJ .item {
  margin: 40px auto 0;
  width: 90% !important;
}
.cid-vbw4dahGBJ .item-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  width: 100%;
  padding: 30px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #d7d7d7, #fafafa);
}
@media (max-width: 991px) {
  .cid-vbw4dahGBJ .item-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-vbw4dahGBJ .item-wrapper {
    padding: 20px;
  }
}
.cid-vbw4dahGBJ .item-left {
  display: flex;
  align-items: center;
  flex-basis: 80%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbw4dahGBJ .item-left {
    flex-basis: 70%;
  }
}
@media (max-width: 991px) {
  .cid-vbw4dahGBJ .item-left {
    flex-basis: 100%;
    flex-wrap: wrap;
  }
}
.cid-vbw4dahGBJ .item-right {
  flex-basis: 20%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbw4dahGBJ .item-right {
    flex-basis: 30%;
  }
}
@media (max-width: 991px) {
  .cid-vbw4dahGBJ .item-right {
    flex-basis: 100%;
  }
}
.cid-vbw4dahGBJ .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-vbw4dahGBJ .item-img {
    max-width: 250px;
  }
}
.cid-vbw4dahGBJ .item-img img {
  width: 100%;
  aspect-ratio: 1.49700599;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-vbw4dahGBJ .item-img:hover img {
  transform: scale(1.05);
}
.cid-vbw4dahGBJ .card-box {
  padding-left: 30px;
}
@media (max-width: 1199px) {
  .cid-vbw4dahGBJ .card-box {
    padding-left: 20px;
    flex-basis: 50%;
  }
}
@media (max-width: 991px) {
  .cid-vbw4dahGBJ .card-box {
    padding-left: 0;
    padding-top: 25px;
    flex-basis: 100%;
  }
}
.cid-vbw4dahGBJ .label-container {
  padding: 3px 8px;
  border-radius: 20px;
  width: fit-content;
  background-color: #434a51;
  margin-bottom: 10px;
}
.cid-vbw4dahGBJ .label-text {
  color: #C4CFDE;
  margin-bottom: 0;
}
.cid-vbw4dahGBJ .card-title {
  color: #C4CFDE;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-vbw4dahGBJ .card-title {
    margin-bottom: 10px;
  }
}
.cid-vbw4dahGBJ .card-subtitle {
  color: #C4CFDE;
  margin-bottom: 7px;
}
.cid-vbw4dahGBJ .card-text {
  color: #000000;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-vbw4dahGBJ .mbr-section-btn {
    margin-top: 10px;
    text-align: left !important;
  }
}
.cid-vbw4dywWVW {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vbw4dywWVW .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbw4dywWVW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbw4dywWVW .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1599px) {
  .cid-vbw4dywWVW .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cid-vbw4dywWVW .mbr-section-head {
  width: 100%;
  margin-bottom: 20px;
}
.cid-vbw4dywWVW .mbr-section-title {
  color: #f9652f;
}
@media (max-width: 767px) {
  .cid-vbw4dywWVW .mbr-section-title {
    text-align: center;
  }
}
.cid-vbw4dywWVW .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-vbw4dywWVW .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-vbw4dywWVW .item {
  margin: 40px auto 0;
  width: 90% !important;
}
.cid-vbw4dywWVW .item-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  width: 100%;
  padding: 30px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #d7d7d7, #fafafa);
}
@media (max-width: 991px) {
  .cid-vbw4dywWVW .item-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-vbw4dywWVW .item-wrapper {
    padding: 20px;
  }
}
.cid-vbw4dywWVW .item-left {
  display: flex;
  align-items: center;
  flex-basis: 80%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbw4dywWVW .item-left {
    flex-basis: 70%;
  }
}
@media (max-width: 991px) {
  .cid-vbw4dywWVW .item-left {
    flex-basis: 100%;
    flex-wrap: wrap;
  }
}
.cid-vbw4dywWVW .item-right {
  flex-basis: 20%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbw4dywWVW .item-right {
    flex-basis: 30%;
  }
}
@media (max-width: 991px) {
  .cid-vbw4dywWVW .item-right {
    flex-basis: 100%;
  }
}
.cid-vbw4dywWVW .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-vbw4dywWVW .item-img {
    max-width: 250px;
  }
}
.cid-vbw4dywWVW .item-img img {
  width: 100%;
  aspect-ratio: 1.49700599;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-vbw4dywWVW .item-img:hover img {
  transform: scale(1.05);
}
.cid-vbw4dywWVW .card-box {
  padding-left: 30px;
}
@media (max-width: 1199px) {
  .cid-vbw4dywWVW .card-box {
    padding-left: 20px;
    flex-basis: 50%;
  }
}
@media (max-width: 991px) {
  .cid-vbw4dywWVW .card-box {
    padding-left: 0;
    padding-top: 25px;
    flex-basis: 100%;
  }
}
.cid-vbw4dywWVW .label-container {
  padding: 3px 8px;
  border-radius: 20px;
  width: fit-content;
  background-color: #434a51;
  margin-bottom: 10px;
}
.cid-vbw4dywWVW .label-text {
  color: #C4CFDE;
  margin-bottom: 0;
}
.cid-vbw4dywWVW .card-title {
  color: #C4CFDE;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-vbw4dywWVW .card-title {
    margin-bottom: 10px;
  }
}
.cid-vbw4dywWVW .card-subtitle {
  color: #C4CFDE;
  margin-bottom: 7px;
}
.cid-vbw4dywWVW .card-text {
  color: #000000;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-vbw4dywWVW .mbr-section-btn {
    margin-top: 10px;
    text-align: left !important;
  }
}
.cid-vbGpPw78Y5 {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-vbGpPw78Y5 section {
  position: relative;
}
.cid-vbGpPw78Y5 h4 {
  margin: 0;
}
.cid-vbGpPw78Y5 img {
  height: 100px;
  padding-rigth: 8px;
}
.cid-vbGpPw78Y5 a {
  font-weight: 300;
}
.cid-vbGpPw78Y5 .img1 {
  color: #f9652f;
}
.cid-vbGpPw78Y5 .img2 {
  color: #f9652f;
}
.cid-vbGpPw78Y5 .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #f9652f;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-vbGpPw78Y5 .media-wrap {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-vbGpPw78Y5 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-vbGpPw78Y5 .item,
.cid-vbGpPw78Y5 .link {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-vbGpPw78Y5 .item h4,
.cid-vbGpPw78Y5 .link h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-vbGpPw78Y5 .link {
  border-bottom: 1px solid #4a535e;
}
@media (max-width: 767px) {
  .cid-vbGpPw78Y5 .item {
    justify-content: center;
  }
}
.cid-vbGpPw78Y5 .item-title {
  color: #ffffff;
  text-align: left;
}
.cid-vbGpPw78Y5 .text1 {
  text-align: left;
}
.cid-vbGpPw78Y5 .link-title {
  text-align: left;
}
.cid-vbmTCqDQfS {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-vbmTCqDQfS .mbr-text {
  color: #f6f6ef;
}
.cid-vbpLVHYVzZ .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vbpLVHYVzZ .display-2 {
  font-size: 2rem;
}
@media (max-width: 992px) {
  .cid-vbpLVHYVzZ .icons-menu {
    padding: 1rem 0 !important;
  }
}
.cid-vbpLVHYVzZ .container {
  max-width: 1800px;
  display: flex;
  margin: auto;
}
.cid-vbpLVHYVzZ .navbar {
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  min-height: 77px;
  transition: all 0.3s;
  background: #fe7501;
}
.cid-vbpLVHYVzZ .navbar.opened {
  transition: all 0.3s;
}
.cid-vbpLVHYVzZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vbpLVHYVzZ .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-vbpLVHYVzZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vbpLVHYVzZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vbpLVHYVzZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.6rem);
  }
}
.cid-vbpLVHYVzZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vbpLVHYVzZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vbpLVHYVzZ .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: 55%;
}
.cid-vbpLVHYVzZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vbpLVHYVzZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vbpLVHYVzZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vbpLVHYVzZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vbpLVHYVzZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vbpLVHYVzZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vbpLVHYVzZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vbpLVHYVzZ .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: 55%;
  }
  .cid-vbpLVHYVzZ .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-vbpLVHYVzZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vbpLVHYVzZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vbpLVHYVzZ .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vbpLVHYVzZ .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-vbpLVHYVzZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vbpLVHYVzZ .navbar.navbar-short {
  background: #fe7501 !important;
  min-height: 60px;
}
.cid-vbpLVHYVzZ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-vbpLVHYVzZ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-vbpLVHYVzZ .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: fit-content;
  transition: all 0.3s;
}
.cid-vbpLVHYVzZ .nav-link:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-vbpLVHYVzZ .nav-link:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}
.cid-vbpLVHYVzZ .dropdown-menu {
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}
.cid-vbpLVHYVzZ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.2em 1em !important;
}
.cid-vbpLVHYVzZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vbpLVHYVzZ .mbr-iconfont {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vbpLVHYVzZ .navbar-caption {
  padding-right: 4rem;
}
.cid-vbpLVHYVzZ .navbar-nav {
  justify-content: center;
  width: -webkit-fill-available;
}
.cid-vbpLVHYVzZ .dropdown-menu,
.cid-vbpLVHYVzZ .navbar.opened {
  background: #fe7501 !important;
}
.cid-vbpLVHYVzZ .nav-item:focus,
.cid-vbpLVHYVzZ .nav-link:focus {
  outline: none;
}
.cid-vbpLVHYVzZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vbpLVHYVzZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vbpLVHYVzZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-vbpLVHYVzZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vbpLVHYVzZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vbpLVHYVzZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vbpLVHYVzZ .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vbpLVHYVzZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vbpLVHYVzZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vbpLVHYVzZ .dropdown-item.active,
.cid-vbpLVHYVzZ .dropdown-item:active {
  background-color: transparent;
}
.cid-vbpLVHYVzZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vbpLVHYVzZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vbpLVHYVzZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vbpLVHYVzZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fe7501;
}
.cid-vbpLVHYVzZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vbpLVHYVzZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vbpLVHYVzZ ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-vbpLVHYVzZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vbpLVHYVzZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-vbpLVHYVzZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vbpLVHYVzZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vbpLVHYVzZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vbpLVHYVzZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vbpLVHYVzZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vbpLVHYVzZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vbpLVHYVzZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vbpLVHYVzZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vbpLVHYVzZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vbpLVHYVzZ .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-vbpLVHYVzZ a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vbpLVHYVzZ .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  min-width: 160px;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-vbpLVHYVzZ .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vbpLVHYVzZ .navbar {
    height: 77px;
  }
  .cid-vbpLVHYVzZ .navbar.opened {
    height: auto;
  }
  .cid-vbpLVHYVzZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vbpLVIpFZo {
  background-image: url("../../../assets/images/instalacao-eletrica-residencial-1920x1080.jpg");
}
.cid-vbpLVIpFZo .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbpLVIpFZo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbpLVIpFZo .mbr-section-title {
  color: #e29d35;
  text-shadow: 2px 3px 5px rgba(0, 0, 0, 0.6);
}
.cid-vbpLVIpFZo .mbr-text {
  color: #FFFFFF;
  margin-top: 20px;
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
}
.cid-vbpLVIpFZo .mbr-section-btn {
  margin-top: 30px;
}
.cid-vbpLVIpFZo .mbr-text,
.cid-vbpLVIpFZo .mbr-section-btn {
  text-align: center;
}
.cid-vbs70ks9Yz {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: #ffffff;
}
.cid-vbs70ks9Yz .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbs70ks9Yz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-vbs70ks9Yz .container {
    padding: 0 26px;
  }
}
.cid-vbs70ks9Yz .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 768px) {
  .cid-vbs70ks9Yz .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-vbs70ks9Yz .embla__slide a {
  display: block;
  width: 100%;
}
.cid-vbs70ks9Yz .embla__slide a .card-wrap .item-wrapper .image-wrap img {
  height: 156px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vbs70ks9Yz .embla__slide a .card-wrap .item-wrapper .image-wrap img {
    height: 156px;
  }
}
.cid-vbs70ks9Yz .embla__button--next,
.cid-vbs70ks9Yz .embla__button--prev {
  display: flex;
}
.cid-vbs70ks9Yz .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 50px;
  background-color: transparent;
  color: #ffffff;
  border: none;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-vbs70ks9Yz .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-vbs70ks9Yz .embla__button:hover {
  background: transparent;
  color: #ffffff;
}
.cid-vbs70ks9Yz .embla__button.embla__button--prev {
  left: 0;
  margin-left: 60px;
}
@media (max-width: 992px) {
  .cid-vbs70ks9Yz .embla__button.embla__button--prev {
    margin-left: 26px;
  }
}
.cid-vbs70ks9Yz .embla__button.embla__button--next {
  right: 0;
  margin-right: 60px;
}
@media (max-width: 992px) {
  .cid-vbs70ks9Yz .embla__button.embla__button--next {
    margin-right: 26px;
  }
}
.cid-vbs70ks9Yz .embla {
  position: relative;
  width: 100%;
}
.cid-vbs70ks9Yz .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-vbs70ks9Yz .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vbs70ks9Yz .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vbs70ks9Yz .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vbpLVII6M1 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vbpLVII6M1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbpLVII6M1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbpLVII6M1 .content-wrapper {
  background: #efefef;
}
@media (max-width: 991px) {
  .cid-vbpLVII6M1 .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vbpLVII6M1 .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vbpLVII6M1 .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vbpLVII6M1 .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vbpLVII6M1 .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-vbpLVII6M1 .image-wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 50px 0 50px 0;
}
.cid-vbpLVKUrfl {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vbpLVKUrfl .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbpLVKUrfl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbpLVKUrfl .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-vbpLVKUrfl .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-vbpLVKUrfl .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vbpLVKUrfl .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vbpLVKUrfl .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vbpLVKUrfl .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vbpLVKUrfl .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-vbpLVKUrfl .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-vbGpYLmMiU {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-vbGpYLmMiU section {
  position: relative;
}
.cid-vbGpYLmMiU h4 {
  margin: 0;
}
.cid-vbGpYLmMiU img {
  height: 100px;
  padding-rigth: 8px;
}
.cid-vbGpYLmMiU a {
  font-weight: 300;
}
.cid-vbGpYLmMiU .img1 {
  color: #f9652f;
}
.cid-vbGpYLmMiU .img2 {
  color: #f9652f;
}
.cid-vbGpYLmMiU .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #f9652f;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-vbGpYLmMiU .media-wrap {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-vbGpYLmMiU .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-vbGpYLmMiU .item,
.cid-vbGpYLmMiU .link {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-vbGpYLmMiU .item h4,
.cid-vbGpYLmMiU .link h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-vbGpYLmMiU .link {
  border-bottom: 1px solid #4a535e;
}
@media (max-width: 767px) {
  .cid-vbGpYLmMiU .item {
    justify-content: center;
  }
}
.cid-vbGpYLmMiU .item-title {
  color: #ffffff;
  text-align: left;
}
.cid-vbGpYLmMiU .text1 {
  text-align: left;
}
.cid-vbGpYLmMiU .link-title {
  text-align: left;
}
.cid-vbpLVLOewP {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-vbpLVLOewP .mbr-text {
  color: #f6f6ef;
}
.cid-vbpNIMJshW .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vbpNIMJshW .display-2 {
  font-size: 2rem;
}
@media (max-width: 992px) {
  .cid-vbpNIMJshW .icons-menu {
    padding: 1rem 0 !important;
  }
}
.cid-vbpNIMJshW .container {
  max-width: 1800px;
  display: flex;
  margin: auto;
}
.cid-vbpNIMJshW .navbar {
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  min-height: 77px;
  transition: all 0.3s;
  background: #fe7501;
}
.cid-vbpNIMJshW .navbar.opened {
  transition: all 0.3s;
}
.cid-vbpNIMJshW .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vbpNIMJshW .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-vbpNIMJshW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vbpNIMJshW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vbpNIMJshW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.6rem);
  }
}
.cid-vbpNIMJshW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vbpNIMJshW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vbpNIMJshW .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: 55%;
}
.cid-vbpNIMJshW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vbpNIMJshW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vbpNIMJshW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vbpNIMJshW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vbpNIMJshW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vbpNIMJshW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vbpNIMJshW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vbpNIMJshW .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: 55%;
  }
  .cid-vbpNIMJshW .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-vbpNIMJshW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vbpNIMJshW .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vbpNIMJshW .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vbpNIMJshW .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-vbpNIMJshW .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vbpNIMJshW .navbar.navbar-short {
  background: #fe7501 !important;
  min-height: 60px;
}
.cid-vbpNIMJshW .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-vbpNIMJshW .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-vbpNIMJshW .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: fit-content;
  transition: all 0.3s;
}
.cid-vbpNIMJshW .nav-link:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-vbpNIMJshW .nav-link:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}
.cid-vbpNIMJshW .dropdown-menu {
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}
.cid-vbpNIMJshW .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.2em 1em !important;
}
.cid-vbpNIMJshW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vbpNIMJshW .mbr-iconfont {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vbpNIMJshW .navbar-caption {
  padding-right: 4rem;
}
.cid-vbpNIMJshW .navbar-nav {
  justify-content: center;
  width: -webkit-fill-available;
}
.cid-vbpNIMJshW .dropdown-menu,
.cid-vbpNIMJshW .navbar.opened {
  background: #fe7501 !important;
}
.cid-vbpNIMJshW .nav-item:focus,
.cid-vbpNIMJshW .nav-link:focus {
  outline: none;
}
.cid-vbpNIMJshW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vbpNIMJshW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vbpNIMJshW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-vbpNIMJshW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vbpNIMJshW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vbpNIMJshW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vbpNIMJshW .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vbpNIMJshW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vbpNIMJshW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vbpNIMJshW .dropdown-item.active,
.cid-vbpNIMJshW .dropdown-item:active {
  background-color: transparent;
}
.cid-vbpNIMJshW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vbpNIMJshW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vbpNIMJshW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vbpNIMJshW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fe7501;
}
.cid-vbpNIMJshW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vbpNIMJshW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vbpNIMJshW ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-vbpNIMJshW .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vbpNIMJshW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-vbpNIMJshW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vbpNIMJshW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vbpNIMJshW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vbpNIMJshW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vbpNIMJshW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vbpNIMJshW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vbpNIMJshW nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vbpNIMJshW nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vbpNIMJshW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vbpNIMJshW .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-vbpNIMJshW a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vbpNIMJshW .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  min-width: 160px;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-vbpNIMJshW .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vbpNIMJshW .navbar {
    height: 77px;
  }
  .cid-vbpNIMJshW .navbar.opened {
    height: auto;
  }
  .cid-vbpNIMJshW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vbpNINdSyX {
  background-image: url("../../../assets/images/instalacao-eletrica-comercial-1920x1080.jpg");
}
.cid-vbpNINdSyX .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbpNINdSyX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbpNINdSyX .mbr-section-title {
  color: #e29d35;
  text-shadow: 2px 3px 5px rgba(0, 0, 0, 0.6);
}
.cid-vbpNINdSyX .mbr-text {
  color: #FFFFFF;
  margin-top: 20px;
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
}
.cid-vbpNINdSyX .mbr-section-btn {
  margin-top: 30px;
}
.cid-vbpNINdSyX .mbr-text,
.cid-vbpNINdSyX .mbr-section-btn {
  text-align: center;
}
.cid-vbrQ6YApNC {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: #ffffff;
}
.cid-vbrQ6YApNC .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbrQ6YApNC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-vbrQ6YApNC .container {
    padding: 0 26px;
  }
}
.cid-vbrQ6YApNC .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 768px) {
  .cid-vbrQ6YApNC .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-vbrQ6YApNC .embla__slide a {
  display: block;
  width: 100%;
}
.cid-vbrQ6YApNC .embla__slide a .card-wrap .item-wrapper .image-wrap img {
  height: 156px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vbrQ6YApNC .embla__slide a .card-wrap .item-wrapper .image-wrap img {
    height: 156px;
  }
}
.cid-vbrQ6YApNC .embla__button--next,
.cid-vbrQ6YApNC .embla__button--prev {
  display: flex;
}
.cid-vbrQ6YApNC .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 50px;
  background-color: transparent;
  color: #ffffff;
  border: none;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-vbrQ6YApNC .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-vbrQ6YApNC .embla__button:hover {
  background: transparent;
  color: #ffffff;
}
.cid-vbrQ6YApNC .embla__button.embla__button--prev {
  left: 0;
  margin-left: 60px;
}
@media (max-width: 992px) {
  .cid-vbrQ6YApNC .embla__button.embla__button--prev {
    margin-left: 26px;
  }
}
.cid-vbrQ6YApNC .embla__button.embla__button--next {
  right: 0;
  margin-right: 60px;
}
@media (max-width: 992px) {
  .cid-vbrQ6YApNC .embla__button.embla__button--next {
    margin-right: 26px;
  }
}
.cid-vbrQ6YApNC .embla {
  position: relative;
  width: 100%;
}
.cid-vbrQ6YApNC .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-vbrQ6YApNC .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vbrQ6YApNC .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vbrQ6YApNC .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vbpNINBV7j {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vbpNINBV7j .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbpNINBV7j .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbpNINBV7j .content-wrapper {
  background: #efefef;
}
@media (max-width: 991px) {
  .cid-vbpNINBV7j .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vbpNINBV7j .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vbpNINBV7j .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vbpNINBV7j .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vbpNINBV7j .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-vbpNINBV7j .image-wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 50px 0 50px 0;
}
.cid-vbpNINT3lQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vbpNINT3lQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbpNINT3lQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbpNINT3lQ .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-vbpNINT3lQ .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-vbpNINT3lQ .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vbpNINT3lQ .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vbpNINT3lQ .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vbpNINT3lQ .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vbpNINT3lQ .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-vbpNINT3lQ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-vbGq23YVB0 {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-vbGq23YVB0 section {
  position: relative;
}
.cid-vbGq23YVB0 h4 {
  margin: 0;
}
.cid-vbGq23YVB0 img {
  height: 100px;
  padding-rigth: 8px;
}
.cid-vbGq23YVB0 a {
  font-weight: 300;
}
.cid-vbGq23YVB0 .img1 {
  color: #f9652f;
}
.cid-vbGq23YVB0 .img2 {
  color: #f9652f;
}
.cid-vbGq23YVB0 .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #f9652f;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-vbGq23YVB0 .media-wrap {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-vbGq23YVB0 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-vbGq23YVB0 .item,
.cid-vbGq23YVB0 .link {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-vbGq23YVB0 .item h4,
.cid-vbGq23YVB0 .link h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-vbGq23YVB0 .link {
  border-bottom: 1px solid #4a535e;
}
@media (max-width: 767px) {
  .cid-vbGq23YVB0 .item {
    justify-content: center;
  }
}
.cid-vbGq23YVB0 .item-title {
  color: #ffffff;
  text-align: left;
}
.cid-vbGq23YVB0 .text1 {
  text-align: left;
}
.cid-vbGq23YVB0 .link-title {
  text-align: left;
}
.cid-vbpNIOIq48 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-vbpNIOIq48 .mbr-text {
  color: #f6f6ef;
}
.cid-vbpUv86s9Q .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vbpUv86s9Q .display-2 {
  font-size: 2rem;
}
@media (max-width: 992px) {
  .cid-vbpUv86s9Q .icons-menu {
    padding: 1rem 0 !important;
  }
}
.cid-vbpUv86s9Q .container {
  max-width: 1800px;
  display: flex;
  margin: auto;
}
.cid-vbpUv86s9Q .navbar {
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  min-height: 77px;
  transition: all 0.3s;
  background: #fe7501;
}
.cid-vbpUv86s9Q .navbar.opened {
  transition: all 0.3s;
}
.cid-vbpUv86s9Q .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vbpUv86s9Q .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-vbpUv86s9Q .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vbpUv86s9Q .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vbpUv86s9Q .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.6rem);
  }
}
.cid-vbpUv86s9Q .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vbpUv86s9Q .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vbpUv86s9Q .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: 55%;
}
.cid-vbpUv86s9Q .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vbpUv86s9Q .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vbpUv86s9Q .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vbpUv86s9Q .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vbpUv86s9Q .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vbpUv86s9Q .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vbpUv86s9Q .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vbpUv86s9Q .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: 55%;
  }
  .cid-vbpUv86s9Q .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-vbpUv86s9Q .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vbpUv86s9Q .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vbpUv86s9Q .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vbpUv86s9Q .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-vbpUv86s9Q .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vbpUv86s9Q .navbar.navbar-short {
  background: #fe7501 !important;
  min-height: 60px;
}
.cid-vbpUv86s9Q .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-vbpUv86s9Q .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-vbpUv86s9Q .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: fit-content;
  transition: all 0.3s;
}
.cid-vbpUv86s9Q .nav-link:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-vbpUv86s9Q .nav-link:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}
.cid-vbpUv86s9Q .dropdown-menu {
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}
.cid-vbpUv86s9Q .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.2em 1em !important;
}
.cid-vbpUv86s9Q .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vbpUv86s9Q .mbr-iconfont {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vbpUv86s9Q .navbar-caption {
  padding-right: 4rem;
}
.cid-vbpUv86s9Q .navbar-nav {
  justify-content: center;
  width: -webkit-fill-available;
}
.cid-vbpUv86s9Q .dropdown-menu,
.cid-vbpUv86s9Q .navbar.opened {
  background: #fe7501 !important;
}
.cid-vbpUv86s9Q .nav-item:focus,
.cid-vbpUv86s9Q .nav-link:focus {
  outline: none;
}
.cid-vbpUv86s9Q .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vbpUv86s9Q .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vbpUv86s9Q .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-vbpUv86s9Q .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vbpUv86s9Q .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vbpUv86s9Q .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vbpUv86s9Q .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vbpUv86s9Q .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vbpUv86s9Q .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vbpUv86s9Q .dropdown-item.active,
.cid-vbpUv86s9Q .dropdown-item:active {
  background-color: transparent;
}
.cid-vbpUv86s9Q .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vbpUv86s9Q .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vbpUv86s9Q .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vbpUv86s9Q .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fe7501;
}
.cid-vbpUv86s9Q .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vbpUv86s9Q .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vbpUv86s9Q ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-vbpUv86s9Q .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vbpUv86s9Q button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-vbpUv86s9Q button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vbpUv86s9Q button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vbpUv86s9Q button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vbpUv86s9Q button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vbpUv86s9Q button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vbpUv86s9Q nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vbpUv86s9Q nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vbpUv86s9Q nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vbpUv86s9Q nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vbpUv86s9Q .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-vbpUv86s9Q a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vbpUv86s9Q .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  min-width: 160px;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-vbpUv86s9Q .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vbpUv86s9Q .navbar {
    height: 77px;
  }
  .cid-vbpUv86s9Q .navbar.opened {
    height: auto;
  }
  .cid-vbpUv86s9Q .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vbpUv8Mhdi {
  background-image: url("../../../assets/images/instalacao-eletrica-rural-1920x1080.jpg");
}
.cid-vbpUv8Mhdi .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbpUv8Mhdi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbpUv8Mhdi .mbr-section-title {
  color: #e29d35;
  text-shadow: 2px 3px 5px rgba(0, 0, 0, 0.6);
}
.cid-vbpUv8Mhdi .mbr-text {
  color: #FFFFFF;
  margin-top: 20px;
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
}
.cid-vbpUv8Mhdi .mbr-section-btn {
  margin-top: 30px;
}
.cid-vbpUv8Mhdi .mbr-text,
.cid-vbpUv8Mhdi .mbr-section-btn {
  text-align: center;
}
.cid-vbpUv9dJ4k {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vbpUv9dJ4k .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbpUv9dJ4k .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbpUv9dJ4k .content-wrapper {
  background: #efefef;
}
@media (max-width: 991px) {
  .cid-vbpUv9dJ4k .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vbpUv9dJ4k .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vbpUv9dJ4k .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vbpUv9dJ4k .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vbpUv9dJ4k .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-vbpUv9dJ4k .image-wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 50px 0 50px 0;
}
.cid-vbGdVd6E9j {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-vbGdVd6E9j .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbGdVd6E9j .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbGdVd6E9j .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #000000;
  margin-left: 1rem;
}
.cid-vbGdVd6E9j .panel-group {
  border: none;
}
.cid-vbGdVd6E9j .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-vbGdVd6E9j .panel-body,
.cid-vbGdVd6E9j .card-header {
  padding: 1rem 0;
}
.cid-vbGdVd6E9j .panel-title-edit {
  color: #000000;
}
.cid-vbGdVd6E9j .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-vbpUv9Iewx {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vbpUv9Iewx .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbpUv9Iewx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbpUv9Iewx .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-vbpUv9Iewx .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-vbpUv9Iewx .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vbpUv9Iewx .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vbpUv9Iewx .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vbpUv9Iewx .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vbpUv9Iewx .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-vbpUv9Iewx .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-vbGqg2LCOX {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-vbGqg2LCOX section {
  position: relative;
}
.cid-vbGqg2LCOX h4 {
  margin: 0;
}
.cid-vbGqg2LCOX img {
  height: 100px;
  padding-rigth: 8px;
}
.cid-vbGqg2LCOX a {
  font-weight: 300;
}
.cid-vbGqg2LCOX .img1 {
  color: #f9652f;
}
.cid-vbGqg2LCOX .img2 {
  color: #f9652f;
}
.cid-vbGqg2LCOX .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #f9652f;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-vbGqg2LCOX .media-wrap {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-vbGqg2LCOX .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-vbGqg2LCOX .item,
.cid-vbGqg2LCOX .link {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-vbGqg2LCOX .item h4,
.cid-vbGqg2LCOX .link h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-vbGqg2LCOX .link {
  border-bottom: 1px solid #4a535e;
}
@media (max-width: 767px) {
  .cid-vbGqg2LCOX .item {
    justify-content: center;
  }
}
.cid-vbGqg2LCOX .item-title {
  color: #ffffff;
  text-align: left;
}
.cid-vbGqg2LCOX .text1 {
  text-align: left;
}
.cid-vbGqg2LCOX .link-title {
  text-align: left;
}
.cid-vbpUvaPieU {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-vbpUvaPieU .mbr-text {
  color: #f6f6ef;
}
.cid-vbpXnbfCMW .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vbpXnbfCMW .display-2 {
  font-size: 2rem;
}
@media (max-width: 992px) {
  .cid-vbpXnbfCMW .icons-menu {
    padding: 1rem 0 !important;
  }
}
.cid-vbpXnbfCMW .container {
  max-width: 1800px;
  display: flex;
  margin: auto;
}
.cid-vbpXnbfCMW .navbar {
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  min-height: 77px;
  transition: all 0.3s;
  background: #fe7501;
}
.cid-vbpXnbfCMW .navbar.opened {
  transition: all 0.3s;
}
.cid-vbpXnbfCMW .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vbpXnbfCMW .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-vbpXnbfCMW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vbpXnbfCMW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vbpXnbfCMW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.6rem);
  }
}
.cid-vbpXnbfCMW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vbpXnbfCMW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vbpXnbfCMW .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: 55%;
}
.cid-vbpXnbfCMW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vbpXnbfCMW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vbpXnbfCMW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vbpXnbfCMW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vbpXnbfCMW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vbpXnbfCMW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vbpXnbfCMW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vbpXnbfCMW .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: 55%;
  }
  .cid-vbpXnbfCMW .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-vbpXnbfCMW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vbpXnbfCMW .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vbpXnbfCMW .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vbpXnbfCMW .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-vbpXnbfCMW .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vbpXnbfCMW .navbar.navbar-short {
  background: #fe7501 !important;
  min-height: 60px;
}
.cid-vbpXnbfCMW .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-vbpXnbfCMW .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-vbpXnbfCMW .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: fit-content;
  transition: all 0.3s;
}
.cid-vbpXnbfCMW .nav-link:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-vbpXnbfCMW .nav-link:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}
.cid-vbpXnbfCMW .dropdown-menu {
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}
.cid-vbpXnbfCMW .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.2em 1em !important;
}
.cid-vbpXnbfCMW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vbpXnbfCMW .mbr-iconfont {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vbpXnbfCMW .navbar-caption {
  padding-right: 4rem;
}
.cid-vbpXnbfCMW .navbar-nav {
  justify-content: center;
  width: -webkit-fill-available;
}
.cid-vbpXnbfCMW .dropdown-menu,
.cid-vbpXnbfCMW .navbar.opened {
  background: #fe7501 !important;
}
.cid-vbpXnbfCMW .nav-item:focus,
.cid-vbpXnbfCMW .nav-link:focus {
  outline: none;
}
.cid-vbpXnbfCMW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vbpXnbfCMW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vbpXnbfCMW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-vbpXnbfCMW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vbpXnbfCMW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vbpXnbfCMW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vbpXnbfCMW .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vbpXnbfCMW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vbpXnbfCMW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vbpXnbfCMW .dropdown-item.active,
.cid-vbpXnbfCMW .dropdown-item:active {
  background-color: transparent;
}
.cid-vbpXnbfCMW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vbpXnbfCMW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vbpXnbfCMW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vbpXnbfCMW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fe7501;
}
.cid-vbpXnbfCMW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vbpXnbfCMW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vbpXnbfCMW ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-vbpXnbfCMW .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vbpXnbfCMW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-vbpXnbfCMW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vbpXnbfCMW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vbpXnbfCMW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vbpXnbfCMW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vbpXnbfCMW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vbpXnbfCMW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vbpXnbfCMW nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vbpXnbfCMW nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vbpXnbfCMW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vbpXnbfCMW .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-vbpXnbfCMW a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vbpXnbfCMW .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  min-width: 160px;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-vbpXnbfCMW .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vbpXnbfCMW .navbar {
    height: 77px;
  }
  .cid-vbpXnbfCMW .navbar.opened {
    height: auto;
  }
  .cid-vbpXnbfCMW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vbHChZ89YF {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-vbHChZ89YF .mbr-section-subtitle {
  color: #767676;
}
.cid-vbGqFs35kr {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-vbGqFs35kr section {
  position: relative;
}
.cid-vbGqFs35kr h4 {
  margin: 0;
}
.cid-vbGqFs35kr img {
  height: 100px;
  padding-rigth: 8px;
}
.cid-vbGqFs35kr a {
  font-weight: 300;
}
.cid-vbGqFs35kr .img1 {
  color: #f9652f;
}
.cid-vbGqFs35kr .img2 {
  color: #f9652f;
}
.cid-vbGqFs35kr .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #f9652f;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-vbGqFs35kr .media-wrap {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-vbGqFs35kr .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-vbGqFs35kr .item,
.cid-vbGqFs35kr .link {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-vbGqFs35kr .item h4,
.cid-vbGqFs35kr .link h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-vbGqFs35kr .link {
  border-bottom: 1px solid #4a535e;
}
@media (max-width: 767px) {
  .cid-vbGqFs35kr .item {
    justify-content: center;
  }
}
.cid-vbGqFs35kr .item-title {
  color: #ffffff;
  text-align: left;
}
.cid-vbGqFs35kr .text1 {
  text-align: left;
}
.cid-vbGqFs35kr .link-title {
  text-align: left;
}
.cid-vbpXncpCRo {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-vbpXncpCRo .mbr-text {
  color: #f6f6ef;
}
.cid-vbqfU9iVaS .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vbqfU9iVaS .display-2 {
  font-size: 2rem;
}
@media (max-width: 992px) {
  .cid-vbqfU9iVaS .icons-menu {
    padding: 1rem 0 !important;
  }
}
.cid-vbqfU9iVaS .container {
  max-width: 1800px;
  display: flex;
  margin: auto;
}
.cid-vbqfU9iVaS .navbar {
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  min-height: 77px;
  transition: all 0.3s;
  background: #fe7501;
}
.cid-vbqfU9iVaS .navbar.opened {
  transition: all 0.3s;
}
.cid-vbqfU9iVaS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vbqfU9iVaS .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-vbqfU9iVaS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vbqfU9iVaS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vbqfU9iVaS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.6rem);
  }
}
.cid-vbqfU9iVaS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vbqfU9iVaS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vbqfU9iVaS .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: 55%;
}
.cid-vbqfU9iVaS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vbqfU9iVaS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vbqfU9iVaS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vbqfU9iVaS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vbqfU9iVaS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vbqfU9iVaS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vbqfU9iVaS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vbqfU9iVaS .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: 55%;
  }
  .cid-vbqfU9iVaS .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-vbqfU9iVaS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vbqfU9iVaS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vbqfU9iVaS .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vbqfU9iVaS .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-vbqfU9iVaS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vbqfU9iVaS .navbar.navbar-short {
  background: #fe7501 !important;
  min-height: 60px;
}
.cid-vbqfU9iVaS .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-vbqfU9iVaS .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-vbqfU9iVaS .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: fit-content;
  transition: all 0.3s;
}
.cid-vbqfU9iVaS .nav-link:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-vbqfU9iVaS .nav-link:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}
.cid-vbqfU9iVaS .dropdown-menu {
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}
.cid-vbqfU9iVaS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.2em 1em !important;
}
.cid-vbqfU9iVaS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vbqfU9iVaS .mbr-iconfont {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vbqfU9iVaS .navbar-caption {
  padding-right: 4rem;
}
.cid-vbqfU9iVaS .navbar-nav {
  justify-content: center;
  width: -webkit-fill-available;
}
.cid-vbqfU9iVaS .dropdown-menu,
.cid-vbqfU9iVaS .navbar.opened {
  background: #fe7501 !important;
}
.cid-vbqfU9iVaS .nav-item:focus,
.cid-vbqfU9iVaS .nav-link:focus {
  outline: none;
}
.cid-vbqfU9iVaS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vbqfU9iVaS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vbqfU9iVaS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-vbqfU9iVaS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vbqfU9iVaS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vbqfU9iVaS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vbqfU9iVaS .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vbqfU9iVaS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vbqfU9iVaS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vbqfU9iVaS .dropdown-item.active,
.cid-vbqfU9iVaS .dropdown-item:active {
  background-color: transparent;
}
.cid-vbqfU9iVaS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vbqfU9iVaS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vbqfU9iVaS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vbqfU9iVaS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fe7501;
}
.cid-vbqfU9iVaS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vbqfU9iVaS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vbqfU9iVaS ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-vbqfU9iVaS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vbqfU9iVaS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-vbqfU9iVaS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vbqfU9iVaS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vbqfU9iVaS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vbqfU9iVaS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vbqfU9iVaS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vbqfU9iVaS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vbqfU9iVaS nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vbqfU9iVaS nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vbqfU9iVaS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vbqfU9iVaS .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-vbqfU9iVaS a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vbqfU9iVaS .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  min-width: 160px;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-vbqfU9iVaS .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vbqfU9iVaS .navbar {
    height: 77px;
  }
  .cid-vbqfU9iVaS .navbar.opened {
    height: auto;
  }
  .cid-vbqfU9iVaS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vbqhx2yhhK {
  background-image: url("../../../assets/images/marcas-marcus-eletrica-1920x1080.jpg");
}
.cid-vbqhx2yhhK .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbqhx2yhhK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbqhx2yhhK .mbr-section-title {
  color: #e29d35;
  text-shadow: 2px 3px 5px rgba(0, 0, 0, 0.6);
}
.cid-vbqhx2yhhK .mbr-text {
  color: #FFFFFF;
  margin-top: 20px;
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
}
.cid-vbqhx2yhhK .mbr-section-btn {
  margin-top: 30px;
}
.cid-vbqgdybIwz {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vbqgdybIwz .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbqgdybIwz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbqgdybIwz .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1599px) {
  .cid-vbqgdybIwz .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cid-vbqgdybIwz .mbr-section-head {
  width: 100%;
  margin-bottom: 20px;
}
.cid-vbqgdybIwz .mbr-section-title {
  color: #f9652f;
}
@media (max-width: 767px) {
  .cid-vbqgdybIwz .mbr-section-title {
    text-align: center;
  }
}
.cid-vbqgdybIwz .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-vbqgdybIwz .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-vbqgdybIwz .item {
  margin: 40px auto 0;
  width: 90% !important;
}
.cid-vbqgdybIwz .item-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  width: 100%;
  padding: 30px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #d7d7d7, #fafafa);
}
@media (max-width: 991px) {
  .cid-vbqgdybIwz .item-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-vbqgdybIwz .item-wrapper {
    padding: 20px;
  }
}
.cid-vbqgdybIwz .item-left {
  display: flex;
  align-items: center;
  flex-basis: 80%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbqgdybIwz .item-left {
    flex-basis: 70%;
  }
}
@media (max-width: 991px) {
  .cid-vbqgdybIwz .item-left {
    flex-basis: 100%;
    flex-wrap: wrap;
  }
}
.cid-vbqgdybIwz .item-right {
  flex-basis: 20%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbqgdybIwz .item-right {
    flex-basis: 30%;
  }
}
@media (max-width: 991px) {
  .cid-vbqgdybIwz .item-right {
    flex-basis: 100%;
  }
}
.cid-vbqgdybIwz .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-vbqgdybIwz .item-img {
    max-width: 250px;
  }
}
.cid-vbqgdybIwz .item-img img {
  width: 100%;
  aspect-ratio: 1.49700599;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-vbqgdybIwz .item-img:hover img {
  transform: scale(1.05);
}
.cid-vbqgdybIwz .card-box {
  padding-left: 30px;
}
@media (max-width: 1199px) {
  .cid-vbqgdybIwz .card-box {
    padding-left: 20px;
    flex-basis: 50%;
  }
}
@media (max-width: 991px) {
  .cid-vbqgdybIwz .card-box {
    padding-left: 0;
    padding-top: 25px;
    flex-basis: 100%;
  }
}
.cid-vbqgdybIwz .label-container {
  padding: 3px 8px;
  border-radius: 20px;
  width: fit-content;
  background-color: #434a51;
  margin-bottom: 10px;
}
.cid-vbqgdybIwz .label-text {
  color: #C4CFDE;
  margin-bottom: 0;
}
.cid-vbqgdybIwz .card-title {
  color: #C4CFDE;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-vbqgdybIwz .card-title {
    margin-bottom: 10px;
  }
}
.cid-vbqgdybIwz .card-subtitle {
  color: #C4CFDE;
  margin-bottom: 7px;
}
.cid-vbqgdybIwz .card-text {
  color: #000000;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-vbqgdybIwz .mbr-section-btn {
    margin-top: 10px;
    text-align: left !important;
  }
}
.cid-vbvkh8lKQ4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vbvkh8lKQ4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbvkh8lKQ4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbvkh8lKQ4 .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1599px) {
  .cid-vbvkh8lKQ4 .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cid-vbvkh8lKQ4 .mbr-section-head {
  width: 100%;
  margin-bottom: 20px;
}
.cid-vbvkh8lKQ4 .mbr-section-title {
  color: #f9652f;
}
@media (max-width: 767px) {
  .cid-vbvkh8lKQ4 .mbr-section-title {
    text-align: center;
  }
}
.cid-vbvkh8lKQ4 .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-vbvkh8lKQ4 .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-vbvkh8lKQ4 .item {
  margin: 40px auto 0;
  width: 90% !important;
}
.cid-vbvkh8lKQ4 .item-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  width: 100%;
  padding: 30px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #d7d7d7, #fafafa);
}
@media (max-width: 991px) {
  .cid-vbvkh8lKQ4 .item-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-vbvkh8lKQ4 .item-wrapper {
    padding: 20px;
  }
}
.cid-vbvkh8lKQ4 .item-left {
  display: flex;
  align-items: center;
  flex-basis: 80%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbvkh8lKQ4 .item-left {
    flex-basis: 70%;
  }
}
@media (max-width: 991px) {
  .cid-vbvkh8lKQ4 .item-left {
    flex-basis: 100%;
    flex-wrap: wrap;
  }
}
.cid-vbvkh8lKQ4 .item-right {
  flex-basis: 20%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbvkh8lKQ4 .item-right {
    flex-basis: 30%;
  }
}
@media (max-width: 991px) {
  .cid-vbvkh8lKQ4 .item-right {
    flex-basis: 100%;
  }
}
.cid-vbvkh8lKQ4 .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-vbvkh8lKQ4 .item-img {
    max-width: 250px;
  }
}
.cid-vbvkh8lKQ4 .item-img img {
  width: 100%;
  aspect-ratio: 1.49700599;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-vbvkh8lKQ4 .item-img:hover img {
  transform: scale(1.05);
}
.cid-vbvkh8lKQ4 .card-box {
  padding-left: 30px;
}
@media (max-width: 1199px) {
  .cid-vbvkh8lKQ4 .card-box {
    padding-left: 20px;
    flex-basis: 50%;
  }
}
@media (max-width: 991px) {
  .cid-vbvkh8lKQ4 .card-box {
    padding-left: 0;
    padding-top: 25px;
    flex-basis: 100%;
  }
}
.cid-vbvkh8lKQ4 .label-container {
  padding: 3px 8px;
  border-radius: 20px;
  width: fit-content;
  background-color: #434a51;
  margin-bottom: 10px;
}
.cid-vbvkh8lKQ4 .label-text {
  color: #C4CFDE;
  margin-bottom: 0;
}
.cid-vbvkh8lKQ4 .card-title {
  color: #C4CFDE;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-vbvkh8lKQ4 .card-title {
    margin-bottom: 10px;
  }
}
.cid-vbvkh8lKQ4 .card-subtitle {
  color: #C4CFDE;
  margin-bottom: 7px;
}
.cid-vbvkh8lKQ4 .card-text {
  color: #000000;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-vbvkh8lKQ4 .mbr-section-btn {
    margin-top: 10px;
    text-align: left !important;
  }
}
.cid-vbvlk7eAuL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vbvlk7eAuL .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbvlk7eAuL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbvlk7eAuL .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1599px) {
  .cid-vbvlk7eAuL .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cid-vbvlk7eAuL .mbr-section-head {
  width: 100%;
  margin-bottom: 20px;
}
.cid-vbvlk7eAuL .mbr-section-title {
  color: #f9652f;
}
@media (max-width: 767px) {
  .cid-vbvlk7eAuL .mbr-section-title {
    text-align: center;
  }
}
.cid-vbvlk7eAuL .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-vbvlk7eAuL .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-vbvlk7eAuL .item {
  margin: 40px auto 0;
  width: 90% !important;
}
.cid-vbvlk7eAuL .item-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  width: 100%;
  padding: 30px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #d7d7d7, #ffffff);
}
@media (max-width: 991px) {
  .cid-vbvlk7eAuL .item-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-vbvlk7eAuL .item-wrapper {
    padding: 20px;
  }
}
.cid-vbvlk7eAuL .item-left {
  display: flex;
  align-items: center;
  flex-basis: 80%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbvlk7eAuL .item-left {
    flex-basis: 70%;
  }
}
@media (max-width: 991px) {
  .cid-vbvlk7eAuL .item-left {
    flex-basis: 100%;
    flex-wrap: wrap;
  }
}
.cid-vbvlk7eAuL .item-right {
  flex-basis: 20%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbvlk7eAuL .item-right {
    flex-basis: 30%;
  }
}
@media (max-width: 991px) {
  .cid-vbvlk7eAuL .item-right {
    flex-basis: 100%;
  }
}
.cid-vbvlk7eAuL .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-vbvlk7eAuL .item-img {
    max-width: 250px;
  }
}
.cid-vbvlk7eAuL .item-img img {
  width: 100%;
  aspect-ratio: 1.49700599;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-vbvlk7eAuL .item-img:hover img {
  transform: scale(1.05);
}
.cid-vbvlk7eAuL .card-box {
  padding-left: 30px;
}
@media (max-width: 1199px) {
  .cid-vbvlk7eAuL .card-box {
    padding-left: 20px;
    flex-basis: 50%;
  }
}
@media (max-width: 991px) {
  .cid-vbvlk7eAuL .card-box {
    padding-left: 0;
    padding-top: 25px;
    flex-basis: 100%;
  }
}
.cid-vbvlk7eAuL .label-container {
  padding: 3px 8px;
  border-radius: 20px;
  width: fit-content;
  background-color: #434a51;
  margin-bottom: 10px;
}
.cid-vbvlk7eAuL .label-text {
  color: #C4CFDE;
  margin-bottom: 0;
}
.cid-vbvlk7eAuL .card-title {
  color: #C4CFDE;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-vbvlk7eAuL .card-title {
    margin-bottom: 10px;
  }
}
.cid-vbvlk7eAuL .card-subtitle {
  color: #C4CFDE;
  margin-bottom: 7px;
}
.cid-vbvlk7eAuL .card-text {
  color: #000000;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-vbvlk7eAuL .mbr-section-btn {
    margin-top: 10px;
    text-align: left !important;
  }
}
.cid-vbvlNCFK1o {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vbvlNCFK1o .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbvlNCFK1o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbvlNCFK1o .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1599px) {
  .cid-vbvlNCFK1o .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cid-vbvlNCFK1o .mbr-section-head {
  width: 100%;
  margin-bottom: 20px;
}
.cid-vbvlNCFK1o .mbr-section-title {
  color: #f9652f;
}
@media (max-width: 767px) {
  .cid-vbvlNCFK1o .mbr-section-title {
    text-align: center;
  }
}
.cid-vbvlNCFK1o .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-vbvlNCFK1o .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-vbvlNCFK1o .item {
  margin: 40px auto 0;
  width: 90% !important;
}
.cid-vbvlNCFK1o .item-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  width: 100%;
  padding: 30px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #d7d7d7, #fafafa);
}
@media (max-width: 991px) {
  .cid-vbvlNCFK1o .item-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-vbvlNCFK1o .item-wrapper {
    padding: 20px;
  }
}
.cid-vbvlNCFK1o .item-left {
  display: flex;
  align-items: center;
  flex-basis: 80%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbvlNCFK1o .item-left {
    flex-basis: 70%;
  }
}
@media (max-width: 991px) {
  .cid-vbvlNCFK1o .item-left {
    flex-basis: 100%;
    flex-wrap: wrap;
  }
}
.cid-vbvlNCFK1o .item-right {
  flex-basis: 20%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbvlNCFK1o .item-right {
    flex-basis: 30%;
  }
}
@media (max-width: 991px) {
  .cid-vbvlNCFK1o .item-right {
    flex-basis: 100%;
  }
}
.cid-vbvlNCFK1o .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-vbvlNCFK1o .item-img {
    max-width: 250px;
  }
}
.cid-vbvlNCFK1o .item-img img {
  width: 100%;
  aspect-ratio: 1.49700599;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-vbvlNCFK1o .item-img:hover img {
  transform: scale(1.05);
}
.cid-vbvlNCFK1o .card-box {
  padding-left: 30px;
}
@media (max-width: 1199px) {
  .cid-vbvlNCFK1o .card-box {
    padding-left: 20px;
    flex-basis: 50%;
  }
}
@media (max-width: 991px) {
  .cid-vbvlNCFK1o .card-box {
    padding-left: 0;
    padding-top: 25px;
    flex-basis: 100%;
  }
}
.cid-vbvlNCFK1o .label-container {
  padding: 3px 8px;
  border-radius: 20px;
  width: fit-content;
  background-color: #434a51;
  margin-bottom: 10px;
}
.cid-vbvlNCFK1o .label-text {
  color: #C4CFDE;
  margin-bottom: 0;
}
.cid-vbvlNCFK1o .card-title {
  color: #C4CFDE;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-vbvlNCFK1o .card-title {
    margin-bottom: 10px;
  }
}
.cid-vbvlNCFK1o .card-subtitle {
  color: #C4CFDE;
  margin-bottom: 7px;
}
.cid-vbvlNCFK1o .card-text {
  color: #000000;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-vbvlNCFK1o .mbr-section-btn {
    margin-top: 10px;
    text-align: left !important;
  }
}
.cid-vbvnde7mL6 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vbvnde7mL6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbvnde7mL6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbvnde7mL6 .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1599px) {
  .cid-vbvnde7mL6 .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cid-vbvnde7mL6 .mbr-section-head {
  width: 100%;
  margin-bottom: 20px;
}
.cid-vbvnde7mL6 .mbr-section-title {
  color: #f9652f;
}
@media (max-width: 767px) {
  .cid-vbvnde7mL6 .mbr-section-title {
    text-align: center;
  }
}
.cid-vbvnde7mL6 .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-vbvnde7mL6 .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-vbvnde7mL6 .item {
  margin: 40px auto 0;
  width: 90% !important;
}
.cid-vbvnde7mL6 .item-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  width: 100%;
  padding: 30px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #d7d7d7, #fafafa);
}
@media (max-width: 991px) {
  .cid-vbvnde7mL6 .item-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-vbvnde7mL6 .item-wrapper {
    padding: 20px;
  }
}
.cid-vbvnde7mL6 .item-left {
  display: flex;
  align-items: center;
  flex-basis: 80%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbvnde7mL6 .item-left {
    flex-basis: 70%;
  }
}
@media (max-width: 991px) {
  .cid-vbvnde7mL6 .item-left {
    flex-basis: 100%;
    flex-wrap: wrap;
  }
}
.cid-vbvnde7mL6 .item-right {
  flex-basis: 20%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbvnde7mL6 .item-right {
    flex-basis: 30%;
  }
}
@media (max-width: 991px) {
  .cid-vbvnde7mL6 .item-right {
    flex-basis: 100%;
  }
}
.cid-vbvnde7mL6 .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-vbvnde7mL6 .item-img {
    max-width: 250px;
  }
}
.cid-vbvnde7mL6 .item-img img {
  width: 100%;
  aspect-ratio: 1.49700599;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-vbvnde7mL6 .item-img:hover img {
  transform: scale(1.05);
}
.cid-vbvnde7mL6 .card-box {
  padding-left: 30px;
}
@media (max-width: 1199px) {
  .cid-vbvnde7mL6 .card-box {
    padding-left: 20px;
    flex-basis: 50%;
  }
}
@media (max-width: 991px) {
  .cid-vbvnde7mL6 .card-box {
    padding-left: 0;
    padding-top: 25px;
    flex-basis: 100%;
  }
}
.cid-vbvnde7mL6 .label-container {
  padding: 3px 8px;
  border-radius: 20px;
  width: fit-content;
  background-color: #434a51;
  margin-bottom: 10px;
}
.cid-vbvnde7mL6 .label-text {
  color: #C4CFDE;
  margin-bottom: 0;
}
.cid-vbvnde7mL6 .card-title {
  color: #C4CFDE;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-vbvnde7mL6 .card-title {
    margin-bottom: 10px;
  }
}
.cid-vbvnde7mL6 .card-subtitle {
  color: #C4CFDE;
  margin-bottom: 7px;
}
.cid-vbvnde7mL6 .card-text {
  color: #000000;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-vbvnde7mL6 .mbr-section-btn {
    margin-top: 10px;
    text-align: left !important;
  }
}
.cid-vbvqiXrkRz {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vbvqiXrkRz .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbvqiXrkRz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbvqiXrkRz .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1599px) {
  .cid-vbvqiXrkRz .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cid-vbvqiXrkRz .mbr-section-head {
  width: 100%;
  margin-bottom: 20px;
}
.cid-vbvqiXrkRz .mbr-section-title {
  color: #f9652f;
}
@media (max-width: 767px) {
  .cid-vbvqiXrkRz .mbr-section-title {
    text-align: center;
  }
}
.cid-vbvqiXrkRz .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-vbvqiXrkRz .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-vbvqiXrkRz .item {
  margin: 40px auto 0;
  width: 90% !important;
}
.cid-vbvqiXrkRz .item-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  width: 100%;
  padding: 30px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #d7d7d7, #fafafa);
}
@media (max-width: 991px) {
  .cid-vbvqiXrkRz .item-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-vbvqiXrkRz .item-wrapper {
    padding: 20px;
  }
}
.cid-vbvqiXrkRz .item-left {
  display: flex;
  align-items: center;
  flex-basis: 80%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbvqiXrkRz .item-left {
    flex-basis: 70%;
  }
}
@media (max-width: 991px) {
  .cid-vbvqiXrkRz .item-left {
    flex-basis: 100%;
    flex-wrap: wrap;
  }
}
.cid-vbvqiXrkRz .item-right {
  flex-basis: 20%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbvqiXrkRz .item-right {
    flex-basis: 30%;
  }
}
@media (max-width: 991px) {
  .cid-vbvqiXrkRz .item-right {
    flex-basis: 100%;
  }
}
.cid-vbvqiXrkRz .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-vbvqiXrkRz .item-img {
    max-width: 250px;
  }
}
.cid-vbvqiXrkRz .item-img img {
  width: 100%;
  aspect-ratio: 1.49700599;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-vbvqiXrkRz .item-img:hover img {
  transform: scale(1.05);
}
.cid-vbvqiXrkRz .card-box {
  padding-left: 30px;
}
@media (max-width: 1199px) {
  .cid-vbvqiXrkRz .card-box {
    padding-left: 20px;
    flex-basis: 50%;
  }
}
@media (max-width: 991px) {
  .cid-vbvqiXrkRz .card-box {
    padding-left: 0;
    padding-top: 25px;
    flex-basis: 100%;
  }
}
.cid-vbvqiXrkRz .label-container {
  padding: 3px 8px;
  border-radius: 20px;
  width: fit-content;
  background-color: #434a51;
  margin-bottom: 10px;
}
.cid-vbvqiXrkRz .label-text {
  color: #C4CFDE;
  margin-bottom: 0;
}
.cid-vbvqiXrkRz .card-title {
  color: #C4CFDE;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-vbvqiXrkRz .card-title {
    margin-bottom: 10px;
  }
}
.cid-vbvqiXrkRz .card-subtitle {
  color: #C4CFDE;
  margin-bottom: 7px;
}
.cid-vbvqiXrkRz .card-text {
  color: #000000;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-vbvqiXrkRz .mbr-section-btn {
    margin-top: 10px;
    text-align: left !important;
  }
}
.cid-vbvxB1jble {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vbvxB1jble .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbvxB1jble .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbvxB1jble .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1599px) {
  .cid-vbvxB1jble .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cid-vbvxB1jble .mbr-section-head {
  width: 100%;
  margin-bottom: 20px;
}
.cid-vbvxB1jble .mbr-section-title {
  color: #f9652f;
}
@media (max-width: 767px) {
  .cid-vbvxB1jble .mbr-section-title {
    text-align: center;
  }
}
.cid-vbvxB1jble .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-vbvxB1jble .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-vbvxB1jble .item {
  margin: 40px auto 0;
  width: 90% !important;
}
.cid-vbvxB1jble .item-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  width: 100%;
  padding: 30px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #d7d7d7, #fafafa);
}
@media (max-width: 991px) {
  .cid-vbvxB1jble .item-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-vbvxB1jble .item-wrapper {
    padding: 20px;
  }
}
.cid-vbvxB1jble .item-left {
  display: flex;
  align-items: center;
  flex-basis: 80%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbvxB1jble .item-left {
    flex-basis: 70%;
  }
}
@media (max-width: 991px) {
  .cid-vbvxB1jble .item-left {
    flex-basis: 100%;
    flex-wrap: wrap;
  }
}
.cid-vbvxB1jble .item-right {
  flex-basis: 20%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbvxB1jble .item-right {
    flex-basis: 30%;
  }
}
@media (max-width: 991px) {
  .cid-vbvxB1jble .item-right {
    flex-basis: 100%;
  }
}
.cid-vbvxB1jble .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-vbvxB1jble .item-img {
    max-width: 250px;
  }
}
.cid-vbvxB1jble .item-img img {
  width: 100%;
  aspect-ratio: 1.49700599;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-vbvxB1jble .item-img:hover img {
  transform: scale(1.05);
}
.cid-vbvxB1jble .card-box {
  padding-left: 30px;
}
@media (max-width: 1199px) {
  .cid-vbvxB1jble .card-box {
    padding-left: 20px;
    flex-basis: 50%;
  }
}
@media (max-width: 991px) {
  .cid-vbvxB1jble .card-box {
    padding-left: 0;
    padding-top: 25px;
    flex-basis: 100%;
  }
}
.cid-vbvxB1jble .label-container {
  padding: 3px 8px;
  border-radius: 20px;
  width: fit-content;
  background-color: #434a51;
  margin-bottom: 10px;
}
.cid-vbvxB1jble .label-text {
  color: #C4CFDE;
  margin-bottom: 0;
}
.cid-vbvxB1jble .card-title {
  color: #C4CFDE;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-vbvxB1jble .card-title {
    margin-bottom: 10px;
  }
}
.cid-vbvxB1jble .card-subtitle {
  color: #C4CFDE;
  margin-bottom: 7px;
}
.cid-vbvxB1jble .card-text {
  color: #000000;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-vbvxB1jble .mbr-section-btn {
    margin-top: 10px;
    text-align: left !important;
  }
}
.cid-vbvzN6g6Fl {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vbvzN6g6Fl .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbvzN6g6Fl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbvzN6g6Fl .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1599px) {
  .cid-vbvzN6g6Fl .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cid-vbvzN6g6Fl .mbr-section-head {
  width: 100%;
  margin-bottom: 20px;
}
.cid-vbvzN6g6Fl .mbr-section-title {
  color: #f9652f;
}
@media (max-width: 767px) {
  .cid-vbvzN6g6Fl .mbr-section-title {
    text-align: center;
  }
}
.cid-vbvzN6g6Fl .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-vbvzN6g6Fl .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-vbvzN6g6Fl .item {
  margin: 40px auto 0;
  width: 90% !important;
}
.cid-vbvzN6g6Fl .item-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  width: 100%;
  padding: 30px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #d7d7d7, #fafafa);
}
@media (max-width: 991px) {
  .cid-vbvzN6g6Fl .item-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-vbvzN6g6Fl .item-wrapper {
    padding: 20px;
  }
}
.cid-vbvzN6g6Fl .item-left {
  display: flex;
  align-items: center;
  flex-basis: 80%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbvzN6g6Fl .item-left {
    flex-basis: 70%;
  }
}
@media (max-width: 991px) {
  .cid-vbvzN6g6Fl .item-left {
    flex-basis: 100%;
    flex-wrap: wrap;
  }
}
.cid-vbvzN6g6Fl .item-right {
  flex-basis: 20%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbvzN6g6Fl .item-right {
    flex-basis: 30%;
  }
}
@media (max-width: 991px) {
  .cid-vbvzN6g6Fl .item-right {
    flex-basis: 100%;
  }
}
.cid-vbvzN6g6Fl .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-vbvzN6g6Fl .item-img {
    max-width: 250px;
  }
}
.cid-vbvzN6g6Fl .item-img img {
  width: 100%;
  aspect-ratio: 1.49700599;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-vbvzN6g6Fl .item-img:hover img {
  transform: scale(1.05);
}
.cid-vbvzN6g6Fl .card-box {
  padding-left: 30px;
}
@media (max-width: 1199px) {
  .cid-vbvzN6g6Fl .card-box {
    padding-left: 20px;
    flex-basis: 50%;
  }
}
@media (max-width: 991px) {
  .cid-vbvzN6g6Fl .card-box {
    padding-left: 0;
    padding-top: 25px;
    flex-basis: 100%;
  }
}
.cid-vbvzN6g6Fl .label-container {
  padding: 3px 8px;
  border-radius: 20px;
  width: fit-content;
  background-color: #434a51;
  margin-bottom: 10px;
}
.cid-vbvzN6g6Fl .label-text {
  color: #C4CFDE;
  margin-bottom: 0;
}
.cid-vbvzN6g6Fl .card-title {
  color: #C4CFDE;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-vbvzN6g6Fl .card-title {
    margin-bottom: 10px;
  }
}
.cid-vbvzN6g6Fl .card-subtitle {
  color: #C4CFDE;
  margin-bottom: 7px;
}
.cid-vbvzN6g6Fl .card-text {
  color: #000000;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-vbvzN6g6Fl .mbr-section-btn {
    margin-top: 10px;
    text-align: left !important;
  }
}
.cid-vbvA3eDzk4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vbvA3eDzk4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbvA3eDzk4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbvA3eDzk4 .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1599px) {
  .cid-vbvA3eDzk4 .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cid-vbvA3eDzk4 .mbr-section-head {
  width: 100%;
  margin-bottom: 20px;
}
.cid-vbvA3eDzk4 .mbr-section-title {
  color: #f9652f;
}
@media (max-width: 767px) {
  .cid-vbvA3eDzk4 .mbr-section-title {
    text-align: center;
  }
}
.cid-vbvA3eDzk4 .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-vbvA3eDzk4 .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-vbvA3eDzk4 .item {
  margin: 40px auto 0;
  width: 90% !important;
}
.cid-vbvA3eDzk4 .item-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  width: 100%;
  padding: 30px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #d7d7d7, #fafafa);
}
@media (max-width: 991px) {
  .cid-vbvA3eDzk4 .item-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-vbvA3eDzk4 .item-wrapper {
    padding: 20px;
  }
}
.cid-vbvA3eDzk4 .item-left {
  display: flex;
  align-items: center;
  flex-basis: 80%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbvA3eDzk4 .item-left {
    flex-basis: 70%;
  }
}
@media (max-width: 991px) {
  .cid-vbvA3eDzk4 .item-left {
    flex-basis: 100%;
    flex-wrap: wrap;
  }
}
.cid-vbvA3eDzk4 .item-right {
  flex-basis: 20%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbvA3eDzk4 .item-right {
    flex-basis: 30%;
  }
}
@media (max-width: 991px) {
  .cid-vbvA3eDzk4 .item-right {
    flex-basis: 100%;
  }
}
.cid-vbvA3eDzk4 .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-vbvA3eDzk4 .item-img {
    max-width: 250px;
  }
}
.cid-vbvA3eDzk4 .item-img img {
  width: 100%;
  aspect-ratio: 1.49700599;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-vbvA3eDzk4 .item-img:hover img {
  transform: scale(1.05);
}
.cid-vbvA3eDzk4 .card-box {
  padding-left: 30px;
}
@media (max-width: 1199px) {
  .cid-vbvA3eDzk4 .card-box {
    padding-left: 20px;
    flex-basis: 50%;
  }
}
@media (max-width: 991px) {
  .cid-vbvA3eDzk4 .card-box {
    padding-left: 0;
    padding-top: 25px;
    flex-basis: 100%;
  }
}
.cid-vbvA3eDzk4 .label-container {
  padding: 3px 8px;
  border-radius: 20px;
  width: fit-content;
  background-color: #434a51;
  margin-bottom: 10px;
}
.cid-vbvA3eDzk4 .label-text {
  color: #C4CFDE;
  margin-bottom: 0;
}
.cid-vbvA3eDzk4 .card-title {
  color: #C4CFDE;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-vbvA3eDzk4 .card-title {
    margin-bottom: 10px;
  }
}
.cid-vbvA3eDzk4 .card-subtitle {
  color: #C4CFDE;
  margin-bottom: 7px;
}
.cid-vbvA3eDzk4 .card-text {
  color: #000000;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-vbvA3eDzk4 .mbr-section-btn {
    margin-top: 10px;
    text-align: left !important;
  }
}
.cid-vbvAwc6UWI {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vbvAwc6UWI .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbvAwc6UWI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbvAwc6UWI .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1599px) {
  .cid-vbvAwc6UWI .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cid-vbvAwc6UWI .mbr-section-head {
  width: 100%;
  margin-bottom: 20px;
}
.cid-vbvAwc6UWI .mbr-section-title {
  color: #f9652f;
}
@media (max-width: 767px) {
  .cid-vbvAwc6UWI .mbr-section-title {
    text-align: center;
  }
}
.cid-vbvAwc6UWI .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-vbvAwc6UWI .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-vbvAwc6UWI .item {
  margin: 40px auto 0;
  width: 90% !important;
}
.cid-vbvAwc6UWI .item-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  width: 100%;
  padding: 30px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #d7d7d7, #fafafa);
}
@media (max-width: 991px) {
  .cid-vbvAwc6UWI .item-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-vbvAwc6UWI .item-wrapper {
    padding: 20px;
  }
}
.cid-vbvAwc6UWI .item-left {
  display: flex;
  align-items: center;
  flex-basis: 80%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbvAwc6UWI .item-left {
    flex-basis: 70%;
  }
}
@media (max-width: 991px) {
  .cid-vbvAwc6UWI .item-left {
    flex-basis: 100%;
    flex-wrap: wrap;
  }
}
.cid-vbvAwc6UWI .item-right {
  flex-basis: 20%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbvAwc6UWI .item-right {
    flex-basis: 30%;
  }
}
@media (max-width: 991px) {
  .cid-vbvAwc6UWI .item-right {
    flex-basis: 100%;
  }
}
.cid-vbvAwc6UWI .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-vbvAwc6UWI .item-img {
    max-width: 250px;
  }
}
.cid-vbvAwc6UWI .item-img img {
  width: 100%;
  aspect-ratio: 1.49700599;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-vbvAwc6UWI .item-img:hover img {
  transform: scale(1.05);
}
.cid-vbvAwc6UWI .card-box {
  padding-left: 30px;
}
@media (max-width: 1199px) {
  .cid-vbvAwc6UWI .card-box {
    padding-left: 20px;
    flex-basis: 50%;
  }
}
@media (max-width: 991px) {
  .cid-vbvAwc6UWI .card-box {
    padding-left: 0;
    padding-top: 25px;
    flex-basis: 100%;
  }
}
.cid-vbvAwc6UWI .label-container {
  padding: 3px 8px;
  border-radius: 20px;
  width: fit-content;
  background-color: #434a51;
  margin-bottom: 10px;
}
.cid-vbvAwc6UWI .label-text {
  color: #C4CFDE;
  margin-bottom: 0;
}
.cid-vbvAwc6UWI .card-title {
  color: #C4CFDE;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-vbvAwc6UWI .card-title {
    margin-bottom: 10px;
  }
}
.cid-vbvAwc6UWI .card-subtitle {
  color: #C4CFDE;
  margin-bottom: 7px;
}
.cid-vbvAwc6UWI .card-text {
  color: #000000;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-vbvAwc6UWI .mbr-section-btn {
    margin-top: 10px;
    text-align: left !important;
  }
}
.cid-vbvAIgS0Lq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vbvAIgS0Lq .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbvAIgS0Lq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbvAIgS0Lq .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1599px) {
  .cid-vbvAIgS0Lq .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cid-vbvAIgS0Lq .mbr-section-head {
  width: 100%;
  margin-bottom: 20px;
}
.cid-vbvAIgS0Lq .mbr-section-title {
  color: #f9652f;
}
@media (max-width: 767px) {
  .cid-vbvAIgS0Lq .mbr-section-title {
    text-align: center;
  }
}
.cid-vbvAIgS0Lq .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-vbvAIgS0Lq .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-vbvAIgS0Lq .item {
  margin: 40px auto 0;
  width: 90% !important;
}
.cid-vbvAIgS0Lq .item-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  width: 100%;
  padding: 30px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #d7d7d7, #fafafa);
}
@media (max-width: 991px) {
  .cid-vbvAIgS0Lq .item-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-vbvAIgS0Lq .item-wrapper {
    padding: 20px;
  }
}
.cid-vbvAIgS0Lq .item-left {
  display: flex;
  align-items: center;
  flex-basis: 80%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbvAIgS0Lq .item-left {
    flex-basis: 70%;
  }
}
@media (max-width: 991px) {
  .cid-vbvAIgS0Lq .item-left {
    flex-basis: 100%;
    flex-wrap: wrap;
  }
}
.cid-vbvAIgS0Lq .item-right {
  flex-basis: 20%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbvAIgS0Lq .item-right {
    flex-basis: 30%;
  }
}
@media (max-width: 991px) {
  .cid-vbvAIgS0Lq .item-right {
    flex-basis: 100%;
  }
}
.cid-vbvAIgS0Lq .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-vbvAIgS0Lq .item-img {
    max-width: 250px;
  }
}
.cid-vbvAIgS0Lq .item-img img {
  width: 100%;
  aspect-ratio: 1.49700599;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-vbvAIgS0Lq .item-img:hover img {
  transform: scale(1.05);
}
.cid-vbvAIgS0Lq .card-box {
  padding-left: 30px;
}
@media (max-width: 1199px) {
  .cid-vbvAIgS0Lq .card-box {
    padding-left: 20px;
    flex-basis: 50%;
  }
}
@media (max-width: 991px) {
  .cid-vbvAIgS0Lq .card-box {
    padding-left: 0;
    padding-top: 25px;
    flex-basis: 100%;
  }
}
.cid-vbvAIgS0Lq .label-container {
  padding: 3px 8px;
  border-radius: 20px;
  width: fit-content;
  background-color: #434a51;
  margin-bottom: 10px;
}
.cid-vbvAIgS0Lq .label-text {
  color: #C4CFDE;
  margin-bottom: 0;
}
.cid-vbvAIgS0Lq .card-title {
  color: #C4CFDE;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-vbvAIgS0Lq .card-title {
    margin-bottom: 10px;
  }
}
.cid-vbvAIgS0Lq .card-subtitle {
  color: #C4CFDE;
  margin-bottom: 7px;
}
.cid-vbvAIgS0Lq .card-text {
  color: #000000;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-vbvAIgS0Lq .mbr-section-btn {
    margin-top: 10px;
    text-align: left !important;
  }
}
.cid-vbvD3cupgM {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vbvD3cupgM .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbvD3cupgM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbvD3cupgM .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1599px) {
  .cid-vbvD3cupgM .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cid-vbvD3cupgM .mbr-section-head {
  width: 100%;
  margin-bottom: 20px;
}
.cid-vbvD3cupgM .mbr-section-title {
  color: #f9652f;
}
@media (max-width: 767px) {
  .cid-vbvD3cupgM .mbr-section-title {
    text-align: center;
  }
}
.cid-vbvD3cupgM .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-vbvD3cupgM .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-vbvD3cupgM .item {
  margin: 40px auto 0;
  width: 90% !important;
}
.cid-vbvD3cupgM .item-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  width: 100%;
  padding: 30px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #d7d7d7, #fafafa);
}
@media (max-width: 991px) {
  .cid-vbvD3cupgM .item-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-vbvD3cupgM .item-wrapper {
    padding: 20px;
  }
}
.cid-vbvD3cupgM .item-left {
  display: flex;
  align-items: center;
  flex-basis: 80%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbvD3cupgM .item-left {
    flex-basis: 70%;
  }
}
@media (max-width: 991px) {
  .cid-vbvD3cupgM .item-left {
    flex-basis: 100%;
    flex-wrap: wrap;
  }
}
.cid-vbvD3cupgM .item-right {
  flex-basis: 20%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbvD3cupgM .item-right {
    flex-basis: 30%;
  }
}
@media (max-width: 991px) {
  .cid-vbvD3cupgM .item-right {
    flex-basis: 100%;
  }
}
.cid-vbvD3cupgM .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-vbvD3cupgM .item-img {
    max-width: 250px;
  }
}
.cid-vbvD3cupgM .item-img img {
  width: 100%;
  aspect-ratio: 1.49700599;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-vbvD3cupgM .item-img:hover img {
  transform: scale(1.05);
}
.cid-vbvD3cupgM .card-box {
  padding-left: 30px;
}
@media (max-width: 1199px) {
  .cid-vbvD3cupgM .card-box {
    padding-left: 20px;
    flex-basis: 50%;
  }
}
@media (max-width: 991px) {
  .cid-vbvD3cupgM .card-box {
    padding-left: 0;
    padding-top: 25px;
    flex-basis: 100%;
  }
}
.cid-vbvD3cupgM .label-container {
  padding: 3px 8px;
  border-radius: 20px;
  width: fit-content;
  background-color: #434a51;
  margin-bottom: 10px;
}
.cid-vbvD3cupgM .label-text {
  color: #C4CFDE;
  margin-bottom: 0;
}
.cid-vbvD3cupgM .card-title {
  color: #C4CFDE;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-vbvD3cupgM .card-title {
    margin-bottom: 10px;
  }
}
.cid-vbvD3cupgM .card-subtitle {
  color: #C4CFDE;
  margin-bottom: 7px;
}
.cid-vbvD3cupgM .card-text {
  color: #000000;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-vbvD3cupgM .mbr-section-btn {
    margin-top: 10px;
    text-align: left !important;
  }
}
.cid-vbvFxYpRht {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vbvFxYpRht .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbvFxYpRht .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbvFxYpRht .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1599px) {
  .cid-vbvFxYpRht .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cid-vbvFxYpRht .mbr-section-head {
  width: 100%;
  margin-bottom: 20px;
}
.cid-vbvFxYpRht .mbr-section-title {
  color: #f9652f;
}
@media (max-width: 767px) {
  .cid-vbvFxYpRht .mbr-section-title {
    text-align: center;
  }
}
.cid-vbvFxYpRht .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-vbvFxYpRht .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-vbvFxYpRht .item {
  margin: 40px auto 0;
  width: 90% !important;
}
.cid-vbvFxYpRht .item-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  width: 100%;
  padding: 30px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #d7d7d7, #fafafa);
}
@media (max-width: 991px) {
  .cid-vbvFxYpRht .item-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-vbvFxYpRht .item-wrapper {
    padding: 20px;
  }
}
.cid-vbvFxYpRht .item-left {
  display: flex;
  align-items: center;
  flex-basis: 80%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbvFxYpRht .item-left {
    flex-basis: 70%;
  }
}
@media (max-width: 991px) {
  .cid-vbvFxYpRht .item-left {
    flex-basis: 100%;
    flex-wrap: wrap;
  }
}
.cid-vbvFxYpRht .item-right {
  flex-basis: 20%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbvFxYpRht .item-right {
    flex-basis: 30%;
  }
}
@media (max-width: 991px) {
  .cid-vbvFxYpRht .item-right {
    flex-basis: 100%;
  }
}
.cid-vbvFxYpRht .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-vbvFxYpRht .item-img {
    max-width: 250px;
  }
}
.cid-vbvFxYpRht .item-img img {
  width: 100%;
  aspect-ratio: 1.49700599;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-vbvFxYpRht .item-img:hover img {
  transform: scale(1.05);
}
.cid-vbvFxYpRht .card-box {
  padding-left: 30px;
}
@media (max-width: 1199px) {
  .cid-vbvFxYpRht .card-box {
    padding-left: 20px;
    flex-basis: 50%;
  }
}
@media (max-width: 991px) {
  .cid-vbvFxYpRht .card-box {
    padding-left: 0;
    padding-top: 25px;
    flex-basis: 100%;
  }
}
.cid-vbvFxYpRht .label-container {
  padding: 3px 8px;
  border-radius: 20px;
  width: fit-content;
  background-color: #434a51;
  margin-bottom: 10px;
}
.cid-vbvFxYpRht .label-text {
  color: #C4CFDE;
  margin-bottom: 0;
}
.cid-vbvFxYpRht .card-title {
  color: #C4CFDE;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-vbvFxYpRht .card-title {
    margin-bottom: 10px;
  }
}
.cid-vbvFxYpRht .card-subtitle {
  color: #C4CFDE;
  margin-bottom: 7px;
}
.cid-vbvFxYpRht .card-text {
  color: #000000;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-vbvFxYpRht .mbr-section-btn {
    margin-top: 10px;
    text-align: left !important;
  }
}
.cid-vbvFWTL3yz {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vbvFWTL3yz .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbvFWTL3yz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbvFWTL3yz .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1599px) {
  .cid-vbvFWTL3yz .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cid-vbvFWTL3yz .mbr-section-head {
  width: 100%;
  margin-bottom: 20px;
}
.cid-vbvFWTL3yz .mbr-section-title {
  color: #f9652f;
}
@media (max-width: 767px) {
  .cid-vbvFWTL3yz .mbr-section-title {
    text-align: center;
  }
}
.cid-vbvFWTL3yz .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-vbvFWTL3yz .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-vbvFWTL3yz .item {
  margin: 40px auto 0;
  width: 90% !important;
}
.cid-vbvFWTL3yz .item-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  width: 100%;
  padding: 30px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #d7d7d7, #fafafa);
}
@media (max-width: 991px) {
  .cid-vbvFWTL3yz .item-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-vbvFWTL3yz .item-wrapper {
    padding: 20px;
  }
}
.cid-vbvFWTL3yz .item-left {
  display: flex;
  align-items: center;
  flex-basis: 80%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbvFWTL3yz .item-left {
    flex-basis: 70%;
  }
}
@media (max-width: 991px) {
  .cid-vbvFWTL3yz .item-left {
    flex-basis: 100%;
    flex-wrap: wrap;
  }
}
.cid-vbvFWTL3yz .item-right {
  flex-basis: 20%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbvFWTL3yz .item-right {
    flex-basis: 30%;
  }
}
@media (max-width: 991px) {
  .cid-vbvFWTL3yz .item-right {
    flex-basis: 100%;
  }
}
.cid-vbvFWTL3yz .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-vbvFWTL3yz .item-img {
    max-width: 250px;
  }
}
.cid-vbvFWTL3yz .item-img img {
  width: 100%;
  aspect-ratio: 1.49700599;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-vbvFWTL3yz .item-img:hover img {
  transform: scale(1.05);
}
.cid-vbvFWTL3yz .card-box {
  padding-left: 30px;
}
@media (max-width: 1199px) {
  .cid-vbvFWTL3yz .card-box {
    padding-left: 20px;
    flex-basis: 50%;
  }
}
@media (max-width: 991px) {
  .cid-vbvFWTL3yz .card-box {
    padding-left: 0;
    padding-top: 25px;
    flex-basis: 100%;
  }
}
.cid-vbvFWTL3yz .label-container {
  padding: 3px 8px;
  border-radius: 20px;
  width: fit-content;
  background-color: #434a51;
  margin-bottom: 10px;
}
.cid-vbvFWTL3yz .label-text {
  color: #C4CFDE;
  margin-bottom: 0;
}
.cid-vbvFWTL3yz .card-title {
  color: #C4CFDE;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-vbvFWTL3yz .card-title {
    margin-bottom: 10px;
  }
}
.cid-vbvFWTL3yz .card-subtitle {
  color: #C4CFDE;
  margin-bottom: 7px;
}
.cid-vbvFWTL3yz .card-text {
  color: #000000;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-vbvFWTL3yz .mbr-section-btn {
    margin-top: 10px;
    text-align: left !important;
  }
}
.cid-vbvGdPCYBd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vbvGdPCYBd .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbvGdPCYBd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbvGdPCYBd .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1599px) {
  .cid-vbvGdPCYBd .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cid-vbvGdPCYBd .mbr-section-head {
  width: 100%;
  margin-bottom: 20px;
}
.cid-vbvGdPCYBd .mbr-section-title {
  color: #f9652f;
}
@media (max-width: 767px) {
  .cid-vbvGdPCYBd .mbr-section-title {
    text-align: center;
  }
}
.cid-vbvGdPCYBd .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-vbvGdPCYBd .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-vbvGdPCYBd .item {
  margin: 40px auto 0;
  width: 90% !important;
}
.cid-vbvGdPCYBd .item-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  width: 100%;
  padding: 30px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #d7d7d7, #fafafa);
}
@media (max-width: 991px) {
  .cid-vbvGdPCYBd .item-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-vbvGdPCYBd .item-wrapper {
    padding: 20px;
  }
}
.cid-vbvGdPCYBd .item-left {
  display: flex;
  align-items: center;
  flex-basis: 80%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbvGdPCYBd .item-left {
    flex-basis: 70%;
  }
}
@media (max-width: 991px) {
  .cid-vbvGdPCYBd .item-left {
    flex-basis: 100%;
    flex-wrap: wrap;
  }
}
.cid-vbvGdPCYBd .item-right {
  flex-basis: 20%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbvGdPCYBd .item-right {
    flex-basis: 30%;
  }
}
@media (max-width: 991px) {
  .cid-vbvGdPCYBd .item-right {
    flex-basis: 100%;
  }
}
.cid-vbvGdPCYBd .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-vbvGdPCYBd .item-img {
    max-width: 250px;
  }
}
.cid-vbvGdPCYBd .item-img img {
  width: 100%;
  aspect-ratio: 1.49700599;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-vbvGdPCYBd .item-img:hover img {
  transform: scale(1.05);
}
.cid-vbvGdPCYBd .card-box {
  padding-left: 30px;
}
@media (max-width: 1199px) {
  .cid-vbvGdPCYBd .card-box {
    padding-left: 20px;
    flex-basis: 50%;
  }
}
@media (max-width: 991px) {
  .cid-vbvGdPCYBd .card-box {
    padding-left: 0;
    padding-top: 25px;
    flex-basis: 100%;
  }
}
.cid-vbvGdPCYBd .label-container {
  padding: 3px 8px;
  border-radius: 20px;
  width: fit-content;
  background-color: #434a51;
  margin-bottom: 10px;
}
.cid-vbvGdPCYBd .label-text {
  color: #C4CFDE;
  margin-bottom: 0;
}
.cid-vbvGdPCYBd .card-title {
  color: #C4CFDE;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-vbvGdPCYBd .card-title {
    margin-bottom: 10px;
  }
}
.cid-vbvGdPCYBd .card-subtitle {
  color: #C4CFDE;
  margin-bottom: 7px;
}
.cid-vbvGdPCYBd .card-text {
  color: #000000;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-vbvGdPCYBd .mbr-section-btn {
    margin-top: 10px;
    text-align: left !important;
  }
}
.cid-vbvGMJHZN3 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vbvGMJHZN3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbvGMJHZN3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbvGMJHZN3 .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1599px) {
  .cid-vbvGMJHZN3 .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cid-vbvGMJHZN3 .mbr-section-head {
  width: 100%;
  margin-bottom: 20px;
}
.cid-vbvGMJHZN3 .mbr-section-title {
  color: #f9652f;
}
@media (max-width: 767px) {
  .cid-vbvGMJHZN3 .mbr-section-title {
    text-align: center;
  }
}
.cid-vbvGMJHZN3 .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-vbvGMJHZN3 .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-vbvGMJHZN3 .item {
  margin: 40px auto 0;
  width: 90% !important;
}
.cid-vbvGMJHZN3 .item-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  width: 100%;
  padding: 30px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #d7d7d7, #fafafa);
}
@media (max-width: 991px) {
  .cid-vbvGMJHZN3 .item-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-vbvGMJHZN3 .item-wrapper {
    padding: 20px;
  }
}
.cid-vbvGMJHZN3 .item-left {
  display: flex;
  align-items: center;
  flex-basis: 80%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbvGMJHZN3 .item-left {
    flex-basis: 70%;
  }
}
@media (max-width: 991px) {
  .cid-vbvGMJHZN3 .item-left {
    flex-basis: 100%;
    flex-wrap: wrap;
  }
}
.cid-vbvGMJHZN3 .item-right {
  flex-basis: 20%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbvGMJHZN3 .item-right {
    flex-basis: 30%;
  }
}
@media (max-width: 991px) {
  .cid-vbvGMJHZN3 .item-right {
    flex-basis: 100%;
  }
}
.cid-vbvGMJHZN3 .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-vbvGMJHZN3 .item-img {
    max-width: 250px;
  }
}
.cid-vbvGMJHZN3 .item-img img {
  width: 100%;
  aspect-ratio: 1.49700599;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-vbvGMJHZN3 .item-img:hover img {
  transform: scale(1.05);
}
.cid-vbvGMJHZN3 .card-box {
  padding-left: 30px;
}
@media (max-width: 1199px) {
  .cid-vbvGMJHZN3 .card-box {
    padding-left: 20px;
    flex-basis: 50%;
  }
}
@media (max-width: 991px) {
  .cid-vbvGMJHZN3 .card-box {
    padding-left: 0;
    padding-top: 25px;
    flex-basis: 100%;
  }
}
.cid-vbvGMJHZN3 .label-container {
  padding: 3px 8px;
  border-radius: 20px;
  width: fit-content;
  background-color: #434a51;
  margin-bottom: 10px;
}
.cid-vbvGMJHZN3 .label-text {
  color: #C4CFDE;
  margin-bottom: 0;
}
.cid-vbvGMJHZN3 .card-title {
  color: #C4CFDE;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-vbvGMJHZN3 .card-title {
    margin-bottom: 10px;
  }
}
.cid-vbvGMJHZN3 .card-subtitle {
  color: #C4CFDE;
  margin-bottom: 7px;
}
.cid-vbvGMJHZN3 .card-text {
  color: #000000;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-vbvGMJHZN3 .mbr-section-btn {
    margin-top: 10px;
    text-align: left !important;
  }
}
.cid-vbvHZ1HyL5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vbvHZ1HyL5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbvHZ1HyL5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbvHZ1HyL5 .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1599px) {
  .cid-vbvHZ1HyL5 .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cid-vbvHZ1HyL5 .mbr-section-head {
  width: 100%;
  margin-bottom: 20px;
}
.cid-vbvHZ1HyL5 .mbr-section-title {
  color: #f9652f;
}
@media (max-width: 767px) {
  .cid-vbvHZ1HyL5 .mbr-section-title {
    text-align: center;
  }
}
.cid-vbvHZ1HyL5 .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-vbvHZ1HyL5 .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-vbvHZ1HyL5 .item {
  margin: 40px auto 0;
  width: 90% !important;
}
.cid-vbvHZ1HyL5 .item-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  width: 100%;
  padding: 30px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #d7d7d7, #fafafa);
}
@media (max-width: 991px) {
  .cid-vbvHZ1HyL5 .item-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-vbvHZ1HyL5 .item-wrapper {
    padding: 20px;
  }
}
.cid-vbvHZ1HyL5 .item-left {
  display: flex;
  align-items: center;
  flex-basis: 80%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbvHZ1HyL5 .item-left {
    flex-basis: 70%;
  }
}
@media (max-width: 991px) {
  .cid-vbvHZ1HyL5 .item-left {
    flex-basis: 100%;
    flex-wrap: wrap;
  }
}
.cid-vbvHZ1HyL5 .item-right {
  flex-basis: 20%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbvHZ1HyL5 .item-right {
    flex-basis: 30%;
  }
}
@media (max-width: 991px) {
  .cid-vbvHZ1HyL5 .item-right {
    flex-basis: 100%;
  }
}
.cid-vbvHZ1HyL5 .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-vbvHZ1HyL5 .item-img {
    max-width: 250px;
  }
}
.cid-vbvHZ1HyL5 .item-img img {
  width: 100%;
  aspect-ratio: 1.49700599;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-vbvHZ1HyL5 .item-img:hover img {
  transform: scale(1.05);
}
.cid-vbvHZ1HyL5 .card-box {
  padding-left: 30px;
}
@media (max-width: 1199px) {
  .cid-vbvHZ1HyL5 .card-box {
    padding-left: 20px;
    flex-basis: 50%;
  }
}
@media (max-width: 991px) {
  .cid-vbvHZ1HyL5 .card-box {
    padding-left: 0;
    padding-top: 25px;
    flex-basis: 100%;
  }
}
.cid-vbvHZ1HyL5 .label-container {
  padding: 3px 8px;
  border-radius: 20px;
  width: fit-content;
  background-color: #434a51;
  margin-bottom: 10px;
}
.cid-vbvHZ1HyL5 .label-text {
  color: #C4CFDE;
  margin-bottom: 0;
}
.cid-vbvHZ1HyL5 .card-title {
  color: #C4CFDE;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-vbvHZ1HyL5 .card-title {
    margin-bottom: 10px;
  }
}
.cid-vbvHZ1HyL5 .card-subtitle {
  color: #C4CFDE;
  margin-bottom: 7px;
}
.cid-vbvHZ1HyL5 .card-text {
  color: #000000;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-vbvHZ1HyL5 .mbr-section-btn {
    margin-top: 10px;
    text-align: left !important;
  }
}
.cid-vbvIfUsj6V {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vbvIfUsj6V .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbvIfUsj6V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbvIfUsj6V .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1599px) {
  .cid-vbvIfUsj6V .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cid-vbvIfUsj6V .mbr-section-head {
  width: 100%;
  margin-bottom: 20px;
}
.cid-vbvIfUsj6V .mbr-section-title {
  color: #f9652f;
}
@media (max-width: 767px) {
  .cid-vbvIfUsj6V .mbr-section-title {
    text-align: center;
  }
}
.cid-vbvIfUsj6V .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-vbvIfUsj6V .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-vbvIfUsj6V .item {
  margin: 40px auto 0;
  width: 90% !important;
}
.cid-vbvIfUsj6V .item-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  width: 100%;
  padding: 30px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #d7d7d7, #fafafa);
}
@media (max-width: 991px) {
  .cid-vbvIfUsj6V .item-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-vbvIfUsj6V .item-wrapper {
    padding: 20px;
  }
}
.cid-vbvIfUsj6V .item-left {
  display: flex;
  align-items: center;
  flex-basis: 80%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbvIfUsj6V .item-left {
    flex-basis: 70%;
  }
}
@media (max-width: 991px) {
  .cid-vbvIfUsj6V .item-left {
    flex-basis: 100%;
    flex-wrap: wrap;
  }
}
.cid-vbvIfUsj6V .item-right {
  flex-basis: 20%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbvIfUsj6V .item-right {
    flex-basis: 30%;
  }
}
@media (max-width: 991px) {
  .cid-vbvIfUsj6V .item-right {
    flex-basis: 100%;
  }
}
.cid-vbvIfUsj6V .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-vbvIfUsj6V .item-img {
    max-width: 250px;
  }
}
.cid-vbvIfUsj6V .item-img img {
  width: 100%;
  aspect-ratio: 1.49700599;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-vbvIfUsj6V .item-img:hover img {
  transform: scale(1.05);
}
.cid-vbvIfUsj6V .card-box {
  padding-left: 30px;
}
@media (max-width: 1199px) {
  .cid-vbvIfUsj6V .card-box {
    padding-left: 20px;
    flex-basis: 50%;
  }
}
@media (max-width: 991px) {
  .cid-vbvIfUsj6V .card-box {
    padding-left: 0;
    padding-top: 25px;
    flex-basis: 100%;
  }
}
.cid-vbvIfUsj6V .label-container {
  padding: 3px 8px;
  border-radius: 20px;
  width: fit-content;
  background-color: #434a51;
  margin-bottom: 10px;
}
.cid-vbvIfUsj6V .label-text {
  color: #C4CFDE;
  margin-bottom: 0;
}
.cid-vbvIfUsj6V .card-title {
  color: #C4CFDE;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-vbvIfUsj6V .card-title {
    margin-bottom: 10px;
  }
}
.cid-vbvIfUsj6V .card-subtitle {
  color: #C4CFDE;
  margin-bottom: 7px;
}
.cid-vbvIfUsj6V .card-text {
  color: #000000;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-vbvIfUsj6V .mbr-section-btn {
    margin-top: 10px;
    text-align: left !important;
  }
}
.cid-vbvIwtgwtI {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vbvIwtgwtI .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbvIwtgwtI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbvIwtgwtI .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1599px) {
  .cid-vbvIwtgwtI .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cid-vbvIwtgwtI .mbr-section-head {
  width: 100%;
  margin-bottom: 20px;
}
.cid-vbvIwtgwtI .mbr-section-title {
  color: #f9652f;
}
@media (max-width: 767px) {
  .cid-vbvIwtgwtI .mbr-section-title {
    text-align: center;
  }
}
.cid-vbvIwtgwtI .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-vbvIwtgwtI .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-vbvIwtgwtI .item {
  margin: 40px auto 0;
  width: 90% !important;
}
.cid-vbvIwtgwtI .item-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  width: 100%;
  padding: 30px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #d7d7d7, #fafafa);
}
@media (max-width: 991px) {
  .cid-vbvIwtgwtI .item-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-vbvIwtgwtI .item-wrapper {
    padding: 20px;
  }
}
.cid-vbvIwtgwtI .item-left {
  display: flex;
  align-items: center;
  flex-basis: 80%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbvIwtgwtI .item-left {
    flex-basis: 70%;
  }
}
@media (max-width: 991px) {
  .cid-vbvIwtgwtI .item-left {
    flex-basis: 100%;
    flex-wrap: wrap;
  }
}
.cid-vbvIwtgwtI .item-right {
  flex-basis: 20%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbvIwtgwtI .item-right {
    flex-basis: 30%;
  }
}
@media (max-width: 991px) {
  .cid-vbvIwtgwtI .item-right {
    flex-basis: 100%;
  }
}
.cid-vbvIwtgwtI .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-vbvIwtgwtI .item-img {
    max-width: 250px;
  }
}
.cid-vbvIwtgwtI .item-img img {
  width: 100%;
  aspect-ratio: 1.49700599;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-vbvIwtgwtI .item-img:hover img {
  transform: scale(1.05);
}
.cid-vbvIwtgwtI .card-box {
  padding-left: 30px;
}
@media (max-width: 1199px) {
  .cid-vbvIwtgwtI .card-box {
    padding-left: 20px;
    flex-basis: 50%;
  }
}
@media (max-width: 991px) {
  .cid-vbvIwtgwtI .card-box {
    padding-left: 0;
    padding-top: 25px;
    flex-basis: 100%;
  }
}
.cid-vbvIwtgwtI .label-container {
  padding: 3px 8px;
  border-radius: 20px;
  width: fit-content;
  background-color: #434a51;
  margin-bottom: 10px;
}
.cid-vbvIwtgwtI .label-text {
  color: #C4CFDE;
  margin-bottom: 0;
}
.cid-vbvIwtgwtI .card-title {
  color: #C4CFDE;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-vbvIwtgwtI .card-title {
    margin-bottom: 10px;
  }
}
.cid-vbvIwtgwtI .card-subtitle {
  color: #C4CFDE;
  margin-bottom: 7px;
}
.cid-vbvIwtgwtI .card-text {
  color: #000000;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-vbvIwtgwtI .mbr-section-btn {
    margin-top: 10px;
    text-align: left !important;
  }
}
.cid-vbvIPHlUBf {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vbvIPHlUBf .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbvIPHlUBf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbvIPHlUBf .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1599px) {
  .cid-vbvIPHlUBf .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cid-vbvIPHlUBf .mbr-section-head {
  width: 100%;
  margin-bottom: 20px;
}
.cid-vbvIPHlUBf .mbr-section-title {
  color: #f9652f;
}
@media (max-width: 767px) {
  .cid-vbvIPHlUBf .mbr-section-title {
    text-align: center;
  }
}
.cid-vbvIPHlUBf .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-vbvIPHlUBf .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-vbvIPHlUBf .item {
  margin: 40px auto 0;
  width: 90% !important;
}
.cid-vbvIPHlUBf .item-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  width: 100%;
  padding: 30px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #d7d7d7, #fafafa);
}
@media (max-width: 991px) {
  .cid-vbvIPHlUBf .item-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-vbvIPHlUBf .item-wrapper {
    padding: 20px;
  }
}
.cid-vbvIPHlUBf .item-left {
  display: flex;
  align-items: center;
  flex-basis: 80%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbvIPHlUBf .item-left {
    flex-basis: 70%;
  }
}
@media (max-width: 991px) {
  .cid-vbvIPHlUBf .item-left {
    flex-basis: 100%;
    flex-wrap: wrap;
  }
}
.cid-vbvIPHlUBf .item-right {
  flex-basis: 20%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbvIPHlUBf .item-right {
    flex-basis: 30%;
  }
}
@media (max-width: 991px) {
  .cid-vbvIPHlUBf .item-right {
    flex-basis: 100%;
  }
}
.cid-vbvIPHlUBf .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-vbvIPHlUBf .item-img {
    max-width: 250px;
  }
}
.cid-vbvIPHlUBf .item-img img {
  width: 100%;
  aspect-ratio: 1.49700599;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-vbvIPHlUBf .item-img:hover img {
  transform: scale(1.05);
}
.cid-vbvIPHlUBf .card-box {
  padding-left: 30px;
}
@media (max-width: 1199px) {
  .cid-vbvIPHlUBf .card-box {
    padding-left: 20px;
    flex-basis: 50%;
  }
}
@media (max-width: 991px) {
  .cid-vbvIPHlUBf .card-box {
    padding-left: 0;
    padding-top: 25px;
    flex-basis: 100%;
  }
}
.cid-vbvIPHlUBf .label-container {
  padding: 3px 8px;
  border-radius: 20px;
  width: fit-content;
  background-color: #434a51;
  margin-bottom: 10px;
}
.cid-vbvIPHlUBf .label-text {
  color: #C4CFDE;
  margin-bottom: 0;
}
.cid-vbvIPHlUBf .card-title {
  color: #C4CFDE;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-vbvIPHlUBf .card-title {
    margin-bottom: 10px;
  }
}
.cid-vbvIPHlUBf .card-subtitle {
  color: #C4CFDE;
  margin-bottom: 7px;
}
.cid-vbvIPHlUBf .card-text {
  color: #000000;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-vbvIPHlUBf .mbr-section-btn {
    margin-top: 10px;
    text-align: left !important;
  }
}
.cid-vbvKcpum9y {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vbvKcpum9y .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbvKcpum9y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbvKcpum9y .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1599px) {
  .cid-vbvKcpum9y .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cid-vbvKcpum9y .mbr-section-head {
  width: 100%;
  margin-bottom: 20px;
}
.cid-vbvKcpum9y .mbr-section-title {
  color: #f9652f;
}
@media (max-width: 767px) {
  .cid-vbvKcpum9y .mbr-section-title {
    text-align: center;
  }
}
.cid-vbvKcpum9y .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-vbvKcpum9y .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-vbvKcpum9y .item {
  margin: 40px auto 0;
  width: 90% !important;
}
.cid-vbvKcpum9y .item-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  width: 100%;
  padding: 30px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #d7d7d7, #fafafa);
}
@media (max-width: 991px) {
  .cid-vbvKcpum9y .item-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-vbvKcpum9y .item-wrapper {
    padding: 20px;
  }
}
.cid-vbvKcpum9y .item-left {
  display: flex;
  align-items: center;
  flex-basis: 80%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbvKcpum9y .item-left {
    flex-basis: 70%;
  }
}
@media (max-width: 991px) {
  .cid-vbvKcpum9y .item-left {
    flex-basis: 100%;
    flex-wrap: wrap;
  }
}
.cid-vbvKcpum9y .item-right {
  flex-basis: 20%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbvKcpum9y .item-right {
    flex-basis: 30%;
  }
}
@media (max-width: 991px) {
  .cid-vbvKcpum9y .item-right {
    flex-basis: 100%;
  }
}
.cid-vbvKcpum9y .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-vbvKcpum9y .item-img {
    max-width: 250px;
  }
}
.cid-vbvKcpum9y .item-img img {
  width: 100%;
  aspect-ratio: 1.49700599;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-vbvKcpum9y .item-img:hover img {
  transform: scale(1.05);
}
.cid-vbvKcpum9y .card-box {
  padding-left: 30px;
}
@media (max-width: 1199px) {
  .cid-vbvKcpum9y .card-box {
    padding-left: 20px;
    flex-basis: 50%;
  }
}
@media (max-width: 991px) {
  .cid-vbvKcpum9y .card-box {
    padding-left: 0;
    padding-top: 25px;
    flex-basis: 100%;
  }
}
.cid-vbvKcpum9y .label-container {
  padding: 3px 8px;
  border-radius: 20px;
  width: fit-content;
  background-color: #434a51;
  margin-bottom: 10px;
}
.cid-vbvKcpum9y .label-text {
  color: #C4CFDE;
  margin-bottom: 0;
}
.cid-vbvKcpum9y .card-title {
  color: #C4CFDE;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-vbvKcpum9y .card-title {
    margin-bottom: 10px;
  }
}
.cid-vbvKcpum9y .card-subtitle {
  color: #C4CFDE;
  margin-bottom: 7px;
}
.cid-vbvKcpum9y .card-text {
  color: #000000;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-vbvKcpum9y .mbr-section-btn {
    margin-top: 10px;
    text-align: left !important;
  }
}
.cid-vbvKwwJWKi {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vbvKwwJWKi .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbvKwwJWKi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbvKwwJWKi .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1599px) {
  .cid-vbvKwwJWKi .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cid-vbvKwwJWKi .mbr-section-head {
  width: 100%;
  margin-bottom: 20px;
}
.cid-vbvKwwJWKi .mbr-section-title {
  color: #f9652f;
}
@media (max-width: 767px) {
  .cid-vbvKwwJWKi .mbr-section-title {
    text-align: center;
  }
}
.cid-vbvKwwJWKi .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-vbvKwwJWKi .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-vbvKwwJWKi .item {
  margin: 40px auto 0;
  width: 90% !important;
}
.cid-vbvKwwJWKi .item-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  width: 100%;
  padding: 30px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #d7d7d7, #fafafa);
}
@media (max-width: 991px) {
  .cid-vbvKwwJWKi .item-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-vbvKwwJWKi .item-wrapper {
    padding: 20px;
  }
}
.cid-vbvKwwJWKi .item-left {
  display: flex;
  align-items: center;
  flex-basis: 80%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbvKwwJWKi .item-left {
    flex-basis: 70%;
  }
}
@media (max-width: 991px) {
  .cid-vbvKwwJWKi .item-left {
    flex-basis: 100%;
    flex-wrap: wrap;
  }
}
.cid-vbvKwwJWKi .item-right {
  flex-basis: 20%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbvKwwJWKi .item-right {
    flex-basis: 30%;
  }
}
@media (max-width: 991px) {
  .cid-vbvKwwJWKi .item-right {
    flex-basis: 100%;
  }
}
.cid-vbvKwwJWKi .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-vbvKwwJWKi .item-img {
    max-width: 250px;
  }
}
.cid-vbvKwwJWKi .item-img img {
  width: 100%;
  aspect-ratio: 1.49700599;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-vbvKwwJWKi .item-img:hover img {
  transform: scale(1.05);
}
.cid-vbvKwwJWKi .card-box {
  padding-left: 30px;
}
@media (max-width: 1199px) {
  .cid-vbvKwwJWKi .card-box {
    padding-left: 20px;
    flex-basis: 50%;
  }
}
@media (max-width: 991px) {
  .cid-vbvKwwJWKi .card-box {
    padding-left: 0;
    padding-top: 25px;
    flex-basis: 100%;
  }
}
.cid-vbvKwwJWKi .label-container {
  padding: 3px 8px;
  border-radius: 20px;
  width: fit-content;
  background-color: #434a51;
  margin-bottom: 10px;
}
.cid-vbvKwwJWKi .label-text {
  color: #C4CFDE;
  margin-bottom: 0;
}
.cid-vbvKwwJWKi .card-title {
  color: #C4CFDE;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-vbvKwwJWKi .card-title {
    margin-bottom: 10px;
  }
}
.cid-vbvKwwJWKi .card-subtitle {
  color: #C4CFDE;
  margin-bottom: 7px;
}
.cid-vbvKwwJWKi .card-text {
  color: #000000;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-vbvKwwJWKi .mbr-section-btn {
    margin-top: 10px;
    text-align: left !important;
  }
}
.cid-vbvLHdGjLw {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vbvLHdGjLw .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbvLHdGjLw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbvLHdGjLw .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1599px) {
  .cid-vbvLHdGjLw .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cid-vbvLHdGjLw .mbr-section-head {
  width: 100%;
  margin-bottom: 20px;
}
.cid-vbvLHdGjLw .mbr-section-title {
  color: #f9652f;
}
@media (max-width: 767px) {
  .cid-vbvLHdGjLw .mbr-section-title {
    text-align: center;
  }
}
.cid-vbvLHdGjLw .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-vbvLHdGjLw .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-vbvLHdGjLw .item {
  margin: 40px auto 0;
  width: 90% !important;
}
.cid-vbvLHdGjLw .item-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  width: 100%;
  padding: 30px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #d7d7d7, #fafafa);
}
@media (max-width: 991px) {
  .cid-vbvLHdGjLw .item-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-vbvLHdGjLw .item-wrapper {
    padding: 20px;
  }
}
.cid-vbvLHdGjLw .item-left {
  display: flex;
  align-items: center;
  flex-basis: 80%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbvLHdGjLw .item-left {
    flex-basis: 70%;
  }
}
@media (max-width: 991px) {
  .cid-vbvLHdGjLw .item-left {
    flex-basis: 100%;
    flex-wrap: wrap;
  }
}
.cid-vbvLHdGjLw .item-right {
  flex-basis: 20%;
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .cid-vbvLHdGjLw .item-right {
    flex-basis: 30%;
  }
}
@media (max-width: 991px) {
  .cid-vbvLHdGjLw .item-right {
    flex-basis: 100%;
  }
}
.cid-vbvLHdGjLw .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-vbvLHdGjLw .item-img {
    max-width: 250px;
  }
}
.cid-vbvLHdGjLw .item-img img {
  width: 100%;
  aspect-ratio: 1.49700599;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-vbvLHdGjLw .item-img:hover img {
  transform: scale(1.05);
}
.cid-vbvLHdGjLw .card-box {
  padding-left: 30px;
}
@media (max-width: 1199px) {
  .cid-vbvLHdGjLw .card-box {
    padding-left: 20px;
    flex-basis: 50%;
  }
}
@media (max-width: 991px) {
  .cid-vbvLHdGjLw .card-box {
    padding-left: 0;
    padding-top: 25px;
    flex-basis: 100%;
  }
}
.cid-vbvLHdGjLw .label-container {
  padding: 3px 8px;
  border-radius: 20px;
  width: fit-content;
  background-color: #434a51;
  margin-bottom: 10px;
}
.cid-vbvLHdGjLw .label-text {
  color: #C4CFDE;
  margin-bottom: 0;
}
.cid-vbvLHdGjLw .card-title {
  color: #C4CFDE;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-vbvLHdGjLw .card-title {
    margin-bottom: 10px;
  }
}
.cid-vbvLHdGjLw .card-subtitle {
  color: #C4CFDE;
  margin-bottom: 7px;
}
.cid-vbvLHdGjLw .card-text {
  color: #000000;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-vbvLHdGjLw .mbr-section-btn {
    margin-top: 10px;
    text-align: left !important;
  }
}
.cid-vbGqsDjqwR {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-vbGqsDjqwR section {
  position: relative;
}
.cid-vbGqsDjqwR h4 {
  margin: 0;
}
.cid-vbGqsDjqwR img {
  height: 100px;
  padding-rigth: 8px;
}
.cid-vbGqsDjqwR a {
  font-weight: 300;
}
.cid-vbGqsDjqwR .img1 {
  color: #f9652f;
}
.cid-vbGqsDjqwR .img2 {
  color: #f9652f;
}
.cid-vbGqsDjqwR .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #f9652f;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-vbGqsDjqwR .media-wrap {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-vbGqsDjqwR .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-vbGqsDjqwR .item,
.cid-vbGqsDjqwR .link {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-vbGqsDjqwR .item h4,
.cid-vbGqsDjqwR .link h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-vbGqsDjqwR .link {
  border-bottom: 1px solid #4a535e;
}
@media (max-width: 767px) {
  .cid-vbGqsDjqwR .item {
    justify-content: center;
  }
}
.cid-vbGqsDjqwR .item-title {
  color: #ffffff;
  text-align: left;
}
.cid-vbGqsDjqwR .text1 {
  text-align: left;
}
.cid-vbGqsDjqwR .link-title {
  text-align: left;
}
.cid-vbqfUbDcZZ {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-vbqfUbDcZZ .mbr-text {
  color: #f6f6ef;
}
.cid-vbpXCEX421 .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vbpXCEX421 .display-2 {
  font-size: 2rem;
}
@media (max-width: 992px) {
  .cid-vbpXCEX421 .icons-menu {
    padding: 1rem 0 !important;
  }
}
.cid-vbpXCEX421 .container {
  max-width: 1800px;
  display: flex;
  margin: auto;
}
.cid-vbpXCEX421 .navbar {
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  min-height: 77px;
  transition: all 0.3s;
  background: #fe7501;
}
.cid-vbpXCEX421 .navbar.opened {
  transition: all 0.3s;
}
.cid-vbpXCEX421 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vbpXCEX421 .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-vbpXCEX421 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vbpXCEX421 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vbpXCEX421 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.6rem);
  }
}
.cid-vbpXCEX421 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vbpXCEX421 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vbpXCEX421 .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: 55%;
}
.cid-vbpXCEX421 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vbpXCEX421 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vbpXCEX421 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vbpXCEX421 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vbpXCEX421 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vbpXCEX421 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vbpXCEX421 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vbpXCEX421 .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: 55%;
  }
  .cid-vbpXCEX421 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-vbpXCEX421 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vbpXCEX421 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vbpXCEX421 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vbpXCEX421 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-vbpXCEX421 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vbpXCEX421 .navbar.navbar-short {
  background: #fe7501 !important;
  min-height: 60px;
}
.cid-vbpXCEX421 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-vbpXCEX421 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-vbpXCEX421 .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: fit-content;
  transition: all 0.3s;
}
.cid-vbpXCEX421 .nav-link:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-vbpXCEX421 .nav-link:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}
.cid-vbpXCEX421 .dropdown-menu {
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}
.cid-vbpXCEX421 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.2em 1em !important;
}
.cid-vbpXCEX421 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vbpXCEX421 .mbr-iconfont {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vbpXCEX421 .navbar-caption {
  padding-right: 4rem;
}
.cid-vbpXCEX421 .navbar-nav {
  justify-content: center;
  width: -webkit-fill-available;
}
.cid-vbpXCEX421 .dropdown-menu,
.cid-vbpXCEX421 .navbar.opened {
  background: #fe7501 !important;
}
.cid-vbpXCEX421 .nav-item:focus,
.cid-vbpXCEX421 .nav-link:focus {
  outline: none;
}
.cid-vbpXCEX421 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vbpXCEX421 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vbpXCEX421 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-vbpXCEX421 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vbpXCEX421 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vbpXCEX421 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vbpXCEX421 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vbpXCEX421 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vbpXCEX421 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vbpXCEX421 .dropdown-item.active,
.cid-vbpXCEX421 .dropdown-item:active {
  background-color: transparent;
}
.cid-vbpXCEX421 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vbpXCEX421 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vbpXCEX421 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vbpXCEX421 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fe7501;
}
.cid-vbpXCEX421 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vbpXCEX421 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vbpXCEX421 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-vbpXCEX421 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vbpXCEX421 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-vbpXCEX421 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vbpXCEX421 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vbpXCEX421 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vbpXCEX421 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vbpXCEX421 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vbpXCEX421 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vbpXCEX421 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vbpXCEX421 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vbpXCEX421 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vbpXCEX421 .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-vbpXCEX421 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vbpXCEX421 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  min-width: 160px;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-vbpXCEX421 .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vbpXCEX421 .navbar {
    height: 77px;
  }
  .cid-vbpXCEX421 .navbar.opened {
    height: auto;
  }
  .cid-vbpXCEX421 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vbpXCFnpAq {
  background-image: url("../../../assets/images/instalacao-energia-solar-1920x1080.jpg");
}
.cid-vbpXCFnpAq .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbpXCFnpAq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbpXCFnpAq .mbr-section-title {
  color: #e29d35;
  text-shadow: 2px 3px 5px rgba(0, 0, 0, 0.6);
}
.cid-vbpXCFnpAq .mbr-text {
  color: #FFFFFF;
  margin-top: 20px;
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
}
.cid-vbpXCFnpAq .mbr-section-btn {
  margin-top: 30px;
}
.cid-vbpXCFnpAq .mbr-text,
.cid-vbpXCFnpAq .mbr-section-btn {
  text-align: center;
}
.cid-vbpXCFFRD7 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vbpXCFFRD7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbpXCFFRD7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbpXCFFRD7 .content-wrapper {
  background: #efefef;
}
@media (max-width: 991px) {
  .cid-vbpXCFFRD7 .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vbpXCFFRD7 .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vbpXCFFRD7 .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vbpXCFFRD7 .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vbpXCFFRD7 .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-vbpXCFFRD7 .image-wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 50px 0 50px 0;
}
.cid-vbGca0GzVp {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-vbGca0GzVp .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbGca0GzVp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbGca0GzVp .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #000000;
  margin-left: 1rem;
}
.cid-vbGca0GzVp .panel-group {
  border: none;
}
.cid-vbGca0GzVp .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-vbGca0GzVp .panel-body,
.cid-vbGca0GzVp .card-header {
  padding: 1rem 0;
}
.cid-vbGca0GzVp .panel-title-edit {
  color: #000000;
}
.cid-vbGca0GzVp .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-vbpXCFXN1b {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vbpXCFXN1b .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbpXCFXN1b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbpXCFXN1b .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-vbpXCFXN1b .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-vbpXCFXN1b .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vbpXCFXN1b .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vbpXCFXN1b .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vbpXCFXN1b .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vbpXCFXN1b .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-vbpXCFXN1b .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-vbGqj5UDzC {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-vbGqj5UDzC section {
  position: relative;
}
.cid-vbGqj5UDzC h4 {
  margin: 0;
}
.cid-vbGqj5UDzC img {
  height: 100px;
  padding-rigth: 8px;
}
.cid-vbGqj5UDzC a {
  font-weight: 300;
}
.cid-vbGqj5UDzC .img1 {
  color: #f9652f;
}
.cid-vbGqj5UDzC .img2 {
  color: #f9652f;
}
.cid-vbGqj5UDzC .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #f9652f;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-vbGqj5UDzC .media-wrap {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-vbGqj5UDzC .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-vbGqj5UDzC .item,
.cid-vbGqj5UDzC .link {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-vbGqj5UDzC .item h4,
.cid-vbGqj5UDzC .link h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-vbGqj5UDzC .link {
  border-bottom: 1px solid #4a535e;
}
@media (max-width: 767px) {
  .cid-vbGqj5UDzC .item {
    justify-content: center;
  }
}
.cid-vbGqj5UDzC .item-title {
  color: #ffffff;
  text-align: left;
}
.cid-vbGqj5UDzC .text1 {
  text-align: left;
}
.cid-vbGqj5UDzC .link-title {
  text-align: left;
}
.cid-vbpXCHcbpR {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-vbpXCHcbpR .mbr-text {
  color: #f6f6ef;
}
.cid-vbFbdg1BUg .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vbFbdg1BUg .display-2 {
  font-size: 2rem;
}
@media (max-width: 992px) {
  .cid-vbFbdg1BUg .icons-menu {
    padding: 1rem 0 !important;
  }
}
.cid-vbFbdg1BUg .container {
  max-width: 1800px;
  display: flex;
  margin: auto;
}
.cid-vbFbdg1BUg .navbar {
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  min-height: 77px;
  transition: all 0.3s;
  background: #fe7501;
}
.cid-vbFbdg1BUg .navbar.opened {
  transition: all 0.3s;
}
.cid-vbFbdg1BUg .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vbFbdg1BUg .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-vbFbdg1BUg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vbFbdg1BUg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vbFbdg1BUg .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.6rem);
  }
}
.cid-vbFbdg1BUg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vbFbdg1BUg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vbFbdg1BUg .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: 55%;
}
.cid-vbFbdg1BUg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vbFbdg1BUg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vbFbdg1BUg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vbFbdg1BUg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vbFbdg1BUg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vbFbdg1BUg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vbFbdg1BUg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vbFbdg1BUg .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: 55%;
  }
  .cid-vbFbdg1BUg .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-vbFbdg1BUg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vbFbdg1BUg .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vbFbdg1BUg .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vbFbdg1BUg .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-vbFbdg1BUg .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vbFbdg1BUg .navbar.navbar-short {
  background: #fe7501 !important;
  min-height: 60px;
}
.cid-vbFbdg1BUg .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-vbFbdg1BUg .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-vbFbdg1BUg .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: fit-content;
  transition: all 0.3s;
}
.cid-vbFbdg1BUg .nav-link:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-vbFbdg1BUg .nav-link:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}
.cid-vbFbdg1BUg .dropdown-menu {
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}
.cid-vbFbdg1BUg .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.2em 1em !important;
}
.cid-vbFbdg1BUg .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vbFbdg1BUg .mbr-iconfont {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vbFbdg1BUg .navbar-caption {
  padding-right: 4rem;
}
.cid-vbFbdg1BUg .navbar-nav {
  justify-content: center;
  width: -webkit-fill-available;
}
.cid-vbFbdg1BUg .dropdown-menu,
.cid-vbFbdg1BUg .navbar.opened {
  background: #fe7501 !important;
}
.cid-vbFbdg1BUg .nav-item:focus,
.cid-vbFbdg1BUg .nav-link:focus {
  outline: none;
}
.cid-vbFbdg1BUg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vbFbdg1BUg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vbFbdg1BUg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-vbFbdg1BUg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vbFbdg1BUg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vbFbdg1BUg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vbFbdg1BUg .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vbFbdg1BUg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vbFbdg1BUg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vbFbdg1BUg .dropdown-item.active,
.cid-vbFbdg1BUg .dropdown-item:active {
  background-color: transparent;
}
.cid-vbFbdg1BUg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vbFbdg1BUg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vbFbdg1BUg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vbFbdg1BUg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fe7501;
}
.cid-vbFbdg1BUg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vbFbdg1BUg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vbFbdg1BUg ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-vbFbdg1BUg .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vbFbdg1BUg button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-vbFbdg1BUg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vbFbdg1BUg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vbFbdg1BUg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vbFbdg1BUg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vbFbdg1BUg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vbFbdg1BUg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vbFbdg1BUg nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vbFbdg1BUg nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vbFbdg1BUg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vbFbdg1BUg .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-vbFbdg1BUg a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vbFbdg1BUg .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  min-width: 160px;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-vbFbdg1BUg .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vbFbdg1BUg .navbar {
    height: 77px;
  }
  .cid-vbFbdg1BUg .navbar.opened {
    height: auto;
  }
  .cid-vbFbdg1BUg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vbFbdgGe3R {
  background-image: url("../../../assets/images/instalacao-eletrical-hotelaria-condominio-predial-1920x1080.jpg");
}
.cid-vbFbdgGe3R .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbFbdgGe3R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbFbdgGe3R .mbr-section-title {
  color: #e29d35;
  text-shadow: 2px 3px 5px rgba(0, 0, 0, 0.6);
}
.cid-vbFbdgGe3R .mbr-text {
  color: #FFFFFF;
  margin-top: 20px;
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
}
.cid-vbFbdgGe3R .mbr-section-btn {
  margin-top: 30px;
}
.cid-vbFbdgGe3R .mbr-text,
.cid-vbFbdgGe3R .mbr-section-btn {
  text-align: center;
}
.cid-vbFbdh2Dmg {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: #ffffff;
}
.cid-vbFbdh2Dmg .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbFbdh2Dmg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-vbFbdh2Dmg .container {
    padding: 0 26px;
  }
}
.cid-vbFbdh2Dmg .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 768px) {
  .cid-vbFbdh2Dmg .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-vbFbdh2Dmg .embla__slide a {
  display: block;
  width: 100%;
}
.cid-vbFbdh2Dmg .embla__slide a .card-wrap .item-wrapper .image-wrap img {
  height: 156px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vbFbdh2Dmg .embla__slide a .card-wrap .item-wrapper .image-wrap img {
    height: 156px;
  }
}
.cid-vbFbdh2Dmg .embla__button--next,
.cid-vbFbdh2Dmg .embla__button--prev {
  display: flex;
}
.cid-vbFbdh2Dmg .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 50px;
  background-color: transparent;
  color: #ffffff;
  border: none;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-vbFbdh2Dmg .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-vbFbdh2Dmg .embla__button:hover {
  background: transparent;
  color: #ffffff;
}
.cid-vbFbdh2Dmg .embla__button.embla__button--prev {
  left: 0;
  margin-left: 60px;
}
@media (max-width: 992px) {
  .cid-vbFbdh2Dmg .embla__button.embla__button--prev {
    margin-left: 26px;
  }
}
.cid-vbFbdh2Dmg .embla__button.embla__button--next {
  right: 0;
  margin-right: 60px;
}
@media (max-width: 992px) {
  .cid-vbFbdh2Dmg .embla__button.embla__button--next {
    margin-right: 26px;
  }
}
.cid-vbFbdh2Dmg .embla {
  position: relative;
  width: 100%;
}
.cid-vbFbdh2Dmg .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-vbFbdh2Dmg .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vbFbdh2Dmg .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vbFbdh2Dmg .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vbFbdhRDuy {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vbFbdhRDuy .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbFbdhRDuy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbFbdhRDuy .content-wrapper {
  background: #efefef;
}
@media (max-width: 991px) {
  .cid-vbFbdhRDuy .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vbFbdhRDuy .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vbFbdhRDuy .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vbFbdhRDuy .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vbFbdhRDuy .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-vbFbdhRDuy .image-wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 50px 0 50px 0;
}
.cid-vbFbdifLnG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vbFbdifLnG .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbFbdifLnG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbFbdifLnG .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-vbFbdifLnG .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-vbFbdifLnG .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vbFbdifLnG .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vbFbdifLnG .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vbFbdifLnG .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vbFbdifLnG .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-vbFbdifLnG .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-vbGq9v2MFG {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-vbGq9v2MFG section {
  position: relative;
}
.cid-vbGq9v2MFG h4 {
  margin: 0;
}
.cid-vbGq9v2MFG img {
  height: 100px;
  padding-rigth: 8px;
}
.cid-vbGq9v2MFG a {
  font-weight: 300;
}
.cid-vbGq9v2MFG .img1 {
  color: #f9652f;
}
.cid-vbGq9v2MFG .img2 {
  color: #f9652f;
}
.cid-vbGq9v2MFG .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #f9652f;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-vbGq9v2MFG .media-wrap {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-vbGq9v2MFG .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-vbGq9v2MFG .item,
.cid-vbGq9v2MFG .link {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-vbGq9v2MFG .item h4,
.cid-vbGq9v2MFG .link h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-vbGq9v2MFG .link {
  border-bottom: 1px solid #4a535e;
}
@media (max-width: 767px) {
  .cid-vbGq9v2MFG .item {
    justify-content: center;
  }
}
.cid-vbGq9v2MFG .item-title {
  color: #ffffff;
  text-align: left;
}
.cid-vbGq9v2MFG .text1 {
  text-align: left;
}
.cid-vbGq9v2MFG .link-title {
  text-align: left;
}
.cid-vbFbdjhPpy {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-vbFbdjhPpy .mbr-text {
  color: #f6f6ef;
}
.cid-vbpPgOnDEZ .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vbpPgOnDEZ .display-2 {
  font-size: 2rem;
}
@media (max-width: 992px) {
  .cid-vbpPgOnDEZ .icons-menu {
    padding: 1rem 0 !important;
  }
}
.cid-vbpPgOnDEZ .container {
  max-width: 1800px;
  display: flex;
  margin: auto;
}
.cid-vbpPgOnDEZ .navbar {
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  min-height: 77px;
  transition: all 0.3s;
  background: #fe7501;
}
.cid-vbpPgOnDEZ .navbar.opened {
  transition: all 0.3s;
}
.cid-vbpPgOnDEZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vbpPgOnDEZ .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-vbpPgOnDEZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vbpPgOnDEZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vbpPgOnDEZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.6rem);
  }
}
.cid-vbpPgOnDEZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vbpPgOnDEZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vbpPgOnDEZ .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: 55%;
}
.cid-vbpPgOnDEZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vbpPgOnDEZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vbpPgOnDEZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vbpPgOnDEZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vbpPgOnDEZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vbpPgOnDEZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vbpPgOnDEZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vbpPgOnDEZ .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: 55%;
  }
  .cid-vbpPgOnDEZ .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-vbpPgOnDEZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vbpPgOnDEZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vbpPgOnDEZ .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vbpPgOnDEZ .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-vbpPgOnDEZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vbpPgOnDEZ .navbar.navbar-short {
  background: #fe7501 !important;
  min-height: 60px;
}
.cid-vbpPgOnDEZ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-vbpPgOnDEZ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-vbpPgOnDEZ .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: fit-content;
  transition: all 0.3s;
}
.cid-vbpPgOnDEZ .nav-link:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-vbpPgOnDEZ .nav-link:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}
.cid-vbpPgOnDEZ .dropdown-menu {
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}
.cid-vbpPgOnDEZ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.2em 1em !important;
}
.cid-vbpPgOnDEZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vbpPgOnDEZ .mbr-iconfont {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vbpPgOnDEZ .navbar-caption {
  padding-right: 4rem;
}
.cid-vbpPgOnDEZ .navbar-nav {
  justify-content: center;
  width: -webkit-fill-available;
}
.cid-vbpPgOnDEZ .dropdown-menu,
.cid-vbpPgOnDEZ .navbar.opened {
  background: #fe7501 !important;
}
.cid-vbpPgOnDEZ .nav-item:focus,
.cid-vbpPgOnDEZ .nav-link:focus {
  outline: none;
}
.cid-vbpPgOnDEZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vbpPgOnDEZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vbpPgOnDEZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-vbpPgOnDEZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vbpPgOnDEZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vbpPgOnDEZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vbpPgOnDEZ .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vbpPgOnDEZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vbpPgOnDEZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vbpPgOnDEZ .dropdown-item.active,
.cid-vbpPgOnDEZ .dropdown-item:active {
  background-color: transparent;
}
.cid-vbpPgOnDEZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vbpPgOnDEZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vbpPgOnDEZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vbpPgOnDEZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fe7501;
}
.cid-vbpPgOnDEZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vbpPgOnDEZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vbpPgOnDEZ ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-vbpPgOnDEZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vbpPgOnDEZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-vbpPgOnDEZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vbpPgOnDEZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vbpPgOnDEZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vbpPgOnDEZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vbpPgOnDEZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vbpPgOnDEZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vbpPgOnDEZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vbpPgOnDEZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vbpPgOnDEZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vbpPgOnDEZ .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-vbpPgOnDEZ a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vbpPgOnDEZ .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  min-width: 160px;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-vbpPgOnDEZ .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vbpPgOnDEZ .navbar {
    height: 77px;
  }
  .cid-vbpPgOnDEZ .navbar.opened {
    height: auto;
  }
  .cid-vbpPgOnDEZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vbpPgOMHAm {
  background-image: url("../../../assets/images/instalacao-eletrical-hotelaria-condominio-predial-1920x1080.jpg");
}
.cid-vbpPgOMHAm .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbpPgOMHAm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbpPgOMHAm .mbr-section-title {
  color: #e29d35;
  text-shadow: 2px 3px 5px rgba(0, 0, 0, 0.6);
}
.cid-vbpPgOMHAm .mbr-text {
  color: #FFFFFF;
  margin-top: 20px;
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
}
.cid-vbpPgOMHAm .mbr-section-btn {
  margin-top: 30px;
}
.cid-vbpPgOMHAm .mbr-text,
.cid-vbpPgOMHAm .mbr-section-btn {
  text-align: center;
}
.cid-vbs78p3GE1 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: #ffffff;
}
.cid-vbs78p3GE1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbs78p3GE1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-vbs78p3GE1 .container {
    padding: 0 26px;
  }
}
.cid-vbs78p3GE1 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 768px) {
  .cid-vbs78p3GE1 .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-vbs78p3GE1 .embla__slide a {
  display: block;
  width: 100%;
}
.cid-vbs78p3GE1 .embla__slide a .card-wrap .item-wrapper .image-wrap img {
  height: 156px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vbs78p3GE1 .embla__slide a .card-wrap .item-wrapper .image-wrap img {
    height: 156px;
  }
}
.cid-vbs78p3GE1 .embla__button--next,
.cid-vbs78p3GE1 .embla__button--prev {
  display: flex;
}
.cid-vbs78p3GE1 .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 50px;
  background-color: transparent;
  color: #ffffff;
  border: none;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-vbs78p3GE1 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-vbs78p3GE1 .embla__button:hover {
  background: transparent;
  color: #ffffff;
}
.cid-vbs78p3GE1 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 60px;
}
@media (max-width: 992px) {
  .cid-vbs78p3GE1 .embla__button.embla__button--prev {
    margin-left: 26px;
  }
}
.cid-vbs78p3GE1 .embla__button.embla__button--next {
  right: 0;
  margin-right: 60px;
}
@media (max-width: 992px) {
  .cid-vbs78p3GE1 .embla__button.embla__button--next {
    margin-right: 26px;
  }
}
.cid-vbs78p3GE1 .embla {
  position: relative;
  width: 100%;
}
.cid-vbs78p3GE1 .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-vbs78p3GE1 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vbs78p3GE1 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vbs78p3GE1 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vbpPgP3nWH {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vbpPgP3nWH .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbpPgP3nWH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbpPgP3nWH .content-wrapper {
  background: #efefef;
}
@media (max-width: 991px) {
  .cid-vbpPgP3nWH .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vbpPgP3nWH .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vbpPgP3nWH .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vbpPgP3nWH .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vbpPgP3nWH .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-vbpPgP3nWH .image-wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 50px 0 50px 0;
}
.cid-vbpPgPlHsp {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vbpPgPlHsp .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbpPgPlHsp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbpPgPlHsp .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-vbpPgPlHsp .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-vbpPgPlHsp .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vbpPgPlHsp .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vbpPgPlHsp .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vbpPgPlHsp .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vbpPgPlHsp .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-vbpPgPlHsp .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-vbGq5fbkcY {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-vbGq5fbkcY section {
  position: relative;
}
.cid-vbGq5fbkcY h4 {
  margin: 0;
}
.cid-vbGq5fbkcY img {
  height: 100px;
  padding-rigth: 8px;
}
.cid-vbGq5fbkcY a {
  font-weight: 300;
}
.cid-vbGq5fbkcY .img1 {
  color: #f9652f;
}
.cid-vbGq5fbkcY .img2 {
  color: #f9652f;
}
.cid-vbGq5fbkcY .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #f9652f;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-vbGq5fbkcY .media-wrap {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-vbGq5fbkcY .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-vbGq5fbkcY .item,
.cid-vbGq5fbkcY .link {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-vbGq5fbkcY .item h4,
.cid-vbGq5fbkcY .link h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-vbGq5fbkcY .link {
  border-bottom: 1px solid #4a535e;
}
@media (max-width: 767px) {
  .cid-vbGq5fbkcY .item {
    justify-content: center;
  }
}
.cid-vbGq5fbkcY .item-title {
  color: #ffffff;
  text-align: left;
}
.cid-vbGq5fbkcY .text1 {
  text-align: left;
}
.cid-vbGq5fbkcY .link-title {
  text-align: left;
}
.cid-vbpPgQ6k0I {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-vbpPgQ6k0I .mbr-text {
  color: #f6f6ef;
}
