body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Google Sans', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Google Sans', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Google Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Google Sans', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 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: #bcbcbc !important;
}
.bg-success {
  background-color: #bbbbbb !important;
}
.bg-info {
  background-color: #b1f152 !important;
}
.bg-warning {
  background-color: #86de2d !important;
}
.bg-danger {
  background-color: #25d366 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #bcbcbc !important;
  border-color: #bcbcbc !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: #919191 !important;
  border-color: #919191 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #919191 !important;
  border-color: #919191 !important;
}
.btn-secondary,
.btn-secondary: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-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.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-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-info,
.btn-info:active {
  background-color: #b1f152 !important;
  border-color: #b1f152 !important;
  color: #283f05 !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: #8adb12 !important;
  border-color: #8adb12 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #283f05 !important;
  background-color: #8adb12 !important;
  border-color: #8adb12 !important;
}
.btn-success,
.btn-success:active {
  background-color: #bbbbbb !important;
  border-color: #bbbbbb !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: #909090 !important;
  border-color: #909090 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #909090 !important;
  border-color: #909090 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #86de2d !important;
  border-color: #86de2d !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #5b9c18 !important;
  border-color: #5b9c18 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #5b9c18 !important;
  border-color: #5b9c18 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #25d366 !important;
  border-color: #25d366 !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: #188942 !important;
  border-color: #188942 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #188942 !important;
  border-color: #188942 !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: #bcbcbc;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #919191 !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: #bcbcbc !important;
  border-color: #bcbcbc !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #000000 !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: #232323 !important;
  border-color: #232323 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #b1f152;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #8adb12 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #283f05 !important;
  background-color: #b1f152 !important;
  border-color: #b1f152 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #bbbbbb;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #909090 !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: #bbbbbb !important;
  border-color: #bbbbbb !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #86de2d;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #5b9c18 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #86de2d !important;
  border-color: #86de2d !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #25d366;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #188942 !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: #25d366 !important;
  border-color: #25d366 !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: #bcbcbc !important;
}
.text-secondary {
  color: #232323 !important;
}
.text-success {
  color: #bbbbbb !important;
}
.text-info {
  color: #b1f152 !important;
}
.text-warning {
  color: #86de2d !important;
}
.text-danger {
  color: #25d366 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #898989 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #000000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #888888 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #81cc11 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #538f16 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #167c3c !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: #bcbcbc;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #b1f152;
}
.alert-warning {
  background-color: #86de2d;
}
.alert-danger {
  background-color: #25d366;
}
.mbr-gallery-filter li.active .btn {
  background-color: #bcbcbc;
  border-color: #bcbcbc;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #bcbcbc;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fcfcfc;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #fbfbfb;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ecfadd;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #cef6dd;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Google Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #bcbcbc !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Google Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #bcbcbc;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #bcbcbc;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #bcbcbc;
}
.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: #bcbcbc;
  border-bottom-color: #bcbcbc;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #bcbcbc !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #232323 !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='%23bcbcbc' %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-vd0M6DFudQ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 110px;
}
.cid-vd0M6DFudQ nav.navbar {
  position: fixed;
}
.cid-vd0M6DFudQ .container-fluid {
  padding-left: 64px;
  padding-right: 64px;
}
@media (max-width: 992px) {
  .cid-vd0M6DFudQ .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-vd0M6DFudQ .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vd0M6DFudQ .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-vd0M6DFudQ .dropdown-item {
  border: none !important;
  background: #000000 !important;
}
.cid-vd0M6DFudQ .dropdown-item:hover,
.cid-vd0M6DFudQ .dropdown-item:focus {
  background: #ffffff !important;
  color: #121212 !important;
}
.cid-vd0M6DFudQ .dropdown-item:hover span {
  color: white;
}
.cid-vd0M6DFudQ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vd0M6DFudQ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vd0M6DFudQ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vd0M6DFudQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vd0M6DFudQ .nav-link {
  position: relative;
}
.cid-vd0M6DFudQ .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-vd0M6DFudQ .container {
    flex-wrap: nowrap;
  }
}
.cid-vd0M6DFudQ .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-vd0M6DFudQ .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-vd0M6DFudQ .dropdown-menu,
.cid-vd0M6DFudQ .navbar.opened {
  background: #000000 !important;
}
.cid-vd0M6DFudQ .nav-item:focus,
.cid-vd0M6DFudQ .nav-link:focus {
  outline: none;
}
.cid-vd0M6DFudQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vd0M6DFudQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-vd0M6DFudQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vd0M6DFudQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vd0M6DFudQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vd0M6DFudQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vd0M6DFudQ .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-vd0M6DFudQ .navbar.opened {
  transition: all 0.3s;
}
.cid-vd0M6DFudQ .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 22px;
  line-height: 1.5;
  border-radius: 3rem;
  margin-left: 4px;
  margin-bottom: 4px;
}
.cid-vd0M6DFudQ .navbar .navbar-logo img {
  width: auto;
  border-radius: 6px !important;
}
.cid-vd0M6DFudQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vd0M6DFudQ .navbar.collapsed {
  justify-content: center;
}
.cid-vd0M6DFudQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vd0M6DFudQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vd0M6DFudQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-vd0M6DFudQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vd0M6DFudQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vd0M6DFudQ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vd0M6DFudQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vd0M6DFudQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vd0M6DFudQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vd0M6DFudQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vd0M6DFudQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vd0M6DFudQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vd0M6DFudQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vd0M6DFudQ .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vd0M6DFudQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vd0M6DFudQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vd0M6DFudQ .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .cid-vd0M6DFudQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-vd0M6DFudQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vd0M6DFudQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vd0M6DFudQ .navbar.navbar-short {
  min-height: 96px;
}
.cid-vd0M6DFudQ .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-vd0M6DFudQ .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-vd0M6DFudQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-vd0M6DFudQ .navbar-brand .navbar-caption:hover,
.cid-vd0M6DFudQ .navbar-brand .navbar-caption:focus {
  color: #ffffff !important;
}
.cid-vd0M6DFudQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vd0M6DFudQ .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-vd0M6DFudQ .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #121212 !important;
}
.cid-vd0M6DFudQ .dropdown-item.active,
.cid-vd0M6DFudQ .dropdown-item:active {
  background-color: transparent;
}
.cid-vd0M6DFudQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vd0M6DFudQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vd0M6DFudQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vd0M6DFudQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-vd0M6DFudQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-vd0M6DFudQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-vd0M6DFudQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vd0M6DFudQ ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-vd0M6DFudQ ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-vd0M6DFudQ .navbar-buttons {
  text-align: center;
  width: auto;
}
.cid-vd0M6DFudQ .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  min-height: auto;
  width: auto;
}
.cid-vd0M6DFudQ .navbar-buttons .btn .mbr-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .cid-vd0M6DFudQ .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-vd0M6DFudQ button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #000000 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-vd0M6DFudQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vd0M6DFudQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-vd0M6DFudQ button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-vd0M6DFudQ button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-vd0M6DFudQ button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-vd0M6DFudQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vd0M6DFudQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vd0M6DFudQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vd0M6DFudQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vd0M6DFudQ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vd0M6DFudQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vd0M6DFudQ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vd0M6DFudQ .navbar {
    height: 70px;
  }
  .cid-vd0M6DFudQ .navbar.opened {
    height: auto;
  }
  .cid-vd0M6DFudQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vd0M6DFudQ .navbar-nav {
  margin: 0 auto;
  justify-content: flex-end;
  margin: 0;
}
.cid-vd0M6DFudQ .nav-item {
  padding: 0;
  margin: 0;
}
.cid-vd0M6DFudQ .nav-item .nav-link {
  padding: 8px 22px !important;
  margin: 0 8px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border-radius: 3rem;
}
.cid-vd0M6DFudQ .nav-item .nav-link::after {
  color: #ffffff !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-vd0M6DFudQ .nav-item .nav-link:hover {
  background-color: #ffffff;
  color: #121212 !important;
}
.cid-vd0M6DFudQ .nav-item .nav-link:hover::after {
  color: #121212 !important;
}
.cid-vd0M6DFudQ .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-vd0M6DFudQ .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-vd0M6DFudQ .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-vd0M6DFudQ .navbar {
    justify-content: flex-start !important;
  }
  .cid-vd0M6DFudQ .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-vd0M6DFudQ .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-vd0M6DFudQ .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-vd0M6DFudQ .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-vd0M6DFudQ .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .cid-vd0M6DFudQ .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-vd0M6DFudQ .content-wrap {
  min-height: 110px;
}
.cid-vd0M6DFudQ .mbr-section-btn .btn::after,
.cid-vd0M6DFudQ .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
}
.cid-vd0M6DFudQ .mbr-section-btn .btn:hover,
.cid-vd0M6DFudQ .mbr-section-btn .btn:focus {
  color: #ffffff !important;
}
.cid-vd0M6DFudQ .mbr-section-btn .btn:hover::after,
.cid-vd0M6DFudQ .mbr-section-btn .btn:focus::after {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
  opacity: 1;
}
.cid-vd0SSzX2S1 {
  background-image: url("../../../assets/images/caldas-veiculos-banner-1-1920x1080.jpg");
}
.cid-vd0SSzX2S1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vd0SSzX2S1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vd0SSzX2S1 .mbr-section-title {
  color: #ffffff;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
}
.cid-vd0SSzX2S1 .mbr-text {
  color: #FFFFFF;
  margin-top: 20px;
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
}
.cid-vd0SSzX2S1 .mbr-section-btn {
  margin-top: 30px;
}
.cid-vd0ZOMRlxO {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-vd0ZOMRlxO .mbr-text {
  color: #bcbcbc;
}
.cid-vd0ZOMRlxO .media-container-row {
  flex-wrap: wrap;
}
.cid-vd0ZOMRlxO .card-item {
  display: flex;
  justify-content: flex-start;
}
.cid-vd0ZOMRlxO .card-item .card-icon {
  margin: 0 0.5rem 1rem;
}
.cid-vd0ZOMRlxO .card-item .card-icon span {
  font-size: 4rem;
  padding: 0.5rem;
  color: #86de2d;
  -webkit-transition: transform 0.4s cubic-bezier(0.38, 3, 0.57, 1.6);
  -moz-transition: transform 0.4s cubic-bezier(0.38, 3, 0.57, 1.6);
  transition: transform 0.4s cubic-bezier(0.38, 3, 0.57, 1.6);
}
.cid-vd0ZOMRlxO .card-item:hover .card-icon span {
  -webkit-transform: translate3d(0, -5px, 0);
  -moz-transform: translate3d(0, -5px, 0);
  transform: translate3d(0, -5px, 0);
}
@media (min-width: 577px) {
  .cid-vd0ZOMRlxO .card-item .card-icon {
    margin-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vd0ZOMRlxO .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
@media (max-width: 576px) {
  .cid-vd0ZOMRlxO .card-item {
    padding: 0 0 1rem!important;
  }
  .cid-vd0ZOMRlxO .card-item .card-icon span {
    font-size: 3rem;
  }
}
.cid-vd0ZOMRlxO .card-title {
  color: #ffffff;
}
.cid-vd0ZTd1RuO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vd0ZTd1RuO .mbr-fallback-image.disabled {
  display: none;
}
.cid-vd0ZTd1RuO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vd0ZTd1RuO .content-wrap {
  margin: 0 -20px;
}
.cid-vd0ZTd1RuO .content-wrap .card {
  padding: 0 20px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-vd0ZTd1RuO .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-vd0ZTd1RuO .title-wrapper .mbr-label {
  margin-bottom: 12px;
}
.cid-vd0ZTd1RuO .title-wrapper .mbr-section-title {
  margin-bottom: 12px;
}
.cid-vd0ZTd1RuO .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vd0ZTd1RuO .title-wrapper .mbr-section-btn {
  margin-top: 16px;
}
.cid-vd0ZTd1RuO .title-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vd0ZTd1RuO .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  max-width: 100%;
}
@media (max-width: 768px) {
  .cid-vd0ZTd1RuO .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-vd0ZTd1RuO .embla__slide .slide-content {
  width: 100%;
}
.cid-vd0ZTd1RuO .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-vd0ZTd1RuO .embla__slide .slide-content .item-wrapper .item-img img {
    height: 550px;
  }
}
@media (max-width: 1200px) {
  .cid-vd0ZTd1RuO .embla__slide .slide-content .item-wrapper .item-img img {
    height: 450px;
  }
}
@media (max-width: 992px) {
  .cid-vd0ZTd1RuO .embla__slide .slide-content .item-wrapper .item-img img {
    height: 650px;
  }
}
.cid-vd0ZTd1RuO .embla__button--next,
.cid-vd0ZTd1RuO .embla__button--prev {
  display: flex;
}
.cid-vd0ZTd1RuO .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-vd0ZTd1RuO .embla__button:hover {
  background-color: #f9652f !important;
  color: #ffffff !important;
}
.cid-vd0ZTd1RuO .embla__button:disabled {
  opacity: .5 !important;
  background-color: #121212 !important;
  color: #ffffff !important;
}
.cid-vd0ZTd1RuO .embla__button.embla__button--prev {
  left: 24px;
}
@media (max-width: 992px) {
  .cid-vd0ZTd1RuO .embla__button.embla__button--prev {
    left: 16px;
  }
}
.cid-vd0ZTd1RuO .embla__button.embla__button--next {
  right: 24px;
}
@media (max-width: 992px) {
  .cid-vd0ZTd1RuO .embla__button.embla__button--next {
    right: 16px;
  }
}
.cid-vd0ZTd1RuO .embla {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}
.cid-vd0ZTd1RuO .embla__viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0;
}
@media (max-width: 768px) {
  .cid-vd0ZTd1RuO .embla__viewport {
    padding: 0;
  }
}
.cid-vd0ZTd1RuO .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vd0ZTd1RuO .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vd0ZTd1RuO .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vd0ZTd1RuO .item-menu-overlay {
  opacity: 0 !important;
}
.cid-vd0ZTd1RuO .mbr-label {
  color: #232323;
}
.cid-vd0ZTd1RuO .mbr-section-title {
  color: #ffffff;
}
.cid-vd0ZTd1RuO .mbr-text {
  color: #ffffff;
}
.cid-vd0ZTd1RuO .mbr-text,
.cid-vd0ZTd1RuO .text-wrapper {
  color: #232323;
}
.cid-vd0ZTd1RuO .mbr-section-title,
.cid-vd0ZTd1RuO .mbr-section-btn {
  color: #000000;
}
.cid-vehw4urABc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #212428;
}
.cid-vehw4urABc .mbr-fallback-image.disabled {
  display: none;
}
.cid-vehw4urABc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vehw4urABc .mbr-section-head {
  margin-bottom: 20px;
  width: 100%;
}
.cid-vehw4urABc .mbr-section-title {
  color: #b1f152;
}
.cid-vehw4urABc .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-vehw4urABc .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-vehw4urABc .card-row {
  align-items: stretch;
}
.cid-vehw4urABc .card {
  margin: 15px 0;
}
.cid-vehw4urABc .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 40px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 1199px) {
  .cid-vehw4urABc .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 575px) {
  .cid-vehw4urABc .card-wrapper {
    padding: 20px;
  }
}
.cid-vehw4urABc .card-box {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 5;
  height: 100%;
}
.cid-vehw4urABc .card-head {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
}
.cid-vehw4urABc .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: 10px;
  padding: 7px;
  min-width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #3eb75e;
}
.cid-vehw4urABc .iconfont-wrapper .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
}
.cid-vehw4urABc .card-head-text {
  flex-grow: 1;
}
.cid-vehw4urABc .name-title {
  color: #FFFFFF;
}
.cid-vehw4urABc .name-text {
  color: #FF014E;
}
.cid-vehw4urABc .card-title {
  color: #FFFFFF;
  margin-bottom: 20px;
  transition: .5s all;
}
.cid-vehw4urABc .card-text {
  color: #C4CFDE;
  opacity: 0.75;
  margin-bottom: 36px;
  transition: .5s all;
  text-align: left;
}
.cid-vehw4urABc .score-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: auto;
  margin-right: auto;
  padding-top: 4px;
}
.cid-vehw4urABc .score-container .score-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 4px;
}
.cid-vehw4urABc .score-container .score-wrapper .mbr-iconfont {
  font-size: 12px;
  color: #ff014e;
}
.cid-vd10hdBlhJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vd10hdBlhJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-vd10hdBlhJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vd10hdBlhJ .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-vd10hdBlhJ .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-vd10hdBlhJ .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vd10hdBlhJ .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vd10hdBlhJ .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vd10hdBlhJ .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vd10hdBlhJ .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-vd10hdBlhJ .image-wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 50px 0 50px 0;
}
.cid-vd10gzF2Lq {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #121212;
}
.cid-vd10gzF2Lq .mbr-fallback-image.disabled {
  display: none;
}
.cid-vd10gzF2Lq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vd10gzF2Lq .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  max-width: 100%;
}
@media (max-width: 768px) {
  .cid-vd10gzF2Lq .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-vd10gzF2Lq .embla__slide .slide-content {
  width: 100%;
}
.cid-vd10gzF2Lq .embla__slide .slide-content .item-wrapper .rating-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}
.cid-vd10gzF2Lq .embla__slide .slide-content .item-wrapper .rating-wrapper .rating-wrap {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.cid-vd10gzF2Lq .embla__slide .slide-content .item-wrapper .rating-wrapper .rating-wrap .mbr-star {
  margin-bottom: 0;
}
.cid-vd10gzF2Lq .embla__slide .slide-content .item-wrapper .item-text {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}
.cid-vd10gzF2Lq .embla__slide .slide-content .item-wrapper .person-wrapper .person-wrap {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.cid-vd10gzF2Lq .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-vd10gzF2Lq .embla__slide .slide-content .item-wrapper .person-wrapper .person-wrap .name-wrapper {
  position: relative;
  z-index: 1;
}
.cid-vd10gzF2Lq .embla__slide .slide-content .item-wrapper .person-wrapper .person-wrap .name-wrapper .item-name {
  margin-bottom: 0;
}
.cid-vd10gzF2Lq .embla__slide .slide-content .item-wrapper .person-wrapper .person-wrap .name-wrapper .item-role {
  margin-bottom: 0;
}
.cid-vd10gzF2Lq .embla__button--next,
.cid-vd10gzF2Lq .embla__button--prev {
  display: flex;
}
.cid-vd10gzF2Lq .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-vd10gzF2Lq .embla__button {
    bottom: 0;
  }
}
.cid-vd10gzF2Lq .embla__button:hover {
  background-color: #86de2d !important;
  color: #ffffff !important;
}
.cid-vd10gzF2Lq .embla__button:disabled {
  opacity: .5 !important;
  background-color: #2b2b2b !important;
  color: #ffffff !important;
}
.cid-vd10gzF2Lq .embla__button.embla__button--prev {
  left: 0;
}
.cid-vd10gzF2Lq .embla__button.embla__button--next {
  right: 0;
}
.cid-vd10gzF2Lq .embla {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 10%;
}
@media (max-width: 992px) {
  .cid-vd10gzF2Lq .embla {
    padding: 0;
    padding-bottom: 4rem;
  }
}
.cid-vd10gzF2Lq .embla__viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0;
}
@media (max-width: 768px) {
  .cid-vd10gzF2Lq .embla__viewport {
    padding: 0;
  }
}
.cid-vd10gzF2Lq .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vd10gzF2Lq .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vd10gzF2Lq .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vd10gzF2Lq .item-menu-overlay {
  opacity: 0 !important;
}
.cid-vd10gzF2Lq .item-text {
  color: #ffffff;
}
.cid-vd10gzF2Lq .item-name {
  color: #ffffff;
}
.cid-vd10gzF2Lq .item-role {
  color: #a8a8a8;
}
.cid-vd10gzF2Lq .mbr-star {
  color: #f5b614;
}
.cid-ve4FPQD5L3 {
  padding-top: 90px;
  padding-bottom: 75px;
  position: relative;
  background-color: #ffffff;
}
.cid-ve4FPQD5L3 .mbr-section-title {
  color: #06182d;
}
.cid-ve4FPQD5L3 .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #86de2d;
  background: linear-gradient(#86de2d 0%, #b1f152 69%, #86de2d 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-ve4FPQD5L3 .mbr-section-subtitle {
  color: #06182d;
}
.cid-ve4FPQD5L3 .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-ve4FPQD5L3 .mbr-text {
  color: #b1f152;
  font-weight: 300;
}
.cid-ve4FPQD5L3 .title-text {
  margin-bottom: 70px;
}
.cid-ve4FPQD5L3 .title-text .mbr-section-subtitle {
  color: #06182d;
}
.cid-ve4FPQD5L3 .title-text .mbr-section-subtitle.mbr-light {
  font-weight: 300;
}
.cid-ve4FPQD5L3 .title-text .mbr-section-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-ve4FPQD5L3 .title-text .mbr-section-title {
  color: #232323;
}
.cid-ve4FPQD5L3 .title-text .mbr-section-title.mbr-bold {
  font-weight: 700;
}
.cid-ve4FPQD5L3 .title-text .mbr-section-title span {
  font-weight: 500;
}
.cid-ve4FPQD5L3 .title-text .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-ve4FPQD5L3 .mbr-iconfont {
  font-family: "Moririse2" !important;
  display: inline-flex;
  transform-origin: ;
  transform: rotate(45deg);
  transition: all 0.3s;
  font-size: 1.4rem !important;
  color: #86de2d;
}
.cid-ve4FPQD5L3 .mbr-iconfont:before {
  transform: scaleY(0) !important;
  transition: all 0.4s;
}
.cid-ve4FPQD5L3 .p-4 {
  padding: 1rem 0 !important;
}
.cid-ve4FPQD5L3 .accordion .card .card-header {
  margin-bottom: 0px;
}
.cid-ve4FPQD5L3 .mbri-arrow-down:before {
  content: "\e960";
}
.cid-ve4FPQD5L3 .mbri-arrow-up:before {
  content: "\e960";
}
.cid-ve4FPQD5L3 .collapsed .mbr-iconfont {
  transform: rotate(0deg);
}
.cid-ve4FPQD5L3 .collapsed .mbr-iconfont:before {
  transform: scaleY(1) !important;
  transition: all 0.3s;
}
.cid-ve4FPQD5L3 .card {
  border-radius: 0px;
  background-color: #f5f5f5;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 1.2rem;
}
.cid-ve4FPQD5L3 .card:hover .card-header {
  transition: all 0.15s linear 0s;
  opacity: 0.7;
}
.cid-ve4FPQD5L3 .card .card-header {
  border-radius: 0px;
  background-color: transparent;
  padding: 0;
}
.cid-ve4FPQD5L3 .card .card-header h4 {
  justify-content: flex-start;
  width: 100%;
}
.cid-ve4FPQD5L3 .card .card-header a.panel-title {
  margin-bottom: 0;
  display: flex;
  width: 100%;
  border-bottom: 2px solid #86de2d;
  transition: all 0.3s;
  justify-content: space-between;
}
.cid-ve4FPQD5L3 .card .card-header a.panel-title.collapsed {
  border-bottom: 1px solid #efefef;
}
.cid-ve4FPQD5L3 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-ve4FPQD5L3 .card .card-header a.panel-title h4 {
  padding: 0 0rem 1.2rem;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.5px;
  color: #28303f;
}
.cid-ve4FPQD5L3 .card .card-header a.panel-title h4 .sign {
  line-height: 1.6 !important;
}
.cid-ve4FPQD5L3 .card .card-header a.panel-title .toggle-icon {
  right: 14px;
  position: absolute;
  top: 20px;
  transform: none;
  display: inline-block;
  height: 2px;
  margin-left: 0;
  width: 12px;
  border-radius: 50%;
  border: 2px solid rgba(97, 114, 138, 0.4);
  padding: 13px;
}
.cid-ve4FPQD5L3 .card .card-header a.panel-title .toggle-icon:before,
.cid-ve4FPQD5L3 .card .card-header a.panel-title .toggle-icon:after {
  background: currentColor;
  border: 0;
  box-sizing: border-box;
  content: "";
  display: block;
  left: 50%;
  position: absolute;
  top: 50%;
}
.cid-ve4FPQD5L3 .card .card-header a.panel-title .toggle-icon:before {
  height: 12px;
  margin-left: -1px !important;
  width: 2px;
  margin-top: -6px;
  background-color: currentColor;
  border: 0;
  transform: none;
}
.cid-ve4FPQD5L3 .card .card-header a.panel-title .toggle-icon:after {
  height: 2px;
  width: 12px;
  margin-left: -6px;
  margin-top: -1px;
}
.cid-ve4FPQD5L3 .card .panel-body {
  padding: 14px 20px;
}
.cid-ve4FPQD5L3 .card .panel-body p {
  color: #b1f152;
  line-height: 1.5;
}
.cid-ve4FPQD5L3 .card .panel-body .display-4 {
  font-size: 16px;
}
.cid-ve4FPQD5L3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ve4FPQD5L3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ve4FPQD5L3 .card .card-header a.panel-title h4 {
  color: #000000;
}
.cid-ve4FPQD5L3 .card .panel-body p {
  color: #000000;
}
.cid-vd0ZQHKIBx {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-vd0ZQHKIBx section {
  position: relative;
}
.cid-vd0ZQHKIBx h4 {
  margin: 0;
}
.cid-vd0ZQHKIBx img {
  height: 100px;
  padding-rigth: 8px;
}
.cid-vd0ZQHKIBx a {
  font-weight: 300;
}
.cid-vd0ZQHKIBx .img1 {
  color: #86de2d;
}
.cid-vd0ZQHKIBx .img2 {
  color: #86de2d;
}
.cid-vd0ZQHKIBx .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #86de2d;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-vd0ZQHKIBx .media-wrap {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-vd0ZQHKIBx .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-vd0ZQHKIBx .item,
.cid-vd0ZQHKIBx .link {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-vd0ZQHKIBx .item h4,
.cid-vd0ZQHKIBx .link h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-vd0ZQHKIBx .link {
  border-bottom: 1px solid #4a535e;
}
@media (max-width: 767px) {
  .cid-vd0ZQHKIBx .item {
    justify-content: center;
  }
}
.cid-vd0ZQHKIBx .item-title {
  color: #ffffff;
  text-align: left;
}
.cid-vd0ZQHKIBx .text1 {
  text-align: left;
}
.cid-vd0ZQHKIBx .link-title {
  text-align: left;
}
.cid-vd10dBE8Fn {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-vd10dBE8Fn .mbr-text {
  color: #f6f6ef;
}
.cid-vd2DKNlV99 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 110px;
}
.cid-vd2DKNlV99 nav.navbar {
  position: fixed;
}
.cid-vd2DKNlV99 .container-fluid {
  padding-left: 64px;
  padding-right: 64px;
}
@media (max-width: 992px) {
  .cid-vd2DKNlV99 .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-vd2DKNlV99 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vd2DKNlV99 .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-vd2DKNlV99 .dropdown-item {
  border: none !important;
  background: #000000 !important;
}
.cid-vd2DKNlV99 .dropdown-item:hover,
.cid-vd2DKNlV99 .dropdown-item:focus {
  background: #ffffff !important;
  color: #121212 !important;
}
.cid-vd2DKNlV99 .dropdown-item:hover span {
  color: white;
}
.cid-vd2DKNlV99 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vd2DKNlV99 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vd2DKNlV99 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vd2DKNlV99 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vd2DKNlV99 .nav-link {
  position: relative;
}
.cid-vd2DKNlV99 .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-vd2DKNlV99 .container {
    flex-wrap: nowrap;
  }
}
.cid-vd2DKNlV99 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-vd2DKNlV99 .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-vd2DKNlV99 .dropdown-menu,
.cid-vd2DKNlV99 .navbar.opened {
  background: #000000 !important;
}
.cid-vd2DKNlV99 .nav-item:focus,
.cid-vd2DKNlV99 .nav-link:focus {
  outline: none;
}
.cid-vd2DKNlV99 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vd2DKNlV99 .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-vd2DKNlV99 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vd2DKNlV99 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vd2DKNlV99 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vd2DKNlV99 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vd2DKNlV99 .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-vd2DKNlV99 .navbar.opened {
  transition: all 0.3s;
}
.cid-vd2DKNlV99 .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 22px;
  line-height: 1.5;
  border-radius: 3rem;
  margin-left: 4px;
  margin-bottom: 4px;
}
.cid-vd2DKNlV99 .navbar .navbar-logo img {
  width: auto;
  border-radius: 6px !important;
}
.cid-vd2DKNlV99 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vd2DKNlV99 .navbar.collapsed {
  justify-content: center;
}
.cid-vd2DKNlV99 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vd2DKNlV99 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vd2DKNlV99 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-vd2DKNlV99 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vd2DKNlV99 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vd2DKNlV99 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vd2DKNlV99 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vd2DKNlV99 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vd2DKNlV99 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vd2DKNlV99 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vd2DKNlV99 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vd2DKNlV99 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vd2DKNlV99 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vd2DKNlV99 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vd2DKNlV99 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vd2DKNlV99 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vd2DKNlV99 .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .cid-vd2DKNlV99 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-vd2DKNlV99 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vd2DKNlV99 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vd2DKNlV99 .navbar.navbar-short {
  min-height: 96px;
}
.cid-vd2DKNlV99 .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-vd2DKNlV99 .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-vd2DKNlV99 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-vd2DKNlV99 .navbar-brand .navbar-caption:hover,
.cid-vd2DKNlV99 .navbar-brand .navbar-caption:focus {
  color: #ffffff !important;
}
.cid-vd2DKNlV99 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vd2DKNlV99 .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-vd2DKNlV99 .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #121212 !important;
}
.cid-vd2DKNlV99 .dropdown-item.active,
.cid-vd2DKNlV99 .dropdown-item:active {
  background-color: transparent;
}
.cid-vd2DKNlV99 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vd2DKNlV99 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vd2DKNlV99 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vd2DKNlV99 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-vd2DKNlV99 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-vd2DKNlV99 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-vd2DKNlV99 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vd2DKNlV99 ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-vd2DKNlV99 ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-vd2DKNlV99 .navbar-buttons {
  text-align: center;
  width: auto;
}
.cid-vd2DKNlV99 .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  min-height: auto;
  width: auto;
}
.cid-vd2DKNlV99 .navbar-buttons .btn .mbr-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .cid-vd2DKNlV99 .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-vd2DKNlV99 button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #000000 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-vd2DKNlV99 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vd2DKNlV99 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-vd2DKNlV99 button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-vd2DKNlV99 button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-vd2DKNlV99 button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-vd2DKNlV99 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vd2DKNlV99 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vd2DKNlV99 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vd2DKNlV99 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vd2DKNlV99 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vd2DKNlV99 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vd2DKNlV99 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vd2DKNlV99 .navbar {
    height: 70px;
  }
  .cid-vd2DKNlV99 .navbar.opened {
    height: auto;
  }
  .cid-vd2DKNlV99 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vd2DKNlV99 .navbar-nav {
  margin: 0 auto;
  justify-content: flex-end;
  margin: 0;
}
.cid-vd2DKNlV99 .nav-item {
  padding: 0;
  margin: 0;
}
.cid-vd2DKNlV99 .nav-item .nav-link {
  padding: 8px 22px !important;
  margin: 0 8px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border-radius: 3rem;
}
.cid-vd2DKNlV99 .nav-item .nav-link::after {
  color: #ffffff !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-vd2DKNlV99 .nav-item .nav-link:hover {
  background-color: #ffffff;
  color: #121212 !important;
}
.cid-vd2DKNlV99 .nav-item .nav-link:hover::after {
  color: #121212 !important;
}
.cid-vd2DKNlV99 .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-vd2DKNlV99 .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-vd2DKNlV99 .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-vd2DKNlV99 .navbar {
    justify-content: flex-start !important;
  }
  .cid-vd2DKNlV99 .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-vd2DKNlV99 .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-vd2DKNlV99 .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-vd2DKNlV99 .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-vd2DKNlV99 .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .cid-vd2DKNlV99 .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-vd2DKNlV99 .content-wrap {
  min-height: 110px;
}
.cid-vd2DKNlV99 .mbr-section-btn .btn::after,
.cid-vd2DKNlV99 .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
}
.cid-vd2DKNlV99 .mbr-section-btn .btn:hover,
.cid-vd2DKNlV99 .mbr-section-btn .btn:focus {
  color: #ffffff !important;
}
.cid-vd2DKNlV99 .mbr-section-btn .btn:hover::after,
.cid-vd2DKNlV99 .mbr-section-btn .btn:focus::after {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
  opacity: 1;
}
.cid-veioPUbPnm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/caldas-veiculos-loja-caldas-novas-1-2000x1500.jpg");
}
.cid-veioPUbPnm .mbr-fallback-image.disabled {
  display: none;
}
.cid-veioPUbPnm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-veioPUbPnm .container {
    padding: 0 16px;
  }
}
.cid-veioPUbPnm .row {
  margin: 0 20px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-veioPUbPnm .row {
    margin: 0 10px;
  }
}
.cid-veioPUbPnm .row .card {
  padding: 0;
}
.cid-veioPUbPnm .title-wrapper {
  border-radius: 20px;
  padding: 45px;
  background-color: #86de2d;
}
@media (max-width: 992px) {
  .cid-veioPUbPnm .title-wrapper {
    padding: 45px 20px;
  }
}
.cid-veioPUbPnm .title-wrapper .mbr-section-subtitle {
  margin-bottom: 45px;
}
@media (max-width: 992px) {
  .cid-veioPUbPnm .title-wrapper .mbr-section-subtitle {
    margin-bottom: 20px;
  }
}
.cid-veioPUbPnm .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-veioPUbPnm .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-veioPUbPnm .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-veioPUbPnm .title-wrapper .mbr-section-btn {
  margin-top: 60px;
}
@media (max-width: 992px) {
  .cid-veioPUbPnm .title-wrapper .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-veioPUbPnm .mbr-section-subtitle {
  color: #4a5357;
  text-align: center;
}
.cid-veioPUbPnm .mbr-section-title {
  color: #192227;
}
.cid-veioPUbPnm .mbr-text {
  color: #192227;
  text-align: left;
}
.cid-veioPUbPnm .mbr-section-title,
.cid-veioPUbPnm .mbr-section-btn {
  text-align: center;
}
.cid-vehhcabxW8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vehhcabxW8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vehhcabxW8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vehhcabxW8 .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-vehhcabxW8 .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-vehhcabxW8 .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vehhcabxW8 .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vehhcabxW8 .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vehhcabxW8 .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vehhcabxW8 .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-vehhcabxW8 .image-wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 50px 0 50px 0;
}
.cid-vekU7QKuTZ {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #efeeee;
}
.cid-vekU7QKuTZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-vekU7QKuTZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vekU7QKuTZ .title-wrapper {
  margin-bottom: 50px;
}
.cid-vekU7QKuTZ .title-wrapper .label-wrapper {
  margin-bottom: 25px;
}
.cid-vekU7QKuTZ .title-wrapper .label-wrapper .label-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cid-vekU7QKuTZ .title-wrapper .label-wrapper .label-wrap .icon-wrapper .mbr-iconfont {
  font-size: 22px;
  display: inline-flex;
}
.cid-vekU7QKuTZ .title-wrapper .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-vekU7QKuTZ .title-wrapper .title-wrap .mbr-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .cid-vekU7QKuTZ .title-wrapper .title-wrap .mbr-section-title {
    width: 70%;
  }
}
@media (max-width: 992px) {
  .cid-vekU7QKuTZ .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 20px;
    width: 100%;
  }
}
.cid-vekU7QKuTZ .items-wrapper {
  margin: 0 -10px;
}
.cid-vekU7QKuTZ .items-wrapper .item {
  padding: 0 10px;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-vekU7QKuTZ .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-vekU7QKuTZ .items-wrapper .item:hover .item-wrapper,
.cid-vekU7QKuTZ .items-wrapper .item:focus .item-wrapper {
  transform: translateY(-8px);
}
@media (max-width: 992px) {
  .cid-vekU7QKuTZ .items-wrapper .item:hover .item-wrapper,
  .cid-vekU7QKuTZ .items-wrapper .item:focus .item-wrapper {
    transform: none;
  }
}
.cid-vekU7QKuTZ .items-wrapper .item:hover .item-wrapper .link-wrapper .mbr-iconfont,
.cid-vekU7QKuTZ .items-wrapper .item:focus .item-wrapper .link-wrapper .mbr-iconfont {
  background-color: #caf31d;
  color: #000000;
}
.cid-vekU7QKuTZ .items-wrapper .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  border: 2px solid #86de2d;
  padding: 30px;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-vekU7QKuTZ .items-wrapper .item .item-wrapper {
    padding: 20px;
  }
}
.cid-vekU7QKuTZ .items-wrapper .item .item-wrapper .card-box .iconfont-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vekU7QKuTZ .items-wrapper .item .item-wrapper .card-box .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-vekU7QKuTZ .items-wrapper .item .item-wrapper .card-box .iconfont-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 60px;
}
.cid-vekU7QKuTZ .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 10px;
}
.cid-vekU7QKuTZ .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-vekU7QKuTZ .items-wrapper .item .item-wrapper .card-box .item-btn {
  margin-top: 10px;
  margin-bottom: -9.6px;
}
.cid-vekU7QKuTZ .items-wrapper .item .item-wrapper .link-wrapper {
  margin-top: 40px;
}
@media (max-width: 992px) {
  .cid-vekU7QKuTZ .items-wrapper .item .item-wrapper .link-wrapper {
    margin-top: 25px;
  }
}
.cid-vekU7QKuTZ .items-wrapper .item .item-wrapper .link-wrapper .mbr-iconfont {
  border-radius: 100%;
  background-color: #f8f8f8;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all .3s ease;
  z-index: 1;
}
.cid-vekU7QKuTZ .items-wrapper .item .item-wrapper .link-wrapper .mbr-iconfont:hover,
.cid-vekU7QKuTZ .items-wrapper .item .item-wrapper .link-wrapper .mbr-iconfont:focus {
  background-color: #caf31d;
  color: #000000;
}
.cid-vekU7QKuTZ .items-wrapper .item .item-wrapper .link-wrapper a {
  width: 58px;
  height: 58px;
}
.cid-vekU7QKuTZ .mbr-label,
.cid-vekU7QKuTZ .label-wrapper {
  color: #000000;
  text-align: center;
}
.cid-vekU7QKuTZ .mbr-section-title,
.cid-vekU7QKuTZ .title-wrap {
  color: #000000;
  text-align: center;
}
.cid-vekU7QKuTZ .item-title {
  color: #000000;
}
.cid-vekU7QKuTZ .item-text {
  color: #000000;
}
.cid-veir2EbO8p {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-veir2EbO8p .mbr-fallback-image.disabled {
  display: none;
}
.cid-veir2EbO8p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-veir2EbO8p .row {
  justify-content: center;
}
.cid-veir2EbO8p .title-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-veir2EbO8p .title-wrapper {
    margin-bottom: 30px;
  }
}
.cid-veir2EbO8p .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-veir2EbO8p .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media (max-width: 1440px) {
  .cid-veir2EbO8p .items-wrapper {
    gap: 30px;
  }
}
@media (max-width: 992px) {
  .cid-veir2EbO8p .items-wrapper {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .cid-veir2EbO8p .items-wrapper {
    display: block;
  }
}
.cid-veir2EbO8p .item {
  transition: all .3s ease;
}
@media (max-width: 768px) {
  .cid-veir2EbO8p .item {
    margin-bottom: 16px;
  }
}
.cid-veir2EbO8p .item:hover .item-wrapper .item-img img,
.cid-veir2EbO8p .item:focus .item-wrapper .item-img img {
  transform: scale(1.05);
}
.cid-veir2EbO8p .item .item-wrapper {
  height: 100%;
  border: 3px solid #cbff5b;
  padding: 48px;
}
@media (max-width: 1440px) {
  .cid-veir2EbO8p .item .item-wrapper {
    padding: 30px;
  }
}
@media (max-width: 1200px) {
  .cid-veir2EbO8p .item .item-wrapper {
    padding: 30px 20px;
  }
}
.cid-veir2EbO8p .item .item-wrapper .item-img {
  margin-bottom: 40px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-veir2EbO8p .item .item-wrapper .item-img {
    margin-bottom: 30px;
  }
}
.cid-veir2EbO8p .item .item-wrapper .item-img img {
  height: 500px;
  object-fit: cover;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-veir2EbO8p .item .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-veir2EbO8p .item .item-wrapper .card-box .card-name {
  margin-bottom: 10px;
}
.cid-veir2EbO8p .item .item-wrapper .card-box .card-role {
  margin-bottom: 0;
}
.cid-veir2EbO8p .item .item-wrapper .card-box .text-wrapper .card-text {
  display: inline-block;
  width: 80%;
  margin-top: 40px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-veir2EbO8p .item .item-wrapper .card-box .text-wrapper .card-text {
    width: 100%;
    margin-top: 30px;
  }
}
.cid-veir2EbO8p .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 40px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-veir2EbO8p .item .item-wrapper .card-box .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-veir2EbO8p .item .item-wrapper .card-box .mbr-section-btn .btn {
  margin-bottom: 0;
  width: 100%;
}
.cid-veir2EbO8p .mbr-section-title {
  color: #ffffff;
}
.cid-veir2EbO8p .card-name {
  color: #cbff5b;
}
.cid-veir2EbO8p .card-role {
  color: #bbbbbb;
}
.cid-veir2EbO8p .card-text {
  color: #ffffff;
}
.cid-veir2EbO8p .mbr-tag {
  color: #000000;
}
.cid-veir2EbO8p .mbr-section-title,
.cid-veir2EbO8p .mbr-section-btn {
  text-align: center;
}
.cid-veNRS3ED8m {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #121212;
}
.cid-veNRS3ED8m .mbr-fallback-image.disabled {
  display: none;
}
.cid-veNRS3ED8m .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-veNRS3ED8m .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  max-width: 100%;
}
@media (max-width: 768px) {
  .cid-veNRS3ED8m .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-veNRS3ED8m .embla__slide .slide-content {
  width: 100%;
}
.cid-veNRS3ED8m .embla__slide .slide-content .item-wrapper .rating-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}
.cid-veNRS3ED8m .embla__slide .slide-content .item-wrapper .rating-wrapper .rating-wrap {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.cid-veNRS3ED8m .embla__slide .slide-content .item-wrapper .rating-wrapper .rating-wrap .mbr-star {
  margin-bottom: 0;
}
.cid-veNRS3ED8m .embla__slide .slide-content .item-wrapper .item-text {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}
.cid-veNRS3ED8m .embla__slide .slide-content .item-wrapper .person-wrapper .person-wrap {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.cid-veNRS3ED8m .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-veNRS3ED8m .embla__slide .slide-content .item-wrapper .person-wrapper .person-wrap .name-wrapper {
  position: relative;
  z-index: 1;
}
.cid-veNRS3ED8m .embla__slide .slide-content .item-wrapper .person-wrapper .person-wrap .name-wrapper .item-name {
  margin-bottom: 0;
}
.cid-veNRS3ED8m .embla__slide .slide-content .item-wrapper .person-wrapper .person-wrap .name-wrapper .item-role {
  margin-bottom: 0;
}
.cid-veNRS3ED8m .embla__button--next,
.cid-veNRS3ED8m .embla__button--prev {
  display: flex;
}
.cid-veNRS3ED8m .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-veNRS3ED8m .embla__button {
    bottom: 0;
  }
}
.cid-veNRS3ED8m .embla__button:hover {
  background-color: #86de2d !important;
  color: #ffffff !important;
}
.cid-veNRS3ED8m .embla__button:disabled {
  opacity: .5 !important;
  background-color: #2b2b2b !important;
  color: #ffffff !important;
}
.cid-veNRS3ED8m .embla__button.embla__button--prev {
  left: 0;
}
.cid-veNRS3ED8m .embla__button.embla__button--next {
  right: 0;
}
.cid-veNRS3ED8m .embla {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 10%;
}
@media (max-width: 992px) {
  .cid-veNRS3ED8m .embla {
    padding: 0;
    padding-bottom: 4rem;
  }
}
.cid-veNRS3ED8m .embla__viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0;
}
@media (max-width: 768px) {
  .cid-veNRS3ED8m .embla__viewport {
    padding: 0;
  }
}
.cid-veNRS3ED8m .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-veNRS3ED8m .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-veNRS3ED8m .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-veNRS3ED8m .item-menu-overlay {
  opacity: 0 !important;
}
.cid-veNRS3ED8m .item-text {
  color: #ffffff;
}
.cid-veNRS3ED8m .item-name {
  color: #ffffff;
}
.cid-veNRS3ED8m .item-role {
  color: #a8a8a8;
}
.cid-veNRS3ED8m .mbr-star {
  color: #f5b614;
}
.cid-vdeo2fzKwL {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-vdeo2fzKwL section {
  position: relative;
}
.cid-vdeo2fzKwL h4 {
  margin: 0;
}
.cid-vdeo2fzKwL img {
  height: 100px;
  padding-rigth: 8px;
}
.cid-vdeo2fzKwL a {
  font-weight: 300;
}
.cid-vdeo2fzKwL .img1 {
  color: #86de2d;
}
.cid-vdeo2fzKwL .img2 {
  color: #86de2d;
}
.cid-vdeo2fzKwL .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #86de2d;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-vdeo2fzKwL .media-wrap {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-vdeo2fzKwL .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-vdeo2fzKwL .item,
.cid-vdeo2fzKwL .link {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-vdeo2fzKwL .item h4,
.cid-vdeo2fzKwL .link h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-vdeo2fzKwL .link {
  border-bottom: 1px solid #4a535e;
}
@media (max-width: 767px) {
  .cid-vdeo2fzKwL .item {
    justify-content: center;
  }
}
.cid-vdeo2fzKwL .item-title {
  color: #ffffff;
  text-align: left;
}
.cid-vdeo2fzKwL .text1 {
  text-align: left;
}
.cid-vdeo2fzKwL .link-title {
  text-align: left;
}
.cid-vd2DKU0WzD {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-vd2DKU0WzD .mbr-text {
  color: #f6f6ef;
}
.cid-vd2DTkcEjB {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 110px;
}
.cid-vd2DTkcEjB nav.navbar {
  position: fixed;
}
.cid-vd2DTkcEjB .container-fluid {
  padding-left: 64px;
  padding-right: 64px;
}
@media (max-width: 992px) {
  .cid-vd2DTkcEjB .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-vd2DTkcEjB .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vd2DTkcEjB .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-vd2DTkcEjB .dropdown-item {
  border: none !important;
  background: #000000 !important;
}
.cid-vd2DTkcEjB .dropdown-item:hover,
.cid-vd2DTkcEjB .dropdown-item:focus {
  background: #ffffff !important;
  color: #121212 !important;
}
.cid-vd2DTkcEjB .dropdown-item:hover span {
  color: white;
}
.cid-vd2DTkcEjB .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vd2DTkcEjB .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vd2DTkcEjB .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vd2DTkcEjB .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vd2DTkcEjB .nav-link {
  position: relative;
}
.cid-vd2DTkcEjB .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-vd2DTkcEjB .container {
    flex-wrap: nowrap;
  }
}
.cid-vd2DTkcEjB .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-vd2DTkcEjB .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-vd2DTkcEjB .dropdown-menu,
.cid-vd2DTkcEjB .navbar.opened {
  background: #000000 !important;
}
.cid-vd2DTkcEjB .nav-item:focus,
.cid-vd2DTkcEjB .nav-link:focus {
  outline: none;
}
.cid-vd2DTkcEjB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vd2DTkcEjB .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-vd2DTkcEjB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vd2DTkcEjB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vd2DTkcEjB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vd2DTkcEjB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vd2DTkcEjB .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-vd2DTkcEjB .navbar.opened {
  transition: all 0.3s;
}
.cid-vd2DTkcEjB .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 22px;
  line-height: 1.5;
  border-radius: 3rem;
  margin-left: 4px;
  margin-bottom: 4px;
}
.cid-vd2DTkcEjB .navbar .navbar-logo img {
  width: auto;
  border-radius: 6px !important;
}
.cid-vd2DTkcEjB .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vd2DTkcEjB .navbar.collapsed {
  justify-content: center;
}
.cid-vd2DTkcEjB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vd2DTkcEjB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vd2DTkcEjB .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-vd2DTkcEjB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vd2DTkcEjB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vd2DTkcEjB .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vd2DTkcEjB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vd2DTkcEjB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vd2DTkcEjB .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vd2DTkcEjB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vd2DTkcEjB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vd2DTkcEjB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vd2DTkcEjB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vd2DTkcEjB .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vd2DTkcEjB .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vd2DTkcEjB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vd2DTkcEjB .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .cid-vd2DTkcEjB .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-vd2DTkcEjB .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vd2DTkcEjB .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vd2DTkcEjB .navbar.navbar-short {
  min-height: 96px;
}
.cid-vd2DTkcEjB .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-vd2DTkcEjB .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-vd2DTkcEjB .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-vd2DTkcEjB .navbar-brand .navbar-caption:hover,
.cid-vd2DTkcEjB .navbar-brand .navbar-caption:focus {
  color: #ffffff !important;
}
.cid-vd2DTkcEjB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vd2DTkcEjB .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-vd2DTkcEjB .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #121212 !important;
}
.cid-vd2DTkcEjB .dropdown-item.active,
.cid-vd2DTkcEjB .dropdown-item:active {
  background-color: transparent;
}
.cid-vd2DTkcEjB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vd2DTkcEjB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vd2DTkcEjB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vd2DTkcEjB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-vd2DTkcEjB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-vd2DTkcEjB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-vd2DTkcEjB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vd2DTkcEjB ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-vd2DTkcEjB ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-vd2DTkcEjB .navbar-buttons {
  text-align: center;
  width: auto;
}
.cid-vd2DTkcEjB .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  min-height: auto;
  width: auto;
}
.cid-vd2DTkcEjB .navbar-buttons .btn .mbr-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .cid-vd2DTkcEjB .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-vd2DTkcEjB button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #000000 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-vd2DTkcEjB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vd2DTkcEjB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-vd2DTkcEjB button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-vd2DTkcEjB button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-vd2DTkcEjB button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-vd2DTkcEjB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vd2DTkcEjB nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vd2DTkcEjB nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vd2DTkcEjB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vd2DTkcEjB .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vd2DTkcEjB a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vd2DTkcEjB .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vd2DTkcEjB .navbar {
    height: 70px;
  }
  .cid-vd2DTkcEjB .navbar.opened {
    height: auto;
  }
  .cid-vd2DTkcEjB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vd2DTkcEjB .navbar-nav {
  margin: 0 auto;
  justify-content: flex-end;
  margin: 0;
}
.cid-vd2DTkcEjB .nav-item {
  padding: 0;
  margin: 0;
}
.cid-vd2DTkcEjB .nav-item .nav-link {
  padding: 8px 22px !important;
  margin: 0 8px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border-radius: 3rem;
}
.cid-vd2DTkcEjB .nav-item .nav-link::after {
  color: #ffffff !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-vd2DTkcEjB .nav-item .nav-link:hover {
  background-color: #ffffff;
  color: #121212 !important;
}
.cid-vd2DTkcEjB .nav-item .nav-link:hover::after {
  color: #121212 !important;
}
.cid-vd2DTkcEjB .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-vd2DTkcEjB .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-vd2DTkcEjB .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-vd2DTkcEjB .navbar {
    justify-content: flex-start !important;
  }
  .cid-vd2DTkcEjB .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-vd2DTkcEjB .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-vd2DTkcEjB .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-vd2DTkcEjB .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-vd2DTkcEjB .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .cid-vd2DTkcEjB .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-vd2DTkcEjB .content-wrap {
  min-height: 110px;
}
.cid-vd2DTkcEjB .mbr-section-btn .btn::after,
.cid-vd2DTkcEjB .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
}
.cid-vd2DTkcEjB .mbr-section-btn .btn:hover,
.cid-vd2DTkcEjB .mbr-section-btn .btn:focus {
  color: #ffffff !important;
}
.cid-vd2DTkcEjB .mbr-section-btn .btn:hover::after,
.cid-vd2DTkcEjB .mbr-section-btn .btn:focus::after {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
  opacity: 1;
}
.cid-vd2DTl41uZ {
  background-image: url("../../../assets/images/caldas-veiculos-banner-3-1920x1080.jpg");
}
.cid-vd2DTl41uZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-vd2DTl41uZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vd2DTl41uZ .mbr-section-title {
  color: #ffffff;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
}
.cid-vd2DTl41uZ .mbr-text {
  color: #FFFFFF;
  margin-top: 20px;
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
}
.cid-vd2DTl41uZ .mbr-section-btn {
  margin-top: 30px;
}
.cid-vd2DTl41uZ .mbr-text,
.cid-vd2DTl41uZ .mbr-section-btn {
  text-align: center;
}
.cid-vehVQbhqJg {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vehVQbhqJg .mbr-section-subtitle {
  color: #b6b6b6;
  text-align: center;
}
.cid-vehVQbhqJg .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-vehVQbhqJg .card .card-wrapper {
  overflow: hidden;
  height: 100%;
  color: #ffffff;
  padding: 0;
}
.cid-vehVQbhqJg .card .card-wrapper .card-img {
  position: relative;
}
.cid-vehVQbhqJg .card .card-wrapper .card-img .price-label {
  padding: 8px;
  left: auto;
  top: auto;
  right: 20px;
  bottom: 20px;
  background-color: #1352ff;
  z-index: 100;
  position: absolute;
}
.cid-vehVQbhqJg .card .card-wrapper .card-img .price-label .price-text {
  padding: 0;
  margin: 0;
}
.cid-vehVQbhqJg .card .card-wrapper img {
  transition: all 0.5s;
  cursor: pointer;
}
.cid-vehVQbhqJg .card .card-wrapper img:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.cid-vehVQbhqJg .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-vehVQbhqJg .card .card-wrapper .card-box .card-title {
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1rem;
  text-align: left;
}
.cid-vehVQbhqJg .card .card-wrapper .card-box .container-nested {
  display: flex;
}
.cid-vehVQbhqJg .card .card-wrapper .card-box .container-nested .item {
  text-align: center;
  margin-right: 24px;
}
.cid-vehVQbhqJg .card .card-wrapper .card-box .container-nested .item .mbr-iconfont {
  font-size: 2.5rem;
}
.cid-vehVQbhqJg .card .card-wrapper .card-box .card-text {
  color: #ffffff;
}
.cid-vehVQbhqJg .card .card-wrapper .card-box .link.display-4 .mbr-iconfont {
  font-size: 0.9rem;
}
.cid-vehVQbhqJg .card .card-wrapper .card-box .link .mbr-iconfont {
  align-self: center;
  color: #25d366;
  margin-left: 0.5rem;
}
@media (max-width: 767px) {
  .cid-vehVQbhqJg .mbr-text {
    text-align: left;
  }
}
.cid-vehVQbhqJg .mbr-fallback-image.disabled {
  display: none;
}
.cid-vehVQbhqJg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vehVQbhqJg .mbr-section-subtitle,
.cid-vehVQbhqJg .mbr-section-btn {
  color: #000000;
}
.cid-vehVQbhqJg .mbr-section-title,
.cid-vehVQbhqJg .line-wrap {
  text-align: left;
  color: #000000;
}
.cid-vehVQbhqJg .card .card-wrapper .card-box .card-title {
  color: #232323;
}
.cid-vehVQbhqJg .card .card-wrapper .card-box .card-text,
.cid-vehVQbhqJg .mbr-section-btn {
  color: #232323;
}
.cid-vehVQbhqJg .card .card-wrapper .card-box .container-nested .item .mbr-text,
.cid-vehVQbhqJg .mbr-section-btn {
  color: #000000;
}
.cid-vekNPM3EEF {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-vekNPM3EEF .mbr-section-subtitle {
  color: #b6b6b6;
  text-align: center;
}
.cid-vekNPM3EEF .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-vekNPM3EEF .card .card-wrapper {
  overflow: hidden;
  height: 100%;
  color: #ffffff;
  padding: 0;
}
.cid-vekNPM3EEF .card .card-wrapper .card-img {
  position: relative;
}
.cid-vekNPM3EEF .card .card-wrapper .card-img .price-label {
  padding: 8px;
  left: auto;
  top: auto;
  right: 20px;
  bottom: 20px;
  background-color: #1352ff;
  z-index: 100;
  position: absolute;
}
.cid-vekNPM3EEF .card .card-wrapper .card-img .price-label .price-text {
  padding: 0;
  margin: 0;
}
.cid-vekNPM3EEF .card .card-wrapper img {
  transition: all 0.5s;
  cursor: pointer;
}
.cid-vekNPM3EEF .card .card-wrapper img:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.cid-vekNPM3EEF .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-vekNPM3EEF .card .card-wrapper .card-box .card-title {
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1rem;
  text-align: left;
}
.cid-vekNPM3EEF .card .card-wrapper .card-box .container-nested {
  display: flex;
}
.cid-vekNPM3EEF .card .card-wrapper .card-box .container-nested .item {
  text-align: center;
  margin-right: 24px;
}
.cid-vekNPM3EEF .card .card-wrapper .card-box .container-nested .item .mbr-iconfont {
  font-size: 2.5rem;
}
.cid-vekNPM3EEF .card .card-wrapper .card-box .card-text {
  color: #ffffff;
}
.cid-vekNPM3EEF .card .card-wrapper .card-box .link.display-4 .mbr-iconfont {
  font-size: 0.9rem;
}
.cid-vekNPM3EEF .card .card-wrapper .card-box .link .mbr-iconfont {
  align-self: center;
  color: #25d366;
  margin-left: 0.5rem;
}
@media (max-width: 767px) {
  .cid-vekNPM3EEF .mbr-text {
    text-align: left;
  }
}
.cid-vekNPM3EEF .mbr-fallback-image.disabled {
  display: none;
}
.cid-vekNPM3EEF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vekNPM3EEF .mbr-section-subtitle,
.cid-vekNPM3EEF .mbr-section-btn {
  color: #000000;
}
.cid-vekNPM3EEF .mbr-section-title,
.cid-vekNPM3EEF .line-wrap {
  text-align: left;
  color: #000000;
}
.cid-vekNPM3EEF .card .card-wrapper .card-box .card-title {
  color: #232323;
}
.cid-vekNPM3EEF .card .card-wrapper .card-box .card-text,
.cid-vekNPM3EEF .mbr-section-btn {
  color: #232323;
}
.cid-vekNPM3EEF .card .card-wrapper .card-box .container-nested .item .mbr-text,
.cid-vekNPM3EEF .mbr-section-btn {
  color: #000000;
}
.cid-vf0ySbfISw {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-vf0ySbfISw .mbr-section-subtitle {
  color: #b6b6b6;
  text-align: center;
}
.cid-vf0ySbfISw .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-vf0ySbfISw .card .card-wrapper {
  overflow: hidden;
  height: 100%;
  color: #ffffff;
  padding: 0;
}
.cid-vf0ySbfISw .card .card-wrapper .card-img {
  position: relative;
}
.cid-vf0ySbfISw .card .card-wrapper .card-img .price-label {
  padding: 8px;
  left: auto;
  top: auto;
  right: 20px;
  bottom: 20px;
  background-color: #1352ff;
  z-index: 100;
  position: absolute;
}
.cid-vf0ySbfISw .card .card-wrapper .card-img .price-label .price-text {
  padding: 0;
  margin: 0;
}
.cid-vf0ySbfISw .card .card-wrapper img {
  transition: all 0.5s;
  cursor: pointer;
}
.cid-vf0ySbfISw .card .card-wrapper img:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.cid-vf0ySbfISw .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-vf0ySbfISw .card .card-wrapper .card-box .card-title {
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1rem;
  text-align: left;
}
.cid-vf0ySbfISw .card .card-wrapper .card-box .container-nested {
  display: flex;
}
.cid-vf0ySbfISw .card .card-wrapper .card-box .container-nested .item {
  text-align: center;
  margin-right: 24px;
}
.cid-vf0ySbfISw .card .card-wrapper .card-box .container-nested .item .mbr-iconfont {
  font-size: 2.5rem;
}
.cid-vf0ySbfISw .card .card-wrapper .card-box .card-text {
  color: #ffffff;
}
.cid-vf0ySbfISw .card .card-wrapper .card-box .link.display-4 .mbr-iconfont {
  font-size: 0.9rem;
}
.cid-vf0ySbfISw .card .card-wrapper .card-box .link .mbr-iconfont {
  align-self: center;
  color: #25d366;
  margin-left: 0.5rem;
}
@media (max-width: 767px) {
  .cid-vf0ySbfISw .mbr-text {
    text-align: left;
  }
}
.cid-vf0ySbfISw .mbr-fallback-image.disabled {
  display: none;
}
.cid-vf0ySbfISw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vf0ySbfISw .mbr-section-subtitle,
.cid-vf0ySbfISw .mbr-section-btn {
  color: #000000;
}
.cid-vf0ySbfISw .mbr-section-title,
.cid-vf0ySbfISw .line-wrap {
  text-align: left;
  color: #000000;
}
.cid-vf0ySbfISw .card .card-wrapper .card-box .card-title {
  color: #232323;
}
.cid-vf0ySbfISw .card .card-wrapper .card-box .card-text,
.cid-vf0ySbfISw .mbr-section-btn {
  color: #232323;
}
.cid-vf0ySbfISw .card .card-wrapper .card-box .container-nested .item .mbr-text,
.cid-vf0ySbfISw .mbr-section-btn {
  color: #000000;
}
.cid-vf1aUaqJVO {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/caldas-veiculos-banner-3-1920x1080.jpg");
}
.cid-vf1aUaqJVO .mbr-fallback-image.disabled {
  display: none;
}
.cid-vf1aUaqJVO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vf1aUaqJVO .mbr-section-title {
  color: #ffffff;
}
.cid-veNRVrAimQ {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #121212;
}
.cid-veNRVrAimQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-veNRVrAimQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-veNRVrAimQ .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  max-width: 100%;
}
@media (max-width: 768px) {
  .cid-veNRVrAimQ .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-veNRVrAimQ .embla__slide .slide-content {
  width: 100%;
}
.cid-veNRVrAimQ .embla__slide .slide-content .item-wrapper .rating-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}
.cid-veNRVrAimQ .embla__slide .slide-content .item-wrapper .rating-wrapper .rating-wrap {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.cid-veNRVrAimQ .embla__slide .slide-content .item-wrapper .rating-wrapper .rating-wrap .mbr-star {
  margin-bottom: 0;
}
.cid-veNRVrAimQ .embla__slide .slide-content .item-wrapper .item-text {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}
.cid-veNRVrAimQ .embla__slide .slide-content .item-wrapper .person-wrapper .person-wrap {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.cid-veNRVrAimQ .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-veNRVrAimQ .embla__slide .slide-content .item-wrapper .person-wrapper .person-wrap .name-wrapper {
  position: relative;
  z-index: 1;
}
.cid-veNRVrAimQ .embla__slide .slide-content .item-wrapper .person-wrapper .person-wrap .name-wrapper .item-name {
  margin-bottom: 0;
}
.cid-veNRVrAimQ .embla__slide .slide-content .item-wrapper .person-wrapper .person-wrap .name-wrapper .item-role {
  margin-bottom: 0;
}
.cid-veNRVrAimQ .embla__button--next,
.cid-veNRVrAimQ .embla__button--prev {
  display: flex;
}
.cid-veNRVrAimQ .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-veNRVrAimQ .embla__button {
    bottom: 0;
  }
}
.cid-veNRVrAimQ .embla__button:hover {
  background-color: #86de2d !important;
  color: #ffffff !important;
}
.cid-veNRVrAimQ .embla__button:disabled {
  opacity: .5 !important;
  background-color: #2b2b2b !important;
  color: #ffffff !important;
}
.cid-veNRVrAimQ .embla__button.embla__button--prev {
  left: 0;
}
.cid-veNRVrAimQ .embla__button.embla__button--next {
  right: 0;
}
.cid-veNRVrAimQ .embla {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 10%;
}
@media (max-width: 992px) {
  .cid-veNRVrAimQ .embla {
    padding: 0;
    padding-bottom: 4rem;
  }
}
.cid-veNRVrAimQ .embla__viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0;
}
@media (max-width: 768px) {
  .cid-veNRVrAimQ .embla__viewport {
    padding: 0;
  }
}
.cid-veNRVrAimQ .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-veNRVrAimQ .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-veNRVrAimQ .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-veNRVrAimQ .item-menu-overlay {
  opacity: 0 !important;
}
.cid-veNRVrAimQ .item-text {
  color: #ffffff;
}
.cid-veNRVrAimQ .item-name {
  color: #ffffff;
}
.cid-veNRVrAimQ .item-role {
  color: #a8a8a8;
}
.cid-veNRVrAimQ .mbr-star {
  color: #f5b614;
}
.cid-vehhVIwcMy {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vehhVIwcMy .mbr-fallback-image.disabled {
  display: none;
}
.cid-vehhVIwcMy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vehhVIwcMy .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-vehhVIwcMy .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-vehhVIwcMy .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vehhVIwcMy .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vehhVIwcMy .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vehhVIwcMy .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vehhVIwcMy .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-vehhVIwcMy .image-wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 50px 0 50px 0;
}
.cid-vf1OSBgWDm.popup-builder {
  background-color: #ffffff;
}
.cid-vf1OSBgWDm.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-vf1OSBgWDm.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-vf1OSBgWDm .modal-content,
.cid-vf1OSBgWDm .modal-dialog {
  height: auto;
}
.cid-vf1OSBgWDm .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-vf1OSBgWDm .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-vf1OSBgWDm .form-wrapper .mbr-form .form-group,
  .cid-vf1OSBgWDm .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-vf1OSBgWDm .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-vf1OSBgWDm .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-vf1OSBgWDm .mbr-text {
  text-align: justify;
}
.cid-vf1OSBgWDm .pt-0 {
  padding-top: 0 !important;
}
.cid-vf1OSBgWDm .pb-0 {
  padding-bottom: 0 !important;
}
.cid-vf1OSBgWDm .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-vf1OSBgWDm .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-vf1OSBgWDm .modal-open {
  overflow: hidden;
}
.cid-vf1OSBgWDm .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-vf1OSBgWDm .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-vf1OSBgWDm .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-vf1OSBgWDm .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-vf1OSBgWDm .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-vf1OSBgWDm .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-vf1OSBgWDm .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-vf1OSBgWDm .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-vf1OSBgWDm .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-vf1OSBgWDm .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-vf1OSBgWDm .modal-backdrop.fade {
  opacity: 0;
}
.cid-vf1OSBgWDm .modal-backdrop.show {
  opacity: .5;
}
.cid-vf1OSBgWDm .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-vf1OSBgWDm .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-vf1OSBgWDm .modal-header {
    padding: 1rem;
  }
}
.cid-vf1OSBgWDm .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-vf1OSBgWDm .modal-header .close svg {
  fill: #353535;
}
.cid-vf1OSBgWDm .modal-header .close:hover {
  opacity: 1;
}
.cid-vf1OSBgWDm .modal-header .close:focus {
  outline: none;
}
.cid-vf1OSBgWDm .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-vf1OSBgWDm .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-vf1OSBgWDm .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vf1OSBgWDm .modal-body {
    padding: 1rem;
  }
}
.cid-vf1OSBgWDm .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-vf1OSBgWDm .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vf1OSBgWDm .modal-footer {
    padding: 1rem;
  }
}
.cid-vf1OSBgWDm .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-vf1OSBgWDm .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-vf1OSBgWDm .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-vf1OSBgWDm .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-vf1OSBgWDm .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-vf1OSBgWDm .modal-lg,
  .cid-vf1OSBgWDm .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-vf1OSBgWDm .modal-xl {
    max-width: 1140px;
  }
}
.cid-vf1OSBgWDm .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-vf1OSBgWDm .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-vf1OSBgWDm .form-group {
  margin-bottom: 1rem;
}
.cid-vf1OSBgWDm .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-vf1OSBgWDm .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-vf1OSBgWDm .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-vf1OSBgWDm .mbr-section-btn {
  margin: 0;
}
.cid-vf1OSBgWDm .mbr-section-btn .btn {
  margin: 0;
}
.cid-vf1KMlPnGG.popup-builder {
  background-color: #ffffff;
}
.cid-vf1KMlPnGG.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-vf1KMlPnGG.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-vf1KMlPnGG .modal-content,
.cid-vf1KMlPnGG .modal-dialog {
  height: auto;
}
.cid-vf1KMlPnGG .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-vf1KMlPnGG .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-vf1KMlPnGG .form-wrapper .mbr-form .form-group,
  .cid-vf1KMlPnGG .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-vf1KMlPnGG .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-vf1KMlPnGG .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-vf1KMlPnGG .mbr-text {
  text-align: justify;
}
.cid-vf1KMlPnGG .pt-0 {
  padding-top: 0 !important;
}
.cid-vf1KMlPnGG .pb-0 {
  padding-bottom: 0 !important;
}
.cid-vf1KMlPnGG .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-vf1KMlPnGG .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-vf1KMlPnGG .modal-open {
  overflow: hidden;
}
.cid-vf1KMlPnGG .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-vf1KMlPnGG .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-vf1KMlPnGG .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-vf1KMlPnGG .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-vf1KMlPnGG .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-vf1KMlPnGG .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-vf1KMlPnGG .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-vf1KMlPnGG .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-vf1KMlPnGG .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-vf1KMlPnGG .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-vf1KMlPnGG .modal-backdrop.fade {
  opacity: 0;
}
.cid-vf1KMlPnGG .modal-backdrop.show {
  opacity: .5;
}
.cid-vf1KMlPnGG .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-vf1KMlPnGG .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-vf1KMlPnGG .modal-header {
    padding: 1rem;
  }
}
.cid-vf1KMlPnGG .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-vf1KMlPnGG .modal-header .close svg {
  fill: #353535;
}
.cid-vf1KMlPnGG .modal-header .close:hover {
  opacity: 1;
}
.cid-vf1KMlPnGG .modal-header .close:focus {
  outline: none;
}
.cid-vf1KMlPnGG .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-vf1KMlPnGG .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-vf1KMlPnGG .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vf1KMlPnGG .modal-body {
    padding: 1rem;
  }
}
.cid-vf1KMlPnGG .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-vf1KMlPnGG .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vf1KMlPnGG .modal-footer {
    padding: 1rem;
  }
}
.cid-vf1KMlPnGG .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-vf1KMlPnGG .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-vf1KMlPnGG .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-vf1KMlPnGG .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-vf1KMlPnGG .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-vf1KMlPnGG .modal-lg,
  .cid-vf1KMlPnGG .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-vf1KMlPnGG .modal-xl {
    max-width: 1140px;
  }
}
.cid-vf1KMlPnGG .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-vf1KMlPnGG .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-vf1KMlPnGG .form-group {
  margin-bottom: 1rem;
}
.cid-vf1KMlPnGG .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-vf1KMlPnGG .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-vf1KMlPnGG .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-vf1KMlPnGG .mbr-section-btn {
  margin: 0;
}
.cid-vf1KMlPnGG .mbr-section-btn .btn {
  margin: 0;
}
.cid-vf1w3q42a6.popup-builder {
  background-color: #ffffff;
}
.cid-vf1w3q42a6.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-vf1w3q42a6.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-vf1w3q42a6 .modal-content,
.cid-vf1w3q42a6 .modal-dialog {
  height: auto;
}
.cid-vf1w3q42a6 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-vf1w3q42a6 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-vf1w3q42a6 .form-wrapper .mbr-form .form-group,
  .cid-vf1w3q42a6 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-vf1w3q42a6 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-vf1w3q42a6 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-vf1w3q42a6 .mbr-text {
  text-align: justify;
}
.cid-vf1w3q42a6 .pt-0 {
  padding-top: 0 !important;
}
.cid-vf1w3q42a6 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-vf1w3q42a6 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-vf1w3q42a6 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-vf1w3q42a6 .modal-open {
  overflow: hidden;
}
.cid-vf1w3q42a6 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-vf1w3q42a6 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-vf1w3q42a6 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-vf1w3q42a6 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-vf1w3q42a6 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-vf1w3q42a6 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-vf1w3q42a6 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-vf1w3q42a6 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-vf1w3q42a6 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-vf1w3q42a6 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-vf1w3q42a6 .modal-backdrop.fade {
  opacity: 0;
}
.cid-vf1w3q42a6 .modal-backdrop.show {
  opacity: .5;
}
.cid-vf1w3q42a6 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-vf1w3q42a6 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-vf1w3q42a6 .modal-header {
    padding: 1rem;
  }
}
.cid-vf1w3q42a6 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-vf1w3q42a6 .modal-header .close svg {
  fill: #353535;
}
.cid-vf1w3q42a6 .modal-header .close:hover {
  opacity: 1;
}
.cid-vf1w3q42a6 .modal-header .close:focus {
  outline: none;
}
.cid-vf1w3q42a6 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-vf1w3q42a6 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-vf1w3q42a6 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vf1w3q42a6 .modal-body {
    padding: 1rem;
  }
}
.cid-vf1w3q42a6 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-vf1w3q42a6 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vf1w3q42a6 .modal-footer {
    padding: 1rem;
  }
}
.cid-vf1w3q42a6 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-vf1w3q42a6 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-vf1w3q42a6 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-vf1w3q42a6 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-vf1w3q42a6 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-vf1w3q42a6 .modal-lg,
  .cid-vf1w3q42a6 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-vf1w3q42a6 .modal-xl {
    max-width: 1140px;
  }
}
.cid-vf1w3q42a6 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-vf1w3q42a6 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-vf1w3q42a6 .form-group {
  margin-bottom: 1rem;
}
.cid-vf1w3q42a6 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-vf1w3q42a6 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-vf1w3q42a6 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-vf1w3q42a6 .mbr-section-btn {
  margin: 0;
}
.cid-vf1w3q42a6 .mbr-section-btn .btn {
  margin: 0;
}
.cid-vf18FLtfr0.popup-builder {
  background-color: #ffffff;
}
.cid-vf18FLtfr0.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-vf18FLtfr0.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-vf18FLtfr0 .modal-content,
.cid-vf18FLtfr0 .modal-dialog {
  height: auto;
}
.cid-vf18FLtfr0 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-vf18FLtfr0 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-vf18FLtfr0 .form-wrapper .mbr-form .form-group,
  .cid-vf18FLtfr0 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-vf18FLtfr0 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-vf18FLtfr0 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-vf18FLtfr0 .mbr-text {
  text-align: justify;
}
.cid-vf18FLtfr0 .pt-0 {
  padding-top: 0 !important;
}
.cid-vf18FLtfr0 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-vf18FLtfr0 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-vf18FLtfr0 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-vf18FLtfr0 .modal-open {
  overflow: hidden;
}
.cid-vf18FLtfr0 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-vf18FLtfr0 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-vf18FLtfr0 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-vf18FLtfr0 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-vf18FLtfr0 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-vf18FLtfr0 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-vf18FLtfr0 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-vf18FLtfr0 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-vf18FLtfr0 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-vf18FLtfr0 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-vf18FLtfr0 .modal-backdrop.fade {
  opacity: 0;
}
.cid-vf18FLtfr0 .modal-backdrop.show {
  opacity: .5;
}
.cid-vf18FLtfr0 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-vf18FLtfr0 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-vf18FLtfr0 .modal-header {
    padding: 1rem;
  }
}
.cid-vf18FLtfr0 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-vf18FLtfr0 .modal-header .close svg {
  fill: #353535;
}
.cid-vf18FLtfr0 .modal-header .close:hover {
  opacity: 1;
}
.cid-vf18FLtfr0 .modal-header .close:focus {
  outline: none;
}
.cid-vf18FLtfr0 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-vf18FLtfr0 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-vf18FLtfr0 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vf18FLtfr0 .modal-body {
    padding: 1rem;
  }
}
.cid-vf18FLtfr0 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-vf18FLtfr0 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vf18FLtfr0 .modal-footer {
    padding: 1rem;
  }
}
.cid-vf18FLtfr0 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-vf18FLtfr0 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-vf18FLtfr0 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-vf18FLtfr0 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-vf18FLtfr0 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-vf18FLtfr0 .modal-lg,
  .cid-vf18FLtfr0 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-vf18FLtfr0 .modal-xl {
    max-width: 1140px;
  }
}
.cid-vf18FLtfr0 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-vf18FLtfr0 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-vf18FLtfr0 .form-group {
  margin-bottom: 1rem;
}
.cid-vf18FLtfr0 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-vf18FLtfr0 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-vf18FLtfr0 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-vf18FLtfr0 .mbr-section-btn {
  margin: 0;
}
.cid-vf18FLtfr0 .mbr-section-btn .btn {
  margin: 0;
}
.cid-vf10q3Z0XA.popup-builder {
  background-color: #ffffff;
}
.cid-vf10q3Z0XA.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-vf10q3Z0XA.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-vf10q3Z0XA .modal-content,
.cid-vf10q3Z0XA .modal-dialog {
  height: auto;
}
.cid-vf10q3Z0XA .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-vf10q3Z0XA .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-vf10q3Z0XA .form-wrapper .mbr-form .form-group,
  .cid-vf10q3Z0XA .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-vf10q3Z0XA .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-vf10q3Z0XA .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-vf10q3Z0XA .mbr-text {
  text-align: justify;
}
.cid-vf10q3Z0XA .pt-0 {
  padding-top: 0 !important;
}
.cid-vf10q3Z0XA .pb-0 {
  padding-bottom: 0 !important;
}
.cid-vf10q3Z0XA .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-vf10q3Z0XA .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-vf10q3Z0XA .modal-open {
  overflow: hidden;
}
.cid-vf10q3Z0XA .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-vf10q3Z0XA .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-vf10q3Z0XA .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-vf10q3Z0XA .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-vf10q3Z0XA .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-vf10q3Z0XA .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-vf10q3Z0XA .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-vf10q3Z0XA .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-vf10q3Z0XA .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-vf10q3Z0XA .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-vf10q3Z0XA .modal-backdrop.fade {
  opacity: 0;
}
.cid-vf10q3Z0XA .modal-backdrop.show {
  opacity: .5;
}
.cid-vf10q3Z0XA .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-vf10q3Z0XA .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-vf10q3Z0XA .modal-header {
    padding: 1rem;
  }
}
.cid-vf10q3Z0XA .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-vf10q3Z0XA .modal-header .close svg {
  fill: #353535;
}
.cid-vf10q3Z0XA .modal-header .close:hover {
  opacity: 1;
}
.cid-vf10q3Z0XA .modal-header .close:focus {
  outline: none;
}
.cid-vf10q3Z0XA .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-vf10q3Z0XA .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-vf10q3Z0XA .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vf10q3Z0XA .modal-body {
    padding: 1rem;
  }
}
.cid-vf10q3Z0XA .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-vf10q3Z0XA .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vf10q3Z0XA .modal-footer {
    padding: 1rem;
  }
}
.cid-vf10q3Z0XA .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-vf10q3Z0XA .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-vf10q3Z0XA .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-vf10q3Z0XA .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-vf10q3Z0XA .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-vf10q3Z0XA .modal-lg,
  .cid-vf10q3Z0XA .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-vf10q3Z0XA .modal-xl {
    max-width: 1140px;
  }
}
.cid-vf10q3Z0XA .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-vf10q3Z0XA .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-vf10q3Z0XA .form-group {
  margin-bottom: 1rem;
}
.cid-vf10q3Z0XA .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-vf10q3Z0XA .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-vf10q3Z0XA .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-vf10q3Z0XA .mbr-section-btn {
  margin: 0;
}
.cid-vf10q3Z0XA .mbr-section-btn .btn {
  margin: 0;
}
.cid-ven0EwgMYu.popup-builder {
  background-color: #ffffff;
}
.cid-ven0EwgMYu.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-ven0EwgMYu.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-ven0EwgMYu .modal-content,
.cid-ven0EwgMYu .modal-dialog {
  height: auto;
}
.cid-ven0EwgMYu .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-ven0EwgMYu .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-ven0EwgMYu .form-wrapper .mbr-form .form-group,
  .cid-ven0EwgMYu .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-ven0EwgMYu .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-ven0EwgMYu .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-ven0EwgMYu .mbr-text {
  text-align: justify;
}
.cid-ven0EwgMYu .pt-0 {
  padding-top: 0 !important;
}
.cid-ven0EwgMYu .pb-0 {
  padding-bottom: 0 !important;
}
.cid-ven0EwgMYu .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-ven0EwgMYu .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-ven0EwgMYu .modal-open {
  overflow: hidden;
}
.cid-ven0EwgMYu .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-ven0EwgMYu .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-ven0EwgMYu .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-ven0EwgMYu .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-ven0EwgMYu .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-ven0EwgMYu .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-ven0EwgMYu .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-ven0EwgMYu .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-ven0EwgMYu .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-ven0EwgMYu .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-ven0EwgMYu .modal-backdrop.fade {
  opacity: 0;
}
.cid-ven0EwgMYu .modal-backdrop.show {
  opacity: .5;
}
.cid-ven0EwgMYu .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-ven0EwgMYu .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-ven0EwgMYu .modal-header {
    padding: 1rem;
  }
}
.cid-ven0EwgMYu .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-ven0EwgMYu .modal-header .close svg {
  fill: #353535;
}
.cid-ven0EwgMYu .modal-header .close:hover {
  opacity: 1;
}
.cid-ven0EwgMYu .modal-header .close:focus {
  outline: none;
}
.cid-ven0EwgMYu .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-ven0EwgMYu .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-ven0EwgMYu .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ven0EwgMYu .modal-body {
    padding: 1rem;
  }
}
.cid-ven0EwgMYu .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-ven0EwgMYu .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ven0EwgMYu .modal-footer {
    padding: 1rem;
  }
}
.cid-ven0EwgMYu .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-ven0EwgMYu .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-ven0EwgMYu .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-ven0EwgMYu .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-ven0EwgMYu .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-ven0EwgMYu .modal-lg,
  .cid-ven0EwgMYu .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-ven0EwgMYu .modal-xl {
    max-width: 1140px;
  }
}
.cid-ven0EwgMYu .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-ven0EwgMYu .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-ven0EwgMYu .form-group {
  margin-bottom: 1rem;
}
.cid-ven0EwgMYu .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-ven0EwgMYu .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-ven0EwgMYu .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-ven0EwgMYu .mbr-section-btn {
  margin: 0;
}
.cid-ven0EwgMYu .mbr-section-btn .btn {
  margin: 0;
}
.cid-vemEYGHvox.popup-builder {
  background-color: #ffffff;
}
.cid-vemEYGHvox.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-vemEYGHvox.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-vemEYGHvox .modal-content,
.cid-vemEYGHvox .modal-dialog {
  height: auto;
}
.cid-vemEYGHvox .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-vemEYGHvox .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-vemEYGHvox .form-wrapper .mbr-form .form-group,
  .cid-vemEYGHvox .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-vemEYGHvox .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-vemEYGHvox .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-vemEYGHvox .mbr-text {
  text-align: justify;
}
.cid-vemEYGHvox .pt-0 {
  padding-top: 0 !important;
}
.cid-vemEYGHvox .pb-0 {
  padding-bottom: 0 !important;
}
.cid-vemEYGHvox .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-vemEYGHvox .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-vemEYGHvox .modal-open {
  overflow: hidden;
}
.cid-vemEYGHvox .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-vemEYGHvox .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-vemEYGHvox .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-vemEYGHvox .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-vemEYGHvox .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-vemEYGHvox .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-vemEYGHvox .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-vemEYGHvox .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-vemEYGHvox .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-vemEYGHvox .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-vemEYGHvox .modal-backdrop.fade {
  opacity: 0;
}
.cid-vemEYGHvox .modal-backdrop.show {
  opacity: .5;
}
.cid-vemEYGHvox .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-vemEYGHvox .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-vemEYGHvox .modal-header {
    padding: 1rem;
  }
}
.cid-vemEYGHvox .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-vemEYGHvox .modal-header .close svg {
  fill: #353535;
}
.cid-vemEYGHvox .modal-header .close:hover {
  opacity: 1;
}
.cid-vemEYGHvox .modal-header .close:focus {
  outline: none;
}
.cid-vemEYGHvox .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-vemEYGHvox .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-vemEYGHvox .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vemEYGHvox .modal-body {
    padding: 1rem;
  }
}
.cid-vemEYGHvox .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-vemEYGHvox .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vemEYGHvox .modal-footer {
    padding: 1rem;
  }
}
.cid-vemEYGHvox .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-vemEYGHvox .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-vemEYGHvox .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-vemEYGHvox .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-vemEYGHvox .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-vemEYGHvox .modal-lg,
  .cid-vemEYGHvox .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-vemEYGHvox .modal-xl {
    max-width: 1140px;
  }
}
.cid-vemEYGHvox .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-vemEYGHvox .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-vemEYGHvox .form-group {
  margin-bottom: 1rem;
}
.cid-vemEYGHvox .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-vemEYGHvox .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-vemEYGHvox .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-vemEYGHvox .mbr-section-btn {
  margin: 0;
}
.cid-vemEYGHvox .mbr-section-btn .btn {
  margin: 0;
}
.cid-vemy2ILRsI.popup-builder {
  background-color: #ffffff;
}
.cid-vemy2ILRsI.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-vemy2ILRsI.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-vemy2ILRsI .modal-content,
.cid-vemy2ILRsI .modal-dialog {
  height: auto;
}
.cid-vemy2ILRsI .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-vemy2ILRsI .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-vemy2ILRsI .form-wrapper .mbr-form .form-group,
  .cid-vemy2ILRsI .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-vemy2ILRsI .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-vemy2ILRsI .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-vemy2ILRsI .mbr-text {
  text-align: justify;
}
.cid-vemy2ILRsI .pt-0 {
  padding-top: 0 !important;
}
.cid-vemy2ILRsI .pb-0 {
  padding-bottom: 0 !important;
}
.cid-vemy2ILRsI .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-vemy2ILRsI .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-vemy2ILRsI .modal-open {
  overflow: hidden;
}
.cid-vemy2ILRsI .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-vemy2ILRsI .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-vemy2ILRsI .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-vemy2ILRsI .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-vemy2ILRsI .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-vemy2ILRsI .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-vemy2ILRsI .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-vemy2ILRsI .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-vemy2ILRsI .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-vemy2ILRsI .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-vemy2ILRsI .modal-backdrop.fade {
  opacity: 0;
}
.cid-vemy2ILRsI .modal-backdrop.show {
  opacity: .5;
}
.cid-vemy2ILRsI .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-vemy2ILRsI .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-vemy2ILRsI .modal-header {
    padding: 1rem;
  }
}
.cid-vemy2ILRsI .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-vemy2ILRsI .modal-header .close svg {
  fill: #353535;
}
.cid-vemy2ILRsI .modal-header .close:hover {
  opacity: 1;
}
.cid-vemy2ILRsI .modal-header .close:focus {
  outline: none;
}
.cid-vemy2ILRsI .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-vemy2ILRsI .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-vemy2ILRsI .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vemy2ILRsI .modal-body {
    padding: 1rem;
  }
}
.cid-vemy2ILRsI .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-vemy2ILRsI .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vemy2ILRsI .modal-footer {
    padding: 1rem;
  }
}
.cid-vemy2ILRsI .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-vemy2ILRsI .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-vemy2ILRsI .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-vemy2ILRsI .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-vemy2ILRsI .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-vemy2ILRsI .modal-lg,
  .cid-vemy2ILRsI .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-vemy2ILRsI .modal-xl {
    max-width: 1140px;
  }
}
.cid-vemy2ILRsI .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-vemy2ILRsI .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-vemy2ILRsI .form-group {
  margin-bottom: 1rem;
}
.cid-vemy2ILRsI .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-vemy2ILRsI .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-vemy2ILRsI .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-vemy2ILRsI .mbr-section-btn {
  margin: 0;
}
.cid-vemy2ILRsI .mbr-section-btn .btn {
  margin: 0;
}
.cid-vekMjvKIOh.popup-builder {
  background-color: #ffffff;
}
.cid-vekMjvKIOh.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-vekMjvKIOh.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-vekMjvKIOh .modal-content,
.cid-vekMjvKIOh .modal-dialog {
  height: auto;
}
.cid-vekMjvKIOh .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-vekMjvKIOh .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-vekMjvKIOh .form-wrapper .mbr-form .form-group,
  .cid-vekMjvKIOh .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-vekMjvKIOh .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-vekMjvKIOh .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-vekMjvKIOh .mbr-text {
  text-align: justify;
}
.cid-vekMjvKIOh .pt-0 {
  padding-top: 0 !important;
}
.cid-vekMjvKIOh .pb-0 {
  padding-bottom: 0 !important;
}
.cid-vekMjvKIOh .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-vekMjvKIOh .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-vekMjvKIOh .modal-open {
  overflow: hidden;
}
.cid-vekMjvKIOh .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-vekMjvKIOh .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-vekMjvKIOh .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-vekMjvKIOh .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-vekMjvKIOh .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-vekMjvKIOh .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-vekMjvKIOh .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-vekMjvKIOh .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-vekMjvKIOh .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-vekMjvKIOh .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-vekMjvKIOh .modal-backdrop.fade {
  opacity: 0;
}
.cid-vekMjvKIOh .modal-backdrop.show {
  opacity: .5;
}
.cid-vekMjvKIOh .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-vekMjvKIOh .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-vekMjvKIOh .modal-header {
    padding: 1rem;
  }
}
.cid-vekMjvKIOh .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-vekMjvKIOh .modal-header .close svg {
  fill: #353535;
}
.cid-vekMjvKIOh .modal-header .close:hover {
  opacity: 1;
}
.cid-vekMjvKIOh .modal-header .close:focus {
  outline: none;
}
.cid-vekMjvKIOh .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-vekMjvKIOh .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-vekMjvKIOh .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vekMjvKIOh .modal-body {
    padding: 1rem;
  }
}
.cid-vekMjvKIOh .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-vekMjvKIOh .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vekMjvKIOh .modal-footer {
    padding: 1rem;
  }
}
.cid-vekMjvKIOh .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-vekMjvKIOh .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-vekMjvKIOh .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-vekMjvKIOh .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-vekMjvKIOh .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-vekMjvKIOh .modal-lg,
  .cid-vekMjvKIOh .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-vekMjvKIOh .modal-xl {
    max-width: 1140px;
  }
}
.cid-vekMjvKIOh .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-vekMjvKIOh .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-vekMjvKIOh .form-group {
  margin-bottom: 1rem;
}
.cid-vekMjvKIOh .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-vekMjvKIOh .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-vekMjvKIOh .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-vekMjvKIOh .mbr-section-btn {
  margin: 0;
}
.cid-vekMjvKIOh .mbr-section-btn .btn {
  margin: 0;
}
.cid-vekEwfbKIt.popup-builder {
  background-color: #ffffff;
}
.cid-vekEwfbKIt.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-vekEwfbKIt.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-vekEwfbKIt .modal-content,
.cid-vekEwfbKIt .modal-dialog {
  height: auto;
}
.cid-vekEwfbKIt .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-vekEwfbKIt .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-vekEwfbKIt .form-wrapper .mbr-form .form-group,
  .cid-vekEwfbKIt .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-vekEwfbKIt .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-vekEwfbKIt .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-vekEwfbKIt .mbr-text {
  text-align: justify;
}
.cid-vekEwfbKIt .pt-0 {
  padding-top: 0 !important;
}
.cid-vekEwfbKIt .pb-0 {
  padding-bottom: 0 !important;
}
.cid-vekEwfbKIt .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-vekEwfbKIt .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-vekEwfbKIt .modal-open {
  overflow: hidden;
}
.cid-vekEwfbKIt .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-vekEwfbKIt .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-vekEwfbKIt .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-vekEwfbKIt .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-vekEwfbKIt .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-vekEwfbKIt .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-vekEwfbKIt .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-vekEwfbKIt .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-vekEwfbKIt .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-vekEwfbKIt .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-vekEwfbKIt .modal-backdrop.fade {
  opacity: 0;
}
.cid-vekEwfbKIt .modal-backdrop.show {
  opacity: .5;
}
.cid-vekEwfbKIt .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-vekEwfbKIt .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-vekEwfbKIt .modal-header {
    padding: 1rem;
  }
}
.cid-vekEwfbKIt .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-vekEwfbKIt .modal-header .close svg {
  fill: #353535;
}
.cid-vekEwfbKIt .modal-header .close:hover {
  opacity: 1;
}
.cid-vekEwfbKIt .modal-header .close:focus {
  outline: none;
}
.cid-vekEwfbKIt .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-vekEwfbKIt .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-vekEwfbKIt .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vekEwfbKIt .modal-body {
    padding: 1rem;
  }
}
.cid-vekEwfbKIt .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-vekEwfbKIt .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vekEwfbKIt .modal-footer {
    padding: 1rem;
  }
}
.cid-vekEwfbKIt .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-vekEwfbKIt .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-vekEwfbKIt .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-vekEwfbKIt .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-vekEwfbKIt .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-vekEwfbKIt .modal-lg,
  .cid-vekEwfbKIt .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-vekEwfbKIt .modal-xl {
    max-width: 1140px;
  }
}
.cid-vekEwfbKIt .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-vekEwfbKIt .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-vekEwfbKIt .form-group {
  margin-bottom: 1rem;
}
.cid-vekEwfbKIt .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-vekEwfbKIt .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-vekEwfbKIt .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-vekEwfbKIt .mbr-section-btn {
  margin: 0;
}
.cid-vekEwfbKIt .mbr-section-btn .btn {
  margin: 0;
}
.cid-vekvwwlMSI.popup-builder {
  background-color: #ffffff;
}
.cid-vekvwwlMSI.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-vekvwwlMSI.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-vekvwwlMSI .modal-content,
.cid-vekvwwlMSI .modal-dialog {
  height: auto;
}
.cid-vekvwwlMSI .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-vekvwwlMSI .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-vekvwwlMSI .form-wrapper .mbr-form .form-group,
  .cid-vekvwwlMSI .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-vekvwwlMSI .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-vekvwwlMSI .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-vekvwwlMSI .mbr-text {
  text-align: justify;
}
.cid-vekvwwlMSI .pt-0 {
  padding-top: 0 !important;
}
.cid-vekvwwlMSI .pb-0 {
  padding-bottom: 0 !important;
}
.cid-vekvwwlMSI .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-vekvwwlMSI .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-vekvwwlMSI .modal-open {
  overflow: hidden;
}
.cid-vekvwwlMSI .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-vekvwwlMSI .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-vekvwwlMSI .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-vekvwwlMSI .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-vekvwwlMSI .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-vekvwwlMSI .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-vekvwwlMSI .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-vekvwwlMSI .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-vekvwwlMSI .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-vekvwwlMSI .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-vekvwwlMSI .modal-backdrop.fade {
  opacity: 0;
}
.cid-vekvwwlMSI .modal-backdrop.show {
  opacity: .5;
}
.cid-vekvwwlMSI .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-vekvwwlMSI .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-vekvwwlMSI .modal-header {
    padding: 1rem;
  }
}
.cid-vekvwwlMSI .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-vekvwwlMSI .modal-header .close svg {
  fill: #353535;
}
.cid-vekvwwlMSI .modal-header .close:hover {
  opacity: 1;
}
.cid-vekvwwlMSI .modal-header .close:focus {
  outline: none;
}
.cid-vekvwwlMSI .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-vekvwwlMSI .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-vekvwwlMSI .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vekvwwlMSI .modal-body {
    padding: 1rem;
  }
}
.cid-vekvwwlMSI .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-vekvwwlMSI .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vekvwwlMSI .modal-footer {
    padding: 1rem;
  }
}
.cid-vekvwwlMSI .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-vekvwwlMSI .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-vekvwwlMSI .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-vekvwwlMSI .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-vekvwwlMSI .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-vekvwwlMSI .modal-lg,
  .cid-vekvwwlMSI .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-vekvwwlMSI .modal-xl {
    max-width: 1140px;
  }
}
.cid-vekvwwlMSI .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-vekvwwlMSI .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-vekvwwlMSI .form-group {
  margin-bottom: 1rem;
}
.cid-vekvwwlMSI .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-vekvwwlMSI .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-vekvwwlMSI .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-vekvwwlMSI .mbr-section-btn {
  margin: 0;
}
.cid-vekvwwlMSI .mbr-section-btn .btn {
  margin: 0;
}
.cid-vdeo5qxqyx {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-vdeo5qxqyx section {
  position: relative;
}
.cid-vdeo5qxqyx h4 {
  margin: 0;
}
.cid-vdeo5qxqyx img {
  height: 100px;
  padding-rigth: 8px;
}
.cid-vdeo5qxqyx a {
  font-weight: 300;
}
.cid-vdeo5qxqyx .img1 {
  color: #86de2d;
}
.cid-vdeo5qxqyx .img2 {
  color: #86de2d;
}
.cid-vdeo5qxqyx .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #86de2d;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-vdeo5qxqyx .media-wrap {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-vdeo5qxqyx .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-vdeo5qxqyx .item,
.cid-vdeo5qxqyx .link {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-vdeo5qxqyx .item h4,
.cid-vdeo5qxqyx .link h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-vdeo5qxqyx .link {
  border-bottom: 1px solid #4a535e;
}
@media (max-width: 767px) {
  .cid-vdeo5qxqyx .item {
    justify-content: center;
  }
}
.cid-vdeo5qxqyx .item-title {
  color: #ffffff;
  text-align: left;
}
.cid-vdeo5qxqyx .text1 {
  text-align: left;
}
.cid-vdeo5qxqyx .link-title {
  text-align: left;
}
.cid-vd2DTrC0IP {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-vd2DTrC0IP .mbr-text {
  color: #f6f6ef;
}
.cid-vd2E5VZJyy {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 110px;
}
.cid-vd2E5VZJyy nav.navbar {
  position: fixed;
}
.cid-vd2E5VZJyy .container-fluid {
  padding-left: 64px;
  padding-right: 64px;
}
@media (max-width: 992px) {
  .cid-vd2E5VZJyy .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-vd2E5VZJyy .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vd2E5VZJyy .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-vd2E5VZJyy .dropdown-item {
  border: none !important;
  background: #000000 !important;
}
.cid-vd2E5VZJyy .dropdown-item:hover,
.cid-vd2E5VZJyy .dropdown-item:focus {
  background: #ffffff !important;
  color: #121212 !important;
}
.cid-vd2E5VZJyy .dropdown-item:hover span {
  color: white;
}
.cid-vd2E5VZJyy .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vd2E5VZJyy .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vd2E5VZJyy .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vd2E5VZJyy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vd2E5VZJyy .nav-link {
  position: relative;
}
.cid-vd2E5VZJyy .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-vd2E5VZJyy .container {
    flex-wrap: nowrap;
  }
}
.cid-vd2E5VZJyy .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-vd2E5VZJyy .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-vd2E5VZJyy .dropdown-menu,
.cid-vd2E5VZJyy .navbar.opened {
  background: #000000 !important;
}
.cid-vd2E5VZJyy .nav-item:focus,
.cid-vd2E5VZJyy .nav-link:focus {
  outline: none;
}
.cid-vd2E5VZJyy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vd2E5VZJyy .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-vd2E5VZJyy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vd2E5VZJyy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vd2E5VZJyy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vd2E5VZJyy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vd2E5VZJyy .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-vd2E5VZJyy .navbar.opened {
  transition: all 0.3s;
}
.cid-vd2E5VZJyy .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 22px;
  line-height: 1.5;
  border-radius: 3rem;
  margin-left: 4px;
  margin-bottom: 4px;
}
.cid-vd2E5VZJyy .navbar .navbar-logo img {
  width: auto;
  border-radius: 6px !important;
}
.cid-vd2E5VZJyy .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vd2E5VZJyy .navbar.collapsed {
  justify-content: center;
}
.cid-vd2E5VZJyy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vd2E5VZJyy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vd2E5VZJyy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-vd2E5VZJyy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vd2E5VZJyy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vd2E5VZJyy .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vd2E5VZJyy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vd2E5VZJyy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vd2E5VZJyy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vd2E5VZJyy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vd2E5VZJyy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vd2E5VZJyy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vd2E5VZJyy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vd2E5VZJyy .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vd2E5VZJyy .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vd2E5VZJyy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vd2E5VZJyy .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .cid-vd2E5VZJyy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-vd2E5VZJyy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vd2E5VZJyy .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vd2E5VZJyy .navbar.navbar-short {
  min-height: 96px;
}
.cid-vd2E5VZJyy .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-vd2E5VZJyy .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-vd2E5VZJyy .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-vd2E5VZJyy .navbar-brand .navbar-caption:hover,
.cid-vd2E5VZJyy .navbar-brand .navbar-caption:focus {
  color: #ffffff !important;
}
.cid-vd2E5VZJyy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vd2E5VZJyy .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-vd2E5VZJyy .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #121212 !important;
}
.cid-vd2E5VZJyy .dropdown-item.active,
.cid-vd2E5VZJyy .dropdown-item:active {
  background-color: transparent;
}
.cid-vd2E5VZJyy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vd2E5VZJyy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vd2E5VZJyy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vd2E5VZJyy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-vd2E5VZJyy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-vd2E5VZJyy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-vd2E5VZJyy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vd2E5VZJyy ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-vd2E5VZJyy ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-vd2E5VZJyy .navbar-buttons {
  text-align: center;
  width: auto;
}
.cid-vd2E5VZJyy .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  min-height: auto;
  width: auto;
}
.cid-vd2E5VZJyy .navbar-buttons .btn .mbr-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .cid-vd2E5VZJyy .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-vd2E5VZJyy button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #000000 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-vd2E5VZJyy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vd2E5VZJyy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-vd2E5VZJyy button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-vd2E5VZJyy button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-vd2E5VZJyy button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-vd2E5VZJyy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vd2E5VZJyy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vd2E5VZJyy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vd2E5VZJyy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vd2E5VZJyy .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vd2E5VZJyy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vd2E5VZJyy .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vd2E5VZJyy .navbar {
    height: 70px;
  }
  .cid-vd2E5VZJyy .navbar.opened {
    height: auto;
  }
  .cid-vd2E5VZJyy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vd2E5VZJyy .navbar-nav {
  margin: 0 auto;
  justify-content: flex-end;
  margin: 0;
}
.cid-vd2E5VZJyy .nav-item {
  padding: 0;
  margin: 0;
}
.cid-vd2E5VZJyy .nav-item .nav-link {
  padding: 8px 22px !important;
  margin: 0 8px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border-radius: 3rem;
}
.cid-vd2E5VZJyy .nav-item .nav-link::after {
  color: #ffffff !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-vd2E5VZJyy .nav-item .nav-link:hover {
  background-color: #ffffff;
  color: #121212 !important;
}
.cid-vd2E5VZJyy .nav-item .nav-link:hover::after {
  color: #121212 !important;
}
.cid-vd2E5VZJyy .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-vd2E5VZJyy .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-vd2E5VZJyy .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-vd2E5VZJyy .navbar {
    justify-content: flex-start !important;
  }
  .cid-vd2E5VZJyy .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-vd2E5VZJyy .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-vd2E5VZJyy .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-vd2E5VZJyy .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-vd2E5VZJyy .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .cid-vd2E5VZJyy .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-vd2E5VZJyy .content-wrap {
  min-height: 110px;
}
.cid-vd2E5VZJyy .mbr-section-btn .btn::after,
.cid-vd2E5VZJyy .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
}
.cid-vd2E5VZJyy .mbr-section-btn .btn:hover,
.cid-vd2E5VZJyy .mbr-section-btn .btn:focus {
  color: #ffffff !important;
}
.cid-vd2E5VZJyy .mbr-section-btn .btn:hover::after,
.cid-vd2E5VZJyy .mbr-section-btn .btn:focus::after {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
  opacity: 1;
}
.cid-vehHsVElB6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #191919;
}
.cid-vehHsVElB6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vehHsVElB6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vehHsVElB6 .row {
  margin: 0 -15px;
}
.cid-vehHsVElB6 .row .card {
  padding: 0 15px;
}
.cid-vehHsVElB6 .title-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-vehHsVElB6 .title-wrapper {
    margin-bottom: 40px;
    height: auto;
  }
}
.cid-vehHsVElB6 .title-wrapper .title-wrap {
  margin-bottom: 30px;
}
.cid-vehHsVElB6 .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-vehHsVElB6 .title-wrapper .title-wrap .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-vehHsVElB6 .title-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.cid-vehHsVElB6 .title-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-vehHsVElB6 .title-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-vehHsVElB6 .title-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #86de2d;
  transform: scale(1.15);
}
.cid-vehHsVElB6 .title-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  color: #fefff5;
  font-size: 24px;
  transition: all .3s ease ;
}
.cid-vehHsVElB6 .form-wrap .dragArea.row {
  position: relative;
  z-index: 1;
  margin: 0 -9.6px;
}
.cid-vehHsVElB6 .form-wrap .dragArea.row .form-group {
  margin-bottom: 0 !important;
}
.cid-vehHsVElB6 .form-wrap .dragArea.row .form-group .form-control-label {
  margin-bottom: 10px;
}
.cid-vehHsVElB6 .form-wrap .dragArea.row .form-group .form-control {
  padding: 16px 20px;
  background-color: transparent;
  border: 1px solid #fefff5 !important;
  box-shadow: none;
  margin-bottom: 20px;
  color: #fefff5;
}
.cid-vehHsVElB6 .form-wrap .dragArea.row .form-group .form-control::placeholder {
  color: #a1a1a1;
}
.cid-vehHsVElB6 .form-wrap .dragArea.row .form-group .form-control:hover,
.cid-vehHsVElB6 .form-wrap .dragArea.row .form-group .form-control:focus {
  border: 1px solid #86de2d !important;
}
.cid-vehHsVElB6 .form-wrap .dragArea.row .form-group textarea {
  min-height: 150px;
}
.cid-vehHsVElB6 .form-wrap .dragArea.row .form-group .form-check {
  padding-left: 2.1em;
}
.cid-vehHsVElB6 .form-wrap .dragArea.row .form-group .form-check .form-check-input {
  background-color: #fefff5;
  border-color: #fefff5;
}
.cid-vehHsVElB6 .form-wrap .dragArea.row .mbr-section-btn {
  width: 100%;
  padding-right: 0;
}
.cid-vehHsVElB6 .form-wrap .dragArea.row .mbr-section-btn .btn {
  margin-bottom: 0;
  margin-right: 0;
  margin-top: 0;
  width: 100%;
  padding: 16px 20px;
}
.cid-vehHsVElB6 .mbr-section-title {
  color: #fefff5;
}
.cid-vehHsVElB6 .mbr-section-subtitle {
  color: #a1a1a1;
}
.cid-vehHsVElB6 label {
  color: #fefff5;
}
.cid-veNS5LOErL {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #121212;
}
.cid-veNS5LOErL .mbr-fallback-image.disabled {
  display: none;
}
.cid-veNS5LOErL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-veNS5LOErL .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  max-width: 100%;
}
@media (max-width: 768px) {
  .cid-veNS5LOErL .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-veNS5LOErL .embla__slide .slide-content {
  width: 100%;
}
.cid-veNS5LOErL .embla__slide .slide-content .item-wrapper .rating-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}
.cid-veNS5LOErL .embla__slide .slide-content .item-wrapper .rating-wrapper .rating-wrap {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.cid-veNS5LOErL .embla__slide .slide-content .item-wrapper .rating-wrapper .rating-wrap .mbr-star {
  margin-bottom: 0;
}
.cid-veNS5LOErL .embla__slide .slide-content .item-wrapper .item-text {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}
.cid-veNS5LOErL .embla__slide .slide-content .item-wrapper .person-wrapper .person-wrap {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.cid-veNS5LOErL .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-veNS5LOErL .embla__slide .slide-content .item-wrapper .person-wrapper .person-wrap .name-wrapper {
  position: relative;
  z-index: 1;
}
.cid-veNS5LOErL .embla__slide .slide-content .item-wrapper .person-wrapper .person-wrap .name-wrapper .item-name {
  margin-bottom: 0;
}
.cid-veNS5LOErL .embla__slide .slide-content .item-wrapper .person-wrapper .person-wrap .name-wrapper .item-role {
  margin-bottom: 0;
}
.cid-veNS5LOErL .embla__button--next,
.cid-veNS5LOErL .embla__button--prev {
  display: flex;
}
.cid-veNS5LOErL .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-veNS5LOErL .embla__button {
    bottom: 0;
  }
}
.cid-veNS5LOErL .embla__button:hover {
  background-color: #86de2d !important;
  color: #ffffff !important;
}
.cid-veNS5LOErL .embla__button:disabled {
  opacity: .5 !important;
  background-color: #2b2b2b !important;
  color: #ffffff !important;
}
.cid-veNS5LOErL .embla__button.embla__button--prev {
  left: 0;
}
.cid-veNS5LOErL .embla__button.embla__button--next {
  right: 0;
}
.cid-veNS5LOErL .embla {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 10%;
}
@media (max-width: 992px) {
  .cid-veNS5LOErL .embla {
    padding: 0;
    padding-bottom: 4rem;
  }
}
.cid-veNS5LOErL .embla__viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0;
}
@media (max-width: 768px) {
  .cid-veNS5LOErL .embla__viewport {
    padding: 0;
  }
}
.cid-veNS5LOErL .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-veNS5LOErL .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-veNS5LOErL .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-veNS5LOErL .item-menu-overlay {
  opacity: 0 !important;
}
.cid-veNS5LOErL .item-text {
  color: #ffffff;
}
.cid-veNS5LOErL .item-name {
  color: #ffffff;
}
.cid-veNS5LOErL .item-role {
  color: #a8a8a8;
}
.cid-veNS5LOErL .mbr-star {
  color: #f5b614;
}
.cid-vehi0B10J4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vehi0B10J4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vehi0B10J4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vehi0B10J4 .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-vehi0B10J4 .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-vehi0B10J4 .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vehi0B10J4 .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vehi0B10J4 .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vehi0B10J4 .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vehi0B10J4 .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-vehi0B10J4 .image-wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 50px 0 50px 0;
}
.cid-vdeo86HTRZ {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-vdeo86HTRZ section {
  position: relative;
}
.cid-vdeo86HTRZ h4 {
  margin: 0;
}
.cid-vdeo86HTRZ img {
  height: 100px;
  padding-rigth: 8px;
}
.cid-vdeo86HTRZ a {
  font-weight: 300;
}
.cid-vdeo86HTRZ .img1 {
  color: #86de2d;
}
.cid-vdeo86HTRZ .img2 {
  color: #86de2d;
}
.cid-vdeo86HTRZ .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #86de2d;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-vdeo86HTRZ .media-wrap {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-vdeo86HTRZ .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-vdeo86HTRZ .item,
.cid-vdeo86HTRZ .link {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-vdeo86HTRZ .item h4,
.cid-vdeo86HTRZ .link h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-vdeo86HTRZ .link {
  border-bottom: 1px solid #4a535e;
}
@media (max-width: 767px) {
  .cid-vdeo86HTRZ .item {
    justify-content: center;
  }
}
.cid-vdeo86HTRZ .item-title {
  color: #ffffff;
  text-align: left;
}
.cid-vdeo86HTRZ .text1 {
  text-align: left;
}
.cid-vdeo86HTRZ .link-title {
  text-align: left;
}
.cid-vd2E62anZT {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-vd2E62anZT .mbr-text {
  color: #f6f6ef;
}
.cid-vd2E8KdFWr {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 110px;
}
.cid-vd2E8KdFWr nav.navbar {
  position: fixed;
}
.cid-vd2E8KdFWr .container-fluid {
  padding-left: 64px;
  padding-right: 64px;
}
@media (max-width: 992px) {
  .cid-vd2E8KdFWr .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-vd2E8KdFWr .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vd2E8KdFWr .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-vd2E8KdFWr .dropdown-item {
  border: none !important;
  background: #000000 !important;
}
.cid-vd2E8KdFWr .dropdown-item:hover,
.cid-vd2E8KdFWr .dropdown-item:focus {
  background: #ffffff !important;
  color: #121212 !important;
}
.cid-vd2E8KdFWr .dropdown-item:hover span {
  color: white;
}
.cid-vd2E8KdFWr .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vd2E8KdFWr .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vd2E8KdFWr .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vd2E8KdFWr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vd2E8KdFWr .nav-link {
  position: relative;
}
.cid-vd2E8KdFWr .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-vd2E8KdFWr .container {
    flex-wrap: nowrap;
  }
}
.cid-vd2E8KdFWr .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-vd2E8KdFWr .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-vd2E8KdFWr .dropdown-menu,
.cid-vd2E8KdFWr .navbar.opened {
  background: #000000 !important;
}
.cid-vd2E8KdFWr .nav-item:focus,
.cid-vd2E8KdFWr .nav-link:focus {
  outline: none;
}
.cid-vd2E8KdFWr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vd2E8KdFWr .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-vd2E8KdFWr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vd2E8KdFWr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vd2E8KdFWr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vd2E8KdFWr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vd2E8KdFWr .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-vd2E8KdFWr .navbar.opened {
  transition: all 0.3s;
}
.cid-vd2E8KdFWr .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 22px;
  line-height: 1.5;
  border-radius: 3rem;
  margin-left: 4px;
  margin-bottom: 4px;
}
.cid-vd2E8KdFWr .navbar .navbar-logo img {
  width: auto;
  border-radius: 6px !important;
}
.cid-vd2E8KdFWr .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vd2E8KdFWr .navbar.collapsed {
  justify-content: center;
}
.cid-vd2E8KdFWr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vd2E8KdFWr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vd2E8KdFWr .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-vd2E8KdFWr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vd2E8KdFWr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vd2E8KdFWr .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vd2E8KdFWr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vd2E8KdFWr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vd2E8KdFWr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vd2E8KdFWr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vd2E8KdFWr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vd2E8KdFWr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vd2E8KdFWr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vd2E8KdFWr .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vd2E8KdFWr .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vd2E8KdFWr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vd2E8KdFWr .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .cid-vd2E8KdFWr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-vd2E8KdFWr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vd2E8KdFWr .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vd2E8KdFWr .navbar.navbar-short {
  min-height: 96px;
}
.cid-vd2E8KdFWr .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-vd2E8KdFWr .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-vd2E8KdFWr .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-vd2E8KdFWr .navbar-brand .navbar-caption:hover,
.cid-vd2E8KdFWr .navbar-brand .navbar-caption:focus {
  color: #ffffff !important;
}
.cid-vd2E8KdFWr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vd2E8KdFWr .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-vd2E8KdFWr .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #121212 !important;
}
.cid-vd2E8KdFWr .dropdown-item.active,
.cid-vd2E8KdFWr .dropdown-item:active {
  background-color: transparent;
}
.cid-vd2E8KdFWr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vd2E8KdFWr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vd2E8KdFWr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vd2E8KdFWr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-vd2E8KdFWr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-vd2E8KdFWr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-vd2E8KdFWr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vd2E8KdFWr ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-vd2E8KdFWr ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-vd2E8KdFWr .navbar-buttons {
  text-align: center;
  width: auto;
}
.cid-vd2E8KdFWr .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  min-height: auto;
  width: auto;
}
.cid-vd2E8KdFWr .navbar-buttons .btn .mbr-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .cid-vd2E8KdFWr .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-vd2E8KdFWr button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #000000 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-vd2E8KdFWr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vd2E8KdFWr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-vd2E8KdFWr button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-vd2E8KdFWr button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-vd2E8KdFWr button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-vd2E8KdFWr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vd2E8KdFWr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vd2E8KdFWr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vd2E8KdFWr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vd2E8KdFWr .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vd2E8KdFWr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vd2E8KdFWr .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vd2E8KdFWr .navbar {
    height: 70px;
  }
  .cid-vd2E8KdFWr .navbar.opened {
    height: auto;
  }
  .cid-vd2E8KdFWr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vd2E8KdFWr .navbar-nav {
  margin: 0 auto;
  justify-content: flex-end;
  margin: 0;
}
.cid-vd2E8KdFWr .nav-item {
  padding: 0;
  margin: 0;
}
.cid-vd2E8KdFWr .nav-item .nav-link {
  padding: 8px 22px !important;
  margin: 0 8px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border-radius: 3rem;
}
.cid-vd2E8KdFWr .nav-item .nav-link::after {
  color: #ffffff !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-vd2E8KdFWr .nav-item .nav-link:hover {
  background-color: #ffffff;
  color: #121212 !important;
}
.cid-vd2E8KdFWr .nav-item .nav-link:hover::after {
  color: #121212 !important;
}
.cid-vd2E8KdFWr .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-vd2E8KdFWr .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-vd2E8KdFWr .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-vd2E8KdFWr .navbar {
    justify-content: flex-start !important;
  }
  .cid-vd2E8KdFWr .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-vd2E8KdFWr .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-vd2E8KdFWr .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-vd2E8KdFWr .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-vd2E8KdFWr .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .cid-vd2E8KdFWr .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-vd2E8KdFWr .content-wrap {
  min-height: 110px;
}
.cid-vd2E8KdFWr .mbr-section-btn .btn::after,
.cid-vd2E8KdFWr .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
}
.cid-vd2E8KdFWr .mbr-section-btn .btn:hover,
.cid-vd2E8KdFWr .mbr-section-btn .btn:focus {
  color: #ffffff !important;
}
.cid-vd2E8KdFWr .mbr-section-btn .btn:hover::after,
.cid-vd2E8KdFWr .mbr-section-btn .btn:focus::after {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
  opacity: 1;
}
.cid-velOI6pSfN {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-velOI6pSfN .mbr-section-title {
  color: #ffffff;
  line-height: 1.3;
}
.cid-velOI6pSfN .mbr-text,
.cid-velOI6pSfN .mbr-section-btn {
  color: #ffffff;
}
.cid-velOI6pSfN .mbr-iconfont {
  font-size: 10rem;
  color: #86de2d;
}
.cid-velOI6pSfN .mbr-section-subtitle {
  color: #ffffff;
}
.cid-venq47OAoR {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
  overflow: hidden;
}
.cid-venq47OAoR .item:focus,
.cid-venq47OAoR span:focus {
  outline: none;
}
.cid-venq47OAoR .container-fluid {
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}
.cid-venq47OAoR .content-head {
  max-width: 800px;
}
.cid-venq47OAoR .item {
  color: #ffffff;
}
.cid-venq47OAoR::before {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-image: linear-gradient(90deg, #86de2d 10%, #b1f152 25%, #b1f152 100%);
  filter: blur(80px);
  pointer-events: none;
  opacity: .5;
}
.cid-vdevYSvRTV {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vdevYSvRTV .mbr-fallback-image.disabled {
  display: none;
}
.cid-vdevYSvRTV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vdevYSvRTV .card-wrapper {
  padding: 40px 0;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-vdevYSvRTV .card-wrapper {
    padding: 16px;
  }
}
.cid-vdevYSvRTV .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 280px;
  max-width: 280px;
}
@media (max-width: 768px) {
  .cid-vdevYSvRTV .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-vdevYSvRTV .embla__slide .slide-content {
  width: 100%;
}
.cid-vdevYSvRTV .embla__slide .slide-content .item-wrapper .item-img img {
  width: 100%;
  height: 533px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vdevYSvRTV .embla__slide .slide-content .item-wrapper .item-img img {
    height: 533px;
  }
}
.cid-vdevYSvRTV .embla__button--next,
.cid-vdevYSvRTV .embla__button--prev {
  display: flex;
}
.cid-vdevYSvRTV .embla__button {
  bottom: 47%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  background-color: #ffffff !important;
  color: #121212 !important;
  border: none !important;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
@media (max-width: 992px) {
  .cid-vdevYSvRTV .embla__button {
    bottom: 0;
  }
}
.cid-vdevYSvRTV .embla__button:hover {
  background-color: #f9652f !important;
  color: #ffffff !important;
}
.cid-vdevYSvRTV .embla__button:disabled {
  opacity: .5 !important;
  background-color: #ffffff !important;
  color: #121212 !important;
}
.cid-vdevYSvRTV .embla__button.embla__button--prev {
  left: 20px;
}
@media (max-width: 992px) {
  .cid-vdevYSvRTV .embla__button.embla__button--prev {
    left: 0;
  }
}
.cid-vdevYSvRTV .embla__button.embla__button--next {
  right: 20px;
}
@media (max-width: 992px) {
  .cid-vdevYSvRTV .embla__button.embla__button--next {
    right: 0;
  }
}
.cid-vdevYSvRTV .embla {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-vdevYSvRTV .embla {
    padding: 0;
  }
}
.cid-vdevYSvRTV .embla__viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0;
}
@media (max-width: 768px) {
  .cid-vdevYSvRTV .embla__viewport {
    padding: 0;
  }
}
.cid-vdevYSvRTV .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vdevYSvRTV .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vdevYSvRTV .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vdevYSvRTV .item-menu-overlay {
  opacity: 0 !important;
}
.cid-vdevYSvRTV .item-text {
  color: #000000;
}
.cid-vdevYSvRTV .item-name {
  color: #000000;
}
.cid-vdevYSvRTV .item-role {
  color: #767676;
}
.cid-vdevYSvRTV .mbr-star {
  color: #f5b614;
}
.cid-vensZulArY {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/caldas-veiculos-carros-semi-novos-caldas-novas-2-1920x1080.jpg");
}
.cid-vensZulArY .mbr-fallback-image.disabled {
  display: none;
}
.cid-vensZulArY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-veNRYYEvwr {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #121212;
}
.cid-veNRYYEvwr .mbr-fallback-image.disabled {
  display: none;
}
.cid-veNRYYEvwr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-veNRYYEvwr .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  max-width: 100%;
}
@media (max-width: 768px) {
  .cid-veNRYYEvwr .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-veNRYYEvwr .embla__slide .slide-content {
  width: 100%;
}
.cid-veNRYYEvwr .embla__slide .slide-content .item-wrapper .rating-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}
.cid-veNRYYEvwr .embla__slide .slide-content .item-wrapper .rating-wrapper .rating-wrap {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.cid-veNRYYEvwr .embla__slide .slide-content .item-wrapper .rating-wrapper .rating-wrap .mbr-star {
  margin-bottom: 0;
}
.cid-veNRYYEvwr .embla__slide .slide-content .item-wrapper .item-text {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}
.cid-veNRYYEvwr .embla__slide .slide-content .item-wrapper .person-wrapper .person-wrap {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.cid-veNRYYEvwr .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-veNRYYEvwr .embla__slide .slide-content .item-wrapper .person-wrapper .person-wrap .name-wrapper {
  position: relative;
  z-index: 1;
}
.cid-veNRYYEvwr .embla__slide .slide-content .item-wrapper .person-wrapper .person-wrap .name-wrapper .item-name {
  margin-bottom: 0;
}
.cid-veNRYYEvwr .embla__slide .slide-content .item-wrapper .person-wrapper .person-wrap .name-wrapper .item-role {
  margin-bottom: 0;
}
.cid-veNRYYEvwr .embla__button--next,
.cid-veNRYYEvwr .embla__button--prev {
  display: flex;
}
.cid-veNRYYEvwr .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-veNRYYEvwr .embla__button {
    bottom: 0;
  }
}
.cid-veNRYYEvwr .embla__button:hover {
  background-color: #86de2d !important;
  color: #ffffff !important;
}
.cid-veNRYYEvwr .embla__button:disabled {
  opacity: .5 !important;
  background-color: #2b2b2b !important;
  color: #ffffff !important;
}
.cid-veNRYYEvwr .embla__button.embla__button--prev {
  left: 0;
}
.cid-veNRYYEvwr .embla__button.embla__button--next {
  right: 0;
}
.cid-veNRYYEvwr .embla {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 10%;
}
@media (max-width: 992px) {
  .cid-veNRYYEvwr .embla {
    padding: 0;
    padding-bottom: 4rem;
  }
}
.cid-veNRYYEvwr .embla__viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0;
}
@media (max-width: 768px) {
  .cid-veNRYYEvwr .embla__viewport {
    padding: 0;
  }
}
.cid-veNRYYEvwr .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-veNRYYEvwr .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-veNRYYEvwr .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-veNRYYEvwr .item-menu-overlay {
  opacity: 0 !important;
}
.cid-veNRYYEvwr .item-text {
  color: #ffffff;
}
.cid-veNRYYEvwr .item-name {
  color: #ffffff;
}
.cid-veNRYYEvwr .item-role {
  color: #a8a8a8;
}
.cid-veNRYYEvwr .mbr-star {
  color: #f5b614;
}
.cid-vehi465cLi {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vehi465cLi .mbr-fallback-image.disabled {
  display: none;
}
.cid-vehi465cLi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vehi465cLi .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-vehi465cLi .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-vehi465cLi .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vehi465cLi .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vehi465cLi .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vehi465cLi .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vehi465cLi .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-vehi465cLi .image-wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 50px 0 50px 0;
}
.cid-vdeoi9OXSs {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-vdeoi9OXSs section {
  position: relative;
}
.cid-vdeoi9OXSs h4 {
  margin: 0;
}
.cid-vdeoi9OXSs img {
  height: 100px;
  padding-rigth: 8px;
}
.cid-vdeoi9OXSs a {
  font-weight: 300;
}
.cid-vdeoi9OXSs .img1 {
  color: #86de2d;
}
.cid-vdeoi9OXSs .img2 {
  color: #86de2d;
}
.cid-vdeoi9OXSs .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #86de2d;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-vdeoi9OXSs .media-wrap {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-vdeoi9OXSs .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-vdeoi9OXSs .item,
.cid-vdeoi9OXSs .link {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-vdeoi9OXSs .item h4,
.cid-vdeoi9OXSs .link h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-vdeoi9OXSs .link {
  border-bottom: 1px solid #4a535e;
}
@media (max-width: 767px) {
  .cid-vdeoi9OXSs .item {
    justify-content: center;
  }
}
.cid-vdeoi9OXSs .item-title {
  color: #ffffff;
  text-align: left;
}
.cid-vdeoi9OXSs .text1 {
  text-align: left;
}
.cid-vdeoi9OXSs .link-title {
  text-align: left;
}
.cid-vd2E8StOTc {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-vd2E8StOTc .mbr-text {
  color: #f6f6ef;
}
.cid-vd2EaEZMdF {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 110px;
}
.cid-vd2EaEZMdF nav.navbar {
  position: fixed;
}
.cid-vd2EaEZMdF .container-fluid {
  padding-left: 64px;
  padding-right: 64px;
}
@media (max-width: 992px) {
  .cid-vd2EaEZMdF .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-vd2EaEZMdF .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vd2EaEZMdF .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-vd2EaEZMdF .dropdown-item {
  border: none !important;
  background: #000000 !important;
}
.cid-vd2EaEZMdF .dropdown-item:hover,
.cid-vd2EaEZMdF .dropdown-item:focus {
  background: #ffffff !important;
  color: #121212 !important;
}
.cid-vd2EaEZMdF .dropdown-item:hover span {
  color: white;
}
.cid-vd2EaEZMdF .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vd2EaEZMdF .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vd2EaEZMdF .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vd2EaEZMdF .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vd2EaEZMdF .nav-link {
  position: relative;
}
.cid-vd2EaEZMdF .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-vd2EaEZMdF .container {
    flex-wrap: nowrap;
  }
}
.cid-vd2EaEZMdF .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-vd2EaEZMdF .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-vd2EaEZMdF .dropdown-menu,
.cid-vd2EaEZMdF .navbar.opened {
  background: #000000 !important;
}
.cid-vd2EaEZMdF .nav-item:focus,
.cid-vd2EaEZMdF .nav-link:focus {
  outline: none;
}
.cid-vd2EaEZMdF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vd2EaEZMdF .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-vd2EaEZMdF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vd2EaEZMdF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vd2EaEZMdF .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vd2EaEZMdF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vd2EaEZMdF .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-vd2EaEZMdF .navbar.opened {
  transition: all 0.3s;
}
.cid-vd2EaEZMdF .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 22px;
  line-height: 1.5;
  border-radius: 3rem;
  margin-left: 4px;
  margin-bottom: 4px;
}
.cid-vd2EaEZMdF .navbar .navbar-logo img {
  width: auto;
  border-radius: 6px !important;
}
.cid-vd2EaEZMdF .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vd2EaEZMdF .navbar.collapsed {
  justify-content: center;
}
.cid-vd2EaEZMdF .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vd2EaEZMdF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vd2EaEZMdF .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-vd2EaEZMdF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vd2EaEZMdF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vd2EaEZMdF .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vd2EaEZMdF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vd2EaEZMdF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vd2EaEZMdF .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vd2EaEZMdF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vd2EaEZMdF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vd2EaEZMdF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vd2EaEZMdF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vd2EaEZMdF .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vd2EaEZMdF .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vd2EaEZMdF .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vd2EaEZMdF .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .cid-vd2EaEZMdF .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-vd2EaEZMdF .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vd2EaEZMdF .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vd2EaEZMdF .navbar.navbar-short {
  min-height: 96px;
}
.cid-vd2EaEZMdF .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-vd2EaEZMdF .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-vd2EaEZMdF .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-vd2EaEZMdF .navbar-brand .navbar-caption:hover,
.cid-vd2EaEZMdF .navbar-brand .navbar-caption:focus {
  color: #ffffff !important;
}
.cid-vd2EaEZMdF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vd2EaEZMdF .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-vd2EaEZMdF .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #121212 !important;
}
.cid-vd2EaEZMdF .dropdown-item.active,
.cid-vd2EaEZMdF .dropdown-item:active {
  background-color: transparent;
}
.cid-vd2EaEZMdF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vd2EaEZMdF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vd2EaEZMdF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vd2EaEZMdF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-vd2EaEZMdF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-vd2EaEZMdF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-vd2EaEZMdF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vd2EaEZMdF ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-vd2EaEZMdF ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-vd2EaEZMdF .navbar-buttons {
  text-align: center;
  width: auto;
}
.cid-vd2EaEZMdF .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  min-height: auto;
  width: auto;
}
.cid-vd2EaEZMdF .navbar-buttons .btn .mbr-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .cid-vd2EaEZMdF .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-vd2EaEZMdF button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #000000 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-vd2EaEZMdF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vd2EaEZMdF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-vd2EaEZMdF button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-vd2EaEZMdF button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-vd2EaEZMdF button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-vd2EaEZMdF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vd2EaEZMdF nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vd2EaEZMdF nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vd2EaEZMdF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vd2EaEZMdF .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vd2EaEZMdF a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vd2EaEZMdF .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vd2EaEZMdF .navbar {
    height: 70px;
  }
  .cid-vd2EaEZMdF .navbar.opened {
    height: auto;
  }
  .cid-vd2EaEZMdF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vd2EaEZMdF .navbar-nav {
  margin: 0 auto;
  justify-content: flex-end;
  margin: 0;
}
.cid-vd2EaEZMdF .nav-item {
  padding: 0;
  margin: 0;
}
.cid-vd2EaEZMdF .nav-item .nav-link {
  padding: 8px 22px !important;
  margin: 0 8px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border-radius: 3rem;
}
.cid-vd2EaEZMdF .nav-item .nav-link::after {
  color: #ffffff !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-vd2EaEZMdF .nav-item .nav-link:hover {
  background-color: #ffffff;
  color: #121212 !important;
}
.cid-vd2EaEZMdF .nav-item .nav-link:hover::after {
  color: #121212 !important;
}
.cid-vd2EaEZMdF .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-vd2EaEZMdF .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-vd2EaEZMdF .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-vd2EaEZMdF .navbar {
    justify-content: flex-start !important;
  }
  .cid-vd2EaEZMdF .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-vd2EaEZMdF .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-vd2EaEZMdF .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-vd2EaEZMdF .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-vd2EaEZMdF .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .cid-vd2EaEZMdF .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-vd2EaEZMdF .content-wrap {
  min-height: 110px;
}
.cid-vd2EaEZMdF .mbr-section-btn .btn::after,
.cid-vd2EaEZMdF .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
}
.cid-vd2EaEZMdF .mbr-section-btn .btn:hover,
.cid-vd2EaEZMdF .mbr-section-btn .btn:focus {
  color: #ffffff !important;
}
.cid-vd2EaEZMdF .mbr-section-btn .btn:hover::after,
.cid-vd2EaEZMdF .mbr-section-btn .btn:focus::after {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
  opacity: 1;
}
.cid-vdevaQLJMc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/caldas-veiculos-carros-semi-novos-caldas-novas-2-1920x1080.jpg");
}
.cid-vdevaQLJMc li {
  list-style: none;
  margin-bottom: 1.2rem;
}
.cid-vdevaQLJMc li:last-child {
  margin-bottom: 0;
}
.cid-vdevaQLJMc .img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.cid-vdevaQLJMc .icon-sect .mbr-iconfont {
  margin-right: 26px;
}
.cid-vdevaQLJMc .icon-sect .mbr-iconfont:last-child {
  margin-right: 0;
}
.cid-vdevaQLJMc .mbr-fallback-image.disabled {
  display: none;
}
.cid-vdevaQLJMc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vdevc4H7ei {
  padding-top: 2rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-vdevc4H7ei .mbr-fallback-image.disabled {
  display: none;
}
.cid-vdevc4H7ei .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vdevc4H7ei .row {
  justify-content: center;
}
.cid-vdevc4H7ei .map-wrapper {
  position: relative;
}
.cid-vdevc4H7ei .map-wrapper::before {
  content: '';
  position: absolute;
  top: 2rem;
  width: 110%;
  height: 95%;
  border-radius: 100%;
  background-image: radial-gradient(#86de2d, transparent);
  filter: blur(100px);
}
.cid-vdevc4H7ei .map-wrapper .google-map {
  position: relative;
  z-index: 1;
  border: 3px solid #86de2d;
  background-color: #86de2d;
}
.cid-vdevc4H7ei .map-wrapper .google-map iframe {
  height: 750px;
  filter: invert(1);
}
@media (max-width: 1200px) {
  .cid-vdevc4H7ei .map-wrapper .google-map iframe {
    height: 450px;
  }
}
@media (max-width: 992px) {
  .cid-vdevc4H7ei .map-wrapper .google-map iframe {
    height: 350px;
  }
}
.cid-veNS1LUYCI {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #121212;
}
.cid-veNS1LUYCI .mbr-fallback-image.disabled {
  display: none;
}
.cid-veNS1LUYCI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-veNS1LUYCI .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  max-width: 100%;
}
@media (max-width: 768px) {
  .cid-veNS1LUYCI .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-veNS1LUYCI .embla__slide .slide-content {
  width: 100%;
}
.cid-veNS1LUYCI .embla__slide .slide-content .item-wrapper .rating-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}
.cid-veNS1LUYCI .embla__slide .slide-content .item-wrapper .rating-wrapper .rating-wrap {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.cid-veNS1LUYCI .embla__slide .slide-content .item-wrapper .rating-wrapper .rating-wrap .mbr-star {
  margin-bottom: 0;
}
.cid-veNS1LUYCI .embla__slide .slide-content .item-wrapper .item-text {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}
.cid-veNS1LUYCI .embla__slide .slide-content .item-wrapper .person-wrapper .person-wrap {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.cid-veNS1LUYCI .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-veNS1LUYCI .embla__slide .slide-content .item-wrapper .person-wrapper .person-wrap .name-wrapper {
  position: relative;
  z-index: 1;
}
.cid-veNS1LUYCI .embla__slide .slide-content .item-wrapper .person-wrapper .person-wrap .name-wrapper .item-name {
  margin-bottom: 0;
}
.cid-veNS1LUYCI .embla__slide .slide-content .item-wrapper .person-wrapper .person-wrap .name-wrapper .item-role {
  margin-bottom: 0;
}
.cid-veNS1LUYCI .embla__button--next,
.cid-veNS1LUYCI .embla__button--prev {
  display: flex;
}
.cid-veNS1LUYCI .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-veNS1LUYCI .embla__button {
    bottom: 0;
  }
}
.cid-veNS1LUYCI .embla__button:hover {
  background-color: #86de2d !important;
  color: #ffffff !important;
}
.cid-veNS1LUYCI .embla__button:disabled {
  opacity: .5 !important;
  background-color: #2b2b2b !important;
  color: #ffffff !important;
}
.cid-veNS1LUYCI .embla__button.embla__button--prev {
  left: 0;
}
.cid-veNS1LUYCI .embla__button.embla__button--next {
  right: 0;
}
.cid-veNS1LUYCI .embla {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 10%;
}
@media (max-width: 992px) {
  .cid-veNS1LUYCI .embla {
    padding: 0;
    padding-bottom: 4rem;
  }
}
.cid-veNS1LUYCI .embla__viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0;
}
@media (max-width: 768px) {
  .cid-veNS1LUYCI .embla__viewport {
    padding: 0;
  }
}
.cid-veNS1LUYCI .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-veNS1LUYCI .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-veNS1LUYCI .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-veNS1LUYCI .item-menu-overlay {
  opacity: 0 !important;
}
.cid-veNS1LUYCI .item-text {
  color: #ffffff;
}
.cid-veNS1LUYCI .item-name {
  color: #ffffff;
}
.cid-veNS1LUYCI .item-role {
  color: #a8a8a8;
}
.cid-veNS1LUYCI .mbr-star {
  color: #f5b614;
}
.cid-vdeolaurOf {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-vdeolaurOf section {
  position: relative;
}
.cid-vdeolaurOf h4 {
  margin: 0;
}
.cid-vdeolaurOf img {
  height: 100px;
  padding-rigth: 8px;
}
.cid-vdeolaurOf a {
  font-weight: 300;
}
.cid-vdeolaurOf .img1 {
  color: #86de2d;
}
.cid-vdeolaurOf .img2 {
  color: #86de2d;
}
.cid-vdeolaurOf .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #86de2d;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-vdeolaurOf .media-wrap {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-vdeolaurOf .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-vdeolaurOf .item,
.cid-vdeolaurOf .link {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-vdeolaurOf .item h4,
.cid-vdeolaurOf .link h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-vdeolaurOf .link {
  border-bottom: 1px solid #4a535e;
}
@media (max-width: 767px) {
  .cid-vdeolaurOf .item {
    justify-content: center;
  }
}
.cid-vdeolaurOf .item-title {
  color: #ffffff;
  text-align: left;
}
.cid-vdeolaurOf .text1 {
  text-align: left;
}
.cid-vdeolaurOf .link-title {
  text-align: left;
}
.cid-vd2EaKWmsY {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-vd2EaKWmsY .mbr-text {
  color: #f6f6ef;
}
.cid-vd2EcXGZBH {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 110px;
}
.cid-vd2EcXGZBH nav.navbar {
  position: fixed;
}
.cid-vd2EcXGZBH .container-fluid {
  padding-left: 64px;
  padding-right: 64px;
}
@media (max-width: 992px) {
  .cid-vd2EcXGZBH .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-vd2EcXGZBH .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vd2EcXGZBH .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-vd2EcXGZBH .dropdown-item {
  border: none !important;
  background: #000000 !important;
}
.cid-vd2EcXGZBH .dropdown-item:hover,
.cid-vd2EcXGZBH .dropdown-item:focus {
  background: #ffffff !important;
  color: #121212 !important;
}
.cid-vd2EcXGZBH .dropdown-item:hover span {
  color: white;
}
.cid-vd2EcXGZBH .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vd2EcXGZBH .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vd2EcXGZBH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vd2EcXGZBH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vd2EcXGZBH .nav-link {
  position: relative;
}
.cid-vd2EcXGZBH .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-vd2EcXGZBH .container {
    flex-wrap: nowrap;
  }
}
.cid-vd2EcXGZBH .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-vd2EcXGZBH .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-vd2EcXGZBH .dropdown-menu,
.cid-vd2EcXGZBH .navbar.opened {
  background: #000000 !important;
}
.cid-vd2EcXGZBH .nav-item:focus,
.cid-vd2EcXGZBH .nav-link:focus {
  outline: none;
}
.cid-vd2EcXGZBH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vd2EcXGZBH .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-vd2EcXGZBH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vd2EcXGZBH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vd2EcXGZBH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vd2EcXGZBH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vd2EcXGZBH .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-vd2EcXGZBH .navbar.opened {
  transition: all 0.3s;
}
.cid-vd2EcXGZBH .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 22px;
  line-height: 1.5;
  border-radius: 3rem;
  margin-left: 4px;
  margin-bottom: 4px;
}
.cid-vd2EcXGZBH .navbar .navbar-logo img {
  width: auto;
  border-radius: 6px !important;
}
.cid-vd2EcXGZBH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vd2EcXGZBH .navbar.collapsed {
  justify-content: center;
}
.cid-vd2EcXGZBH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vd2EcXGZBH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vd2EcXGZBH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-vd2EcXGZBH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vd2EcXGZBH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vd2EcXGZBH .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vd2EcXGZBH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vd2EcXGZBH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vd2EcXGZBH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vd2EcXGZBH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vd2EcXGZBH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vd2EcXGZBH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vd2EcXGZBH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vd2EcXGZBH .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vd2EcXGZBH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vd2EcXGZBH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vd2EcXGZBH .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .cid-vd2EcXGZBH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-vd2EcXGZBH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vd2EcXGZBH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vd2EcXGZBH .navbar.navbar-short {
  min-height: 96px;
}
.cid-vd2EcXGZBH .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-vd2EcXGZBH .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-vd2EcXGZBH .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-vd2EcXGZBH .navbar-brand .navbar-caption:hover,
.cid-vd2EcXGZBH .navbar-brand .navbar-caption:focus {
  color: #ffffff !important;
}
.cid-vd2EcXGZBH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vd2EcXGZBH .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-vd2EcXGZBH .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #121212 !important;
}
.cid-vd2EcXGZBH .dropdown-item.active,
.cid-vd2EcXGZBH .dropdown-item:active {
  background-color: transparent;
}
.cid-vd2EcXGZBH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vd2EcXGZBH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vd2EcXGZBH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vd2EcXGZBH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-vd2EcXGZBH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-vd2EcXGZBH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-vd2EcXGZBH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vd2EcXGZBH ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-vd2EcXGZBH ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-vd2EcXGZBH .navbar-buttons {
  text-align: center;
  width: auto;
}
.cid-vd2EcXGZBH .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  min-height: auto;
  width: auto;
}
.cid-vd2EcXGZBH .navbar-buttons .btn .mbr-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .cid-vd2EcXGZBH .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-vd2EcXGZBH button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #000000 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-vd2EcXGZBH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vd2EcXGZBH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-vd2EcXGZBH button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-vd2EcXGZBH button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-vd2EcXGZBH button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-vd2EcXGZBH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vd2EcXGZBH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vd2EcXGZBH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vd2EcXGZBH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vd2EcXGZBH .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vd2EcXGZBH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vd2EcXGZBH .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vd2EcXGZBH .navbar {
    height: 70px;
  }
  .cid-vd2EcXGZBH .navbar.opened {
    height: auto;
  }
  .cid-vd2EcXGZBH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vd2EcXGZBH .navbar-nav {
  margin: 0 auto;
  justify-content: flex-end;
  margin: 0;
}
.cid-vd2EcXGZBH .nav-item {
  padding: 0;
  margin: 0;
}
.cid-vd2EcXGZBH .nav-item .nav-link {
  padding: 8px 22px !important;
  margin: 0 8px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border-radius: 3rem;
}
.cid-vd2EcXGZBH .nav-item .nav-link::after {
  color: #ffffff !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-vd2EcXGZBH .nav-item .nav-link:hover {
  background-color: #ffffff;
  color: #121212 !important;
}
.cid-vd2EcXGZBH .nav-item .nav-link:hover::after {
  color: #121212 !important;
}
.cid-vd2EcXGZBH .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-vd2EcXGZBH .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-vd2EcXGZBH .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-vd2EcXGZBH .navbar {
    justify-content: flex-start !important;
  }
  .cid-vd2EcXGZBH .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-vd2EcXGZBH .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-vd2EcXGZBH .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-vd2EcXGZBH .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-vd2EcXGZBH .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .cid-vd2EcXGZBH .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-vd2EcXGZBH .content-wrap {
  min-height: 110px;
}
.cid-vd2EcXGZBH .mbr-section-btn .btn::after,
.cid-vd2EcXGZBH .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
}
.cid-vd2EcXGZBH .mbr-section-btn .btn:hover,
.cid-vd2EcXGZBH .mbr-section-btn .btn:focus {
  color: #ffffff !important;
}
.cid-vd2EcXGZBH .mbr-section-btn .btn:hover::after,
.cid-vd2EcXGZBH .mbr-section-btn .btn:focus::after {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
  opacity: 1;
}
.cid-ve5TceNUG4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #191919;
}
.cid-ve5TceNUG4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ve5TceNUG4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center cenfter;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ve5TceNUG4 .row {
  margin: 0 -15px;
}
.cid-ve5TceNUG4 .row .card {
  padding: 0 15px;
}
.cid-ve5TceNUG4 .title-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-ve5TceNUG4 .title-wrapper {
    margin-bottom: 40px;
    height: auto;
  }
}
.cid-ve5TceNUG4 .title-wrapper .title-wrap {
  margin-bottom: 30px;
}
.cid-ve5TceNUG4 .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-ve5TceNUG4 .title-wrapper .title-wrap .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-ve5TceNUG4 .title-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.cid-ve5TceNUG4 .title-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-ve5TceNUG4 .title-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-ve5TceNUG4 .title-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #86de2d;
  transform: scale(1.15);
}
.cid-ve5TceNUG4 .title-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  color: #fefff5;
  font-size: 24px;
  transition: all .3s ease ;
}
.cid-ve5TceNUG4 .form-wrap .dragArea.row {
  position: relative;
  z-index: 1;
  margin: 0 -9.6px;
}
.cid-ve5TceNUG4 .form-wrap .dragArea.row .form-group {
  margin-bottom: 0 !important;
}
.cid-ve5TceNUG4 .form-wrap .dragArea.row .form-group .form-control-label {
  margin-bottom: 10px;
}
.cid-ve5TceNUG4 .form-wrap .dragArea.row .form-group .form-control {
  padding: 16px 20px;
  background-color: transparent;
  border: 1px solid #fefff5 !important;
  box-shadow: none;
  margin-bottom: 20px;
  color: #fefff5;
}
.cid-ve5TceNUG4 .form-wrap .dragArea.row .form-group .form-control::placeholder {
  color: #ffffff;
}
.cid-ve5TceNUG4 .form-wrap .dragArea.row .form-group .form-control:hover,
.cid-ve5TceNUG4 .form-wrap .dragArea.row .form-group .form-control:focus {
  border: 1px solid #86de2d !important;
}
.cid-ve5TceNUG4 .form-wrap .dragArea.row .form-group textarea {
  min-height: 150px;
}
.cid-ve5TceNUG4 .form-wrap .dragArea.row .form-group .form-check {
  padding-left: 2.1em;
}
.cid-ve5TceNUG4 .form-wrap .dragArea.row .form-group .form-check .form-check-input {
  background-color: #fefff5;
  border-color: #fefff5;
}
.cid-ve5TceNUG4 .form-wrap .dragArea.row .mbr-section-btn {
  width: 100%;
  padding-right: 0;
}
.cid-ve5TceNUG4 .form-wrap .dragArea.row .mbr-section-btn .btn {
  margin-bottom: 0;
  margin-right: 0;
  margin-top: 0;
  width: 100%;
  padding: 16px 20px;
}
.cid-ve5TceNUG4 .mbr-section-title {
  color: #fefff5;
}
.cid-ve5TceNUG4 .mbr-section-subtitle {
  color: #a1a1a1;
}
.cid-ve5TceNUG4 label {
  color: #fefff5;
}
.cid-vdeoo14ZIP {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-vdeoo14ZIP section {
  position: relative;
}
.cid-vdeoo14ZIP h4 {
  margin: 0;
}
.cid-vdeoo14ZIP img {
  height: 100px;
  padding-rigth: 8px;
}
.cid-vdeoo14ZIP a {
  font-weight: 300;
}
.cid-vdeoo14ZIP .img1 {
  color: #86de2d;
}
.cid-vdeoo14ZIP .img2 {
  color: #86de2d;
}
.cid-vdeoo14ZIP .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #86de2d;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-vdeoo14ZIP .media-wrap {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-vdeoo14ZIP .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-vdeoo14ZIP .item,
.cid-vdeoo14ZIP .link {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-vdeoo14ZIP .item h4,
.cid-vdeoo14ZIP .link h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-vdeoo14ZIP .link {
  border-bottom: 1px solid #4a535e;
}
@media (max-width: 767px) {
  .cid-vdeoo14ZIP .item {
    justify-content: center;
  }
}
.cid-vdeoo14ZIP .item-title {
  color: #ffffff;
  text-align: left;
}
.cid-vdeoo14ZIP .text1 {
  text-align: left;
}
.cid-vdeoo14ZIP .link-title {
  text-align: left;
}
.cid-vd2Ed3OWb9 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-vd2Ed3OWb9 .mbr-text {
  color: #f6f6ef;
}
.cid-vd2EeOhrHo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 110px;
}
.cid-vd2EeOhrHo nav.navbar {
  position: fixed;
}
.cid-vd2EeOhrHo .container-fluid {
  padding-left: 64px;
  padding-right: 64px;
}
@media (max-width: 992px) {
  .cid-vd2EeOhrHo .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-vd2EeOhrHo .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vd2EeOhrHo .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-vd2EeOhrHo .dropdown-item {
  border: none !important;
  background: #000000 !important;
}
.cid-vd2EeOhrHo .dropdown-item:hover,
.cid-vd2EeOhrHo .dropdown-item:focus {
  background: #ffffff !important;
  color: #121212 !important;
}
.cid-vd2EeOhrHo .dropdown-item:hover span {
  color: white;
}
.cid-vd2EeOhrHo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vd2EeOhrHo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vd2EeOhrHo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vd2EeOhrHo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vd2EeOhrHo .nav-link {
  position: relative;
}
.cid-vd2EeOhrHo .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-vd2EeOhrHo .container {
    flex-wrap: nowrap;
  }
}
.cid-vd2EeOhrHo .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-vd2EeOhrHo .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-vd2EeOhrHo .dropdown-menu,
.cid-vd2EeOhrHo .navbar.opened {
  background: #000000 !important;
}
.cid-vd2EeOhrHo .nav-item:focus,
.cid-vd2EeOhrHo .nav-link:focus {
  outline: none;
}
.cid-vd2EeOhrHo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vd2EeOhrHo .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-vd2EeOhrHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vd2EeOhrHo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vd2EeOhrHo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vd2EeOhrHo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vd2EeOhrHo .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-vd2EeOhrHo .navbar.opened {
  transition: all 0.3s;
}
.cid-vd2EeOhrHo .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 22px;
  line-height: 1.5;
  border-radius: 3rem;
  margin-left: 4px;
  margin-bottom: 4px;
}
.cid-vd2EeOhrHo .navbar .navbar-logo img {
  width: auto;
  border-radius: 6px !important;
}
.cid-vd2EeOhrHo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vd2EeOhrHo .navbar.collapsed {
  justify-content: center;
}
.cid-vd2EeOhrHo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vd2EeOhrHo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vd2EeOhrHo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-vd2EeOhrHo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vd2EeOhrHo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vd2EeOhrHo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vd2EeOhrHo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vd2EeOhrHo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vd2EeOhrHo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vd2EeOhrHo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vd2EeOhrHo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vd2EeOhrHo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vd2EeOhrHo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vd2EeOhrHo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vd2EeOhrHo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vd2EeOhrHo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vd2EeOhrHo .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .cid-vd2EeOhrHo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-vd2EeOhrHo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vd2EeOhrHo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vd2EeOhrHo .navbar.navbar-short {
  min-height: 96px;
}
.cid-vd2EeOhrHo .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-vd2EeOhrHo .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-vd2EeOhrHo .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-vd2EeOhrHo .navbar-brand .navbar-caption:hover,
.cid-vd2EeOhrHo .navbar-brand .navbar-caption:focus {
  color: #ffffff !important;
}
.cid-vd2EeOhrHo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vd2EeOhrHo .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-vd2EeOhrHo .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #121212 !important;
}
.cid-vd2EeOhrHo .dropdown-item.active,
.cid-vd2EeOhrHo .dropdown-item:active {
  background-color: transparent;
}
.cid-vd2EeOhrHo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vd2EeOhrHo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vd2EeOhrHo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vd2EeOhrHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-vd2EeOhrHo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-vd2EeOhrHo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-vd2EeOhrHo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vd2EeOhrHo ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-vd2EeOhrHo ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-vd2EeOhrHo .navbar-buttons {
  text-align: center;
  width: auto;
}
.cid-vd2EeOhrHo .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  min-height: auto;
  width: auto;
}
.cid-vd2EeOhrHo .navbar-buttons .btn .mbr-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .cid-vd2EeOhrHo .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-vd2EeOhrHo button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #000000 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-vd2EeOhrHo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vd2EeOhrHo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-vd2EeOhrHo button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-vd2EeOhrHo button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-vd2EeOhrHo button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-vd2EeOhrHo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vd2EeOhrHo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vd2EeOhrHo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vd2EeOhrHo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vd2EeOhrHo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vd2EeOhrHo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vd2EeOhrHo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vd2EeOhrHo .navbar {
    height: 70px;
  }
  .cid-vd2EeOhrHo .navbar.opened {
    height: auto;
  }
  .cid-vd2EeOhrHo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vd2EeOhrHo .navbar-nav {
  margin: 0 auto;
  justify-content: flex-end;
  margin: 0;
}
.cid-vd2EeOhrHo .nav-item {
  padding: 0;
  margin: 0;
}
.cid-vd2EeOhrHo .nav-item .nav-link {
  padding: 8px 22px !important;
  margin: 0 8px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border-radius: 3rem;
}
.cid-vd2EeOhrHo .nav-item .nav-link::after {
  color: #ffffff !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-vd2EeOhrHo .nav-item .nav-link:hover {
  background-color: #ffffff;
  color: #121212 !important;
}
.cid-vd2EeOhrHo .nav-item .nav-link:hover::after {
  color: #121212 !important;
}
.cid-vd2EeOhrHo .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-vd2EeOhrHo .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-vd2EeOhrHo .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-vd2EeOhrHo .navbar {
    justify-content: flex-start !important;
  }
  .cid-vd2EeOhrHo .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-vd2EeOhrHo .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-vd2EeOhrHo .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-vd2EeOhrHo .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-vd2EeOhrHo .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .cid-vd2EeOhrHo .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-vd2EeOhrHo .content-wrap {
  min-height: 110px;
}
.cid-vd2EeOhrHo .mbr-section-btn .btn::after,
.cid-vd2EeOhrHo .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
}
.cid-vd2EeOhrHo .mbr-section-btn .btn:hover,
.cid-vd2EeOhrHo .mbr-section-btn .btn:focus {
  color: #ffffff !important;
}
.cid-vd2EeOhrHo .mbr-section-btn .btn:hover::after,
.cid-vd2EeOhrHo .mbr-section-btn .btn:focus::after {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
  opacity: 1;
}
.cid-vdeBqdUMeL {
  padding-top: 60px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-vdeBqdUMeL .mbr-section-subtitle {
  color: #353535;
}
.cid-vdeoqGPriT {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-vdeoqGPriT section {
  position: relative;
}
.cid-vdeoqGPriT h4 {
  margin: 0;
}
.cid-vdeoqGPriT img {
  height: 100px;
  padding-rigth: 8px;
}
.cid-vdeoqGPriT a {
  font-weight: 300;
}
.cid-vdeoqGPriT .img1 {
  color: #86de2d;
}
.cid-vdeoqGPriT .img2 {
  color: #86de2d;
}
.cid-vdeoqGPriT .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #86de2d;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-vdeoqGPriT .media-wrap {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-vdeoqGPriT .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-vdeoqGPriT .item,
.cid-vdeoqGPriT .link {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-vdeoqGPriT .item h4,
.cid-vdeoqGPriT .link h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-vdeoqGPriT .link {
  border-bottom: 1px solid #4a535e;
}
@media (max-width: 767px) {
  .cid-vdeoqGPriT .item {
    justify-content: center;
  }
}
.cid-vdeoqGPriT .item-title {
  color: #ffffff;
  text-align: left;
}
.cid-vdeoqGPriT .text1 {
  text-align: left;
}
.cid-vdeoqGPriT .link-title {
  text-align: left;
}
.cid-vd2EeUoh6S {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-vd2EeUoh6S .mbr-text {
  color: #f6f6ef;
}
.cid-vdeJmJk2Dz {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 110px;
}
.cid-vdeJmJk2Dz nav.navbar {
  position: fixed;
}
.cid-vdeJmJk2Dz .container-fluid {
  padding-left: 64px;
  padding-right: 64px;
}
@media (max-width: 992px) {
  .cid-vdeJmJk2Dz .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-vdeJmJk2Dz .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vdeJmJk2Dz .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-vdeJmJk2Dz .dropdown-item {
  border: none !important;
  background: #000000 !important;
}
.cid-vdeJmJk2Dz .dropdown-item:hover,
.cid-vdeJmJk2Dz .dropdown-item:focus {
  background: #ffffff !important;
  color: #121212 !important;
}
.cid-vdeJmJk2Dz .dropdown-item:hover span {
  color: white;
}
.cid-vdeJmJk2Dz .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vdeJmJk2Dz .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vdeJmJk2Dz .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vdeJmJk2Dz .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vdeJmJk2Dz .nav-link {
  position: relative;
}
.cid-vdeJmJk2Dz .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-vdeJmJk2Dz .container {
    flex-wrap: nowrap;
  }
}
.cid-vdeJmJk2Dz .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-vdeJmJk2Dz .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-vdeJmJk2Dz .dropdown-menu,
.cid-vdeJmJk2Dz .navbar.opened {
  background: #000000 !important;
}
.cid-vdeJmJk2Dz .nav-item:focus,
.cid-vdeJmJk2Dz .nav-link:focus {
  outline: none;
}
.cid-vdeJmJk2Dz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vdeJmJk2Dz .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-vdeJmJk2Dz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vdeJmJk2Dz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vdeJmJk2Dz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vdeJmJk2Dz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vdeJmJk2Dz .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-vdeJmJk2Dz .navbar.opened {
  transition: all 0.3s;
}
.cid-vdeJmJk2Dz .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 22px;
  line-height: 1.5;
  border-radius: 3rem;
  margin-left: 4px;
  margin-bottom: 4px;
}
.cid-vdeJmJk2Dz .navbar .navbar-logo img {
  width: auto;
  border-radius: 6px !important;
}
.cid-vdeJmJk2Dz .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vdeJmJk2Dz .navbar.collapsed {
  justify-content: center;
}
.cid-vdeJmJk2Dz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vdeJmJk2Dz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vdeJmJk2Dz .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-vdeJmJk2Dz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vdeJmJk2Dz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vdeJmJk2Dz .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vdeJmJk2Dz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vdeJmJk2Dz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vdeJmJk2Dz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vdeJmJk2Dz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vdeJmJk2Dz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vdeJmJk2Dz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vdeJmJk2Dz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vdeJmJk2Dz .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vdeJmJk2Dz .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vdeJmJk2Dz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vdeJmJk2Dz .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .cid-vdeJmJk2Dz .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-vdeJmJk2Dz .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vdeJmJk2Dz .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vdeJmJk2Dz .navbar.navbar-short {
  min-height: 96px;
}
.cid-vdeJmJk2Dz .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-vdeJmJk2Dz .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-vdeJmJk2Dz .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-vdeJmJk2Dz .navbar-brand .navbar-caption:hover,
.cid-vdeJmJk2Dz .navbar-brand .navbar-caption:focus {
  color: #ffffff !important;
}
.cid-vdeJmJk2Dz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vdeJmJk2Dz .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-vdeJmJk2Dz .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #121212 !important;
}
.cid-vdeJmJk2Dz .dropdown-item.active,
.cid-vdeJmJk2Dz .dropdown-item:active {
  background-color: transparent;
}
.cid-vdeJmJk2Dz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vdeJmJk2Dz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vdeJmJk2Dz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vdeJmJk2Dz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-vdeJmJk2Dz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-vdeJmJk2Dz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-vdeJmJk2Dz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vdeJmJk2Dz ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-vdeJmJk2Dz ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-vdeJmJk2Dz .navbar-buttons {
  text-align: center;
  width: auto;
}
.cid-vdeJmJk2Dz .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  min-height: auto;
  width: auto;
}
.cid-vdeJmJk2Dz .navbar-buttons .btn .mbr-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .cid-vdeJmJk2Dz .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-vdeJmJk2Dz button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #000000 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-vdeJmJk2Dz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vdeJmJk2Dz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-vdeJmJk2Dz button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-vdeJmJk2Dz button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-vdeJmJk2Dz button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-vdeJmJk2Dz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vdeJmJk2Dz nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vdeJmJk2Dz nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vdeJmJk2Dz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vdeJmJk2Dz .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vdeJmJk2Dz a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vdeJmJk2Dz .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vdeJmJk2Dz .navbar {
    height: 70px;
  }
  .cid-vdeJmJk2Dz .navbar.opened {
    height: auto;
  }
  .cid-vdeJmJk2Dz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vdeJmJk2Dz .navbar-nav {
  margin: 0 auto;
  justify-content: flex-end;
  margin: 0;
}
.cid-vdeJmJk2Dz .nav-item {
  padding: 0;
  margin: 0;
}
.cid-vdeJmJk2Dz .nav-item .nav-link {
  padding: 8px 22px !important;
  margin: 0 8px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border-radius: 3rem;
}
.cid-vdeJmJk2Dz .nav-item .nav-link::after {
  color: #ffffff !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-vdeJmJk2Dz .nav-item .nav-link:hover {
  background-color: #ffffff;
  color: #121212 !important;
}
.cid-vdeJmJk2Dz .nav-item .nav-link:hover::after {
  color: #121212 !important;
}
.cid-vdeJmJk2Dz .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-vdeJmJk2Dz .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-vdeJmJk2Dz .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-vdeJmJk2Dz .navbar {
    justify-content: flex-start !important;
  }
  .cid-vdeJmJk2Dz .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-vdeJmJk2Dz .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-vdeJmJk2Dz .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-vdeJmJk2Dz .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-vdeJmJk2Dz .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .cid-vdeJmJk2Dz .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-vdeJmJk2Dz .content-wrap {
  min-height: 110px;
}
.cid-vdeJmJk2Dz .mbr-section-btn .btn::after,
.cid-vdeJmJk2Dz .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
}
.cid-vdeJmJk2Dz .mbr-section-btn .btn:hover,
.cid-vdeJmJk2Dz .mbr-section-btn .btn:focus {
  color: #ffffff !important;
}
.cid-vdeJmJk2Dz .mbr-section-btn .btn:hover::after,
.cid-vdeJmJk2Dz .mbr-section-btn .btn:focus::after {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
  opacity: 1;
}
.cid-vdjc4rk6Jz {
  padding-top: 90px;
  padding-bottom: 75px;
  position: relative;
  background-color: #ffffff;
}
.cid-vdjc4rk6Jz .mbr-section-title {
  color: #06182d;
}
.cid-vdjc4rk6Jz .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-vdjc4rk6Jz .mbr-section-subtitle {
  color: #06182d;
}
.cid-vdjc4rk6Jz .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-vdjc4rk6Jz .mbr-text {
  color: #b1f152;
  font-weight: 300;
}
.cid-vdjc4rk6Jz .title-text {
  margin-bottom: 70px;
}
.cid-vdjc4rk6Jz .title-text .mbr-section-subtitle {
  color: #06182d;
}
.cid-vdjc4rk6Jz .title-text .mbr-section-subtitle.mbr-light {
  font-weight: 300;
}
.cid-vdjc4rk6Jz .title-text .mbr-section-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-vdjc4rk6Jz .title-text .mbr-section-title {
  color: #232323;
}
.cid-vdjc4rk6Jz .title-text .mbr-section-title.mbr-bold {
  font-weight: 700;
}
.cid-vdjc4rk6Jz .title-text .mbr-section-title span {
  font-weight: 500;
}
.cid-vdjc4rk6Jz .title-text .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-vdjc4rk6Jz .mbr-iconfont {
  font-family: "Moririse2" !important;
  display: inline-flex;
  transform-origin: ;
  transform: rotate(45deg);
  transition: all 0.3s;
  font-size: 1.4rem !important;
  color: #ff4e3c;
}
.cid-vdjc4rk6Jz .mbr-iconfont:before {
  transform: scaleY(0) !important;
  transition: all 0.4s;
}
.cid-vdjc4rk6Jz .p-4 {
  padding: 1rem 0 !important;
}
.cid-vdjc4rk6Jz .accordion .card .card-header {
  margin-bottom: 0px;
}
.cid-vdjc4rk6Jz .mbri-arrow-down:before {
  content: "\e960";
}
.cid-vdjc4rk6Jz .mbri-arrow-up:before {
  content: "\e960";
}
.cid-vdjc4rk6Jz .collapsed .mbr-iconfont {
  transform: rotate(0deg);
}
.cid-vdjc4rk6Jz .collapsed .mbr-iconfont:before {
  transform: scaleY(1) !important;
  transition: all 0.3s;
}
.cid-vdjc4rk6Jz .card {
  border-radius: 0px;
  background-color: #f5f5f5;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 1.2rem;
}
.cid-vdjc4rk6Jz .card:hover .card-header {
  transition: all 0.15s linear 0s;
  opacity: 0.7;
}
.cid-vdjc4rk6Jz .card .card-header {
  border-radius: 0px;
  background-color: transparent;
  padding: 0;
}
.cid-vdjc4rk6Jz .card .card-header h4 {
  justify-content: flex-start;
  width: 100%;
}
.cid-vdjc4rk6Jz .card .card-header a.panel-title {
  margin-bottom: 0;
  display: flex;
  width: 100%;
  border-bottom: 2px solid #ff4e3c;
  transition: all 0.3s;
  justify-content: space-between;
}
.cid-vdjc4rk6Jz .card .card-header a.panel-title.collapsed {
  border-bottom: 1px solid #efefef;
}
.cid-vdjc4rk6Jz .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-vdjc4rk6Jz .card .card-header a.panel-title h4 {
  padding: 0 0rem 1.2rem;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.5px;
  color: #28303f;
}
.cid-vdjc4rk6Jz .card .card-header a.panel-title h4 .sign {
  line-height: 1.6 !important;
}
.cid-vdjc4rk6Jz .card .card-header a.panel-title .toggle-icon {
  right: 14px;
  position: absolute;
  top: 20px;
  transform: none;
  display: inline-block;
  height: 2px;
  margin-left: 0;
  width: 12px;
  border-radius: 50%;
  border: 2px solid rgba(97, 114, 138, 0.4);
  padding: 13px;
}
.cid-vdjc4rk6Jz .card .card-header a.panel-title .toggle-icon:before,
.cid-vdjc4rk6Jz .card .card-header a.panel-title .toggle-icon:after {
  background: currentColor;
  border: 0;
  box-sizing: border-box;
  content: "";
  display: block;
  left: 50%;
  position: absolute;
  top: 50%;
}
.cid-vdjc4rk6Jz .card .card-header a.panel-title .toggle-icon:before {
  height: 12px;
  margin-left: -1px !important;
  width: 2px;
  margin-top: -6px;
  background-color: currentColor;
  border: 0;
  transform: none;
}
.cid-vdjc4rk6Jz .card .card-header a.panel-title .toggle-icon:after {
  height: 2px;
  width: 12px;
  margin-left: -6px;
  margin-top: -1px;
}
.cid-vdjc4rk6Jz .card .panel-body {
  padding: 14px 20px;
}
.cid-vdjc4rk6Jz .card .panel-body p {
  color: #b1f152;
  line-height: 1.5;
}
.cid-vdjc4rk6Jz .card .panel-body .display-4 {
  font-size: 16px;
}
.cid-vdjc4rk6Jz .mbr-fallback-image.disabled {
  display: none;
}
.cid-vdjc4rk6Jz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vdjc4rk6Jz .card .card-header a.panel-title h4 {
  color: #000000;
}
.cid-vdjc4rk6Jz .card .panel-body p {
  color: #000000;
}
.cid-vegZALnK6q {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vegZALnK6q .mbr-fallback-image.disabled {
  display: none;
}
.cid-vegZALnK6q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vegZALnK6q .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  max-width: 100%;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-vegZALnK6q .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-vegZALnK6q .embla__slide .slide-content {
  width: 100%;
}
.cid-vegZALnK6q .embla__slide .slide-content .item-wrapper {
  height: 100%;
}
.cid-vegZALnK6q .embla__slide .slide-content .item-wrapper .item-img img {
  width: 100%;
  height: 660px;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 1440px) {
  .cid-vegZALnK6q .embla__slide .slide-content .item-wrapper .item-img img {
    height: 590px;
  }
}
@media (max-width: 992px) {
  .cid-vegZALnK6q .embla__slide .slide-content .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-vegZALnK6q .embla__button--next,
.cid-vegZALnK6q .embla__button--prev {
  display: flex;
}
.cid-vegZALnK6q .embla__button {
  top: 45%;
  width: 56px;
  height: 56px;
  font-size: 16px;
  backdrop-filter: blur(10px);
  background-color: transparent !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 100%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-vegZALnK6q .embla__button::before {
  content: '';
  position: absolute;
  width: 56px;
  height: 56px;
  background-color: #000000;
  opacity: .2;
  border-radius: 100%;
  pointer-events: none;
  transition: all 0.3s ease;
}
.cid-vegZALnK6q .embla__button:hover::before {
  opacity: .5;
}
.cid-vegZALnK6q .embla__button:disabled {
  background-color: transparent !important;
  color: #ffffff !important;
  opacity: .5 !important;
}
.cid-vegZALnK6q .embla__button:disabled::before {
  opacity: .2;
}
.cid-vegZALnK6q .embla__button .mbr-iconfont {
  z-index: 1;
}
.cid-vegZALnK6q .embla__button.embla__button--prev {
  left: 32px;
}
@media (max-width: 992px) {
  .cid-vegZALnK6q .embla__button.embla__button--prev {
    left: 16px;
  }
}
.cid-vegZALnK6q .embla__button.embla__button--prev .mbr-iconfont {
  margin-right: 4px;
}
.cid-vegZALnK6q .embla__button.embla__button--next {
  right: 32px;
}
@media (max-width: 992px) {
  .cid-vegZALnK6q .embla__button.embla__button--next {
    right: 16px;
  }
}
.cid-vegZALnK6q .embla__button.embla__button--next .mbr-iconfont {
  margin-left: 4px;
}
.cid-vegZALnK6q .embla {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.cid-vegZALnK6q .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-vegZALnK6q .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vegZALnK6q .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vegZALnK6q .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vegZALnK6q .item-menu-overlay {
  opacity: 0 !important;
}
.cid-vdjaMsWuOH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-vdjaMsWuOH .mbr-fallback-image.disabled {
  display: none;
}
.cid-vdjaMsWuOH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vdjaMsWuOH .container-fluid {
  padding: 0 120px;
}
@media (max-width: 768px) {
  .cid-vdjaMsWuOH .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-vdjaMsWuOH .container {
    padding: 0 26px;
  }
}
.cid-vdjaMsWuOH .row {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-vdjaMsWuOH .row {
    margin: 0 -12px;
  }
}
.cid-vdjaMsWuOH .card {
  position: relative;
  padding: 0 50px 0 0;
  justify-content: center;
  border-radius: 0;
}
.cid-vdjaMsWuOH .card:first-child {
  border-right: 1px solid #ffffff;
}
@media (max-width: 992px) {
  .cid-vdjaMsWuOH .card:first-child {
    border: none;
  }
}
.cid-vdjaMsWuOH .card:first-child::before {
  content: '';
  position: absolute;
  right: -8px;
  width: 15px;
  height: 15px;
  background-color: #ffffff;
  border-radius: 50%;
}
@media (max-width: 992px) {
  .cid-vdjaMsWuOH .card:first-child::before {
    display: none;
  }
}
.cid-vdjaMsWuOH .card:last-child {
  padding: 0 0 0 50px;
}
@media (max-width: 992px) {
  .cid-vdjaMsWuOH .card:last-child {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-vdjaMsWuOH .card {
    padding: 0 12px;
  }
}
.cid-vdjaMsWuOH .image-wrapper {
  padding: 40px 0;
}
@media (max-width: 992px) {
  .cid-vdjaMsWuOH .image-wrapper {
    padding: 0 0 40px 0;
  }
}
.cid-vdjaMsWuOH .image-wrapper img {
  height: 420px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vdjaMsWuOH .image-wrapper img {
    height: 300px;
  }
}
.cid-vdjaMsWuOH .title-wrapper .title-wrap {
  padding: 40px;
}
@media (max-width: 992px) {
  .cid-vdjaMsWuOH .title-wrapper .title-wrap {
    padding: 0;
  }
}
.cid-vdjaMsWuOH .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 18px;
}
.cid-vdjaMsWuOH .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-vdjaMsWuOH .mbr-section-title {
  color: #ffffff;
}
.cid-vdjaMsWuOH .mbr-text {
  color: #cacaca;
}
.cid-vehHcShM97 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #232323;
}
.cid-vehHcShM97 .title {
  margin-bottom: 2rem;
}
.cid-vehHcShM97 .mbr-section-subtitle {
  color: #767676;
}
.cid-vehHcShM97 a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-vehHcShM97 a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-vehHcShM97 .form-group {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-vehHcShM97 .input-group-btn {
  display: block;
  text-align: left;
}
.cid-vehHcShM97 h3 {
  color: #444;
  letter-spacing: 0.03em;
}
.cid-vehHcShM97 .form-control {
  border-radius: 0px !important;
  padding-left: 15px;
}
.cid-vehHcShM97 .google-map {
  width: 100%;
  height: 25rem;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}
.cid-vehHcShM97 .google-map iframe {
  width: inherit;
  height: 100%;
}
.cid-vehHcShM97 .google-map [data-state-details] {
  color: #444444;
  font-family: Muli;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-vehHcShM97 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-vehHcShM97 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-vehHcShM97 textarea.form-control {
  min-height: 154px;
}
@media (max-width: 991px) {
  .cid-vehHcShM97 .mbr-section-title {
    text-align: center;
  }
  .cid-vehHcShM97 .mbr-section-subtitle {
    text-align: center;
  }
  .cid-vehHcShM97 .input-group-btn {
    text-align: center;
  }
}
.cid-vehHcShM97 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vehHcShM97 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vehHcShM97 H2 {
  color: #ffffff;
}
.cid-vdjaNfnHV8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #dbd4c5;
}
.cid-vdjaNfnHV8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vdjaNfnHV8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vdjaNfnHV8 .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-vdjaNfnHV8 .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-vdjaNfnHV8 .container {
    padding: 0 20px;
  }
}
.cid-vdjaNfnHV8 .row {
  margin: 0;
}
.cid-vdjaNfnHV8 .card {
  padding: 0;
}
.cid-vdjaNfnHV8 .image-wrapper img {
  height: 800px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vdjaNfnHV8 .image-wrapper img {
    height: 450px;
  }
}
.cid-vdjaNfnHV8 .title-wrapper {
  height: 100%;
  margin-bottom: 10%;
  background-color: #1b1b1b;
  display: flex;
  align-items: center;
  padding: 24px 115px;
}
@media (max-width: 992px) {
  .cid-vdjaNfnHV8 .title-wrapper {
    padding: 50px 20px;
  }
}
.cid-vdjaNfnHV8 .title-wrapper .title-wrap {
  width: 100%;
}
.cid-vdjaNfnHV8 .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-vdjaNfnHV8 .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-vdjaNfnHV8 .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 50px;
  line-height: 1.78;
}
@media (max-width: 992px) {
  .cid-vdjaNfnHV8 .title-wrapper .title-wrap .mbr-text {
    margin-bottom: 24px;
  }
}
.cid-vdjaNfnHV8 .mbr-section-title {
  color: #c2b299;
}
.cid-vdjaNfnHV8 .mbr-text {
  color: #e4dfd4;
}
.cid-vdjaOgySr6 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-vdjaOgySr6 img {
  width: 100%;
  border-radius: 50px;
  margin-bottom: 20px;
  max-height: ;
}
.cid-vdjaOgySr6 .card {
  margin-bottom: 130px !important;
}
.cid-vdjaOgySr6 .card .img-wrapper {
  overflow: hidden;
}
.cid-vdjaOgySr6 .card:hover {
  cursor: pointer;
}
.cid-vdjaOgySr6 .card:hover img {
  transform: scale(1.05);
}
.cid-vdjaOgySr6 .card:hover .img-wrapper {
  box-shadow: 0 30px 30px -20px rgba(50, 50, 50, 0.3);
}
@media (max-width: 1200px) {
  .cid-vdjaOgySr6 .card {
    margin-bottom: 50px !important;
  }
}
.cid-vdjaOgySr6 .card .card-wrapper {
  text-align: left;
}
.cid-vdjaOgySr6 .card .card-wrapper .mbr-iconfont {
  font-size: 41px;
  color: #ff513c;
  display: block;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  padding-bottom: 14px;
  margin-right: 14px;
}
.cid-vdjaOgySr6 .card .card-wrapper .card-box .card-title {
  cursor: pointer;
  color: #06182d;
}
.cid-vdjaOgySr6 .card .card-wrapper .card-box .card-title.display-7 {
  line-height: 1.2;
}
.cid-vdjaOgySr6 .card .card-wrapper .card-box .card-text {
  color: #b1f152;
}
@media (min-width: 1400px) {
  .cid-vdjaOgySr6 .card.left-box {
    right: 105px !important;
  }
  .cid-vdjaOgySr6 .card.right-box {
    left: 97px !important;
  }
}
.cid-vdjaOgySr6 .mbr-section-title {
  color: #06182d;
}
.cid-vdjaOgySr6 .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-vdjaOgySr6 .mbr-section-subtitle {
  color: #06182d;
}
.cid-vdjaOgySr6 .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-vdjaOgySr6 .mbr-section-text {
  color: #999999;
}
.cid-vdjaOgySr6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vdjaOgySr6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vdjaONtsYK {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #181818;
}
.cid-vdjaONtsYK .mbr-section-subtitle {
  color: #b6b6b6;
  text-align: center;
}
.cid-vdjaONtsYK .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-vdjaONtsYK .card .card-wrapper {
  overflow: hidden;
  height: 100%;
  color: #ffffff;
  padding: 0;
}
.cid-vdjaONtsYK .card .card-wrapper .card-img {
  position: relative;
}
.cid-vdjaONtsYK .card .card-wrapper .card-img .price-label {
  padding: 8px;
  left: auto;
  top: auto;
  right: 20px;
  bottom: 20px;
  background-color: #1352ff;
  z-index: 100;
  position: absolute;
}
.cid-vdjaONtsYK .card .card-wrapper .card-img .price-label .price-text {
  padding: 0;
  margin: 0;
}
.cid-vdjaONtsYK .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-vdjaONtsYK .card .card-wrapper .card-box .card-title {
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1rem;
  text-align: left;
}
.cid-vdjaONtsYK .card .card-wrapper .card-box .container-nested {
  display: flex;
}
.cid-vdjaONtsYK .card .card-wrapper .card-box .container-nested .item {
  text-align: center;
  margin-right: 24px;
}
.cid-vdjaONtsYK .card .card-wrapper .card-box .container-nested .item .mbr-iconfont {
  font-size: 2.5rem;
}
.cid-vdjaONtsYK .card .card-wrapper .card-box .card-text {
  color: #ffffff;
}
.cid-vdjaONtsYK .card .card-wrapper .card-box .link.display-4 .mbr-iconfont {
  font-size: 0.9rem;
}
.cid-vdjaONtsYK .card .card-wrapper .card-box .link .mbr-iconfont {
  align-self: center;
  color: #25d366;
  margin-left: 0.5rem;
}
@media (max-width: 767px) {
  .cid-vdjaONtsYK .mbr-text {
    text-align: left;
  }
}
.cid-vdjaONtsYK .mbr-fallback-image.disabled {
  display: none;
}
.cid-vdjaONtsYK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vdjaPPOSNg {
  padding-top: 150px;
  padding-bottom: 150px;
  background-color: #000000;
}
.cid-vdjaPPOSNg .wrapping {
  background-color: #181818;
  padding: 3rem;
  justify-content: space-between;
  align-items: center;
}
.cid-vdjaPPOSNg .wrapping .mbr-section-title {
  color: #ffffff;
}
.cid-vdjaPPOSNg .wrapping .mbr-section-title.display-2 {
  line-height: 1.375;
}
.cid-vdjaPPOSNg .wrapping .mbr-text {
  color: #a1a1a1;
  margin-bottom: 0;
}
.cid-vdjaPPOSNg .wrapping .btn.btn-md {
  font-weight: 500;
  line-height: 1.5;
}
.cid-vdjaPPOSNg .mbr-fallback-image.disabled {
  display: none;
}
.cid-vdjaPPOSNg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vdjaQdFbOm {
  padding-top: 105px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/14.jpg");
}
.cid-vdjaQdFbOm .mbr-section-subtitle {
  color: #aeaeae;
}
.cid-vdjaQdFbOm .carousel-item {
  justify-content: flex-start;
  text-align: left;
}
.cid-vdjaQdFbOm .carousel-item.active,
.cid-vdjaQdFbOm .carousel-item-next,
.cid-vdjaQdFbOm .carousel-item-prev {
  display: flex;
}
.cid-vdjaQdFbOm .carousel-controls a {
  transition: opacity 0.5s;
  font-size: 2rem;
  width: 5%;
}
.cid-vdjaQdFbOm .carousel-controls a span {
  position: absolute;
  top: 45%;
  font-size: 30px;
  padding: 15px;
  border-radius: 50%;
  color: #ffffff;
  background: transparent;
}
.cid-vdjaQdFbOm .carousel-controls a:hover span {
  opacity: 1;
}
@media (max-width: 992px) {
  .cid-vdjaQdFbOm .carousel-controls {
    display: none;
  }
}
.cid-vdjaQdFbOm .btn {
  margin: 0.4rem !important;
  justify-content: space-between;
}
.cid-vdjaQdFbOm .btn.btn-sm {
  padding: 9px 41px;
}
.cid-vdjaQdFbOm .carousel-indicators {
  margin: 20px auto 0;
  align-items: center;
  position: relative;
}
.cid-vdjaQdFbOm .carousel-indicators .active {
  opacity: 1;
  border: 0;
  background-color: #ffffff;
}
.cid-vdjaQdFbOm .carousel-indicators li {
  height: 15px;
  width: 15px;
  border-radius: 50%;
  transition: opacity 0.5s;
  background-color: #666666;
  font-size: 2rem;
  opacity: 0.5;
  border-width: 0px;
}
.cid-vdjaQdFbOm .carousel-indicators li:hover {
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-vdjaQdFbOm * {
    text-align: center;
  }
}
.cid-vdjaQdFbOm .mbr-fallback-image.disabled {
  display: none;
}
.cid-vdjaQdFbOm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vdjaSkKAfq {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-vdjaSkKAfq .mbr-section-title {
  color: #ffffff;
}
.cid-vdjaSkKAfq .mbr-section-title.display-2 {
  line-height: 1.2;
  font-size: 30px;
}
.cid-vdjaSkKAfq .mbr-section-subtitle {
  color: #afafa7;
}
.cid-vdjaSkKAfq .mbr-text {
  color: #ffffff;
}
.cid-vdjaSkKAfq .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-vdjaSkKAfq .card .card-wrapper {
  display: flex;
  transition: all 0.3s;
  margin: auto;
  min-height: 280px;
  margin-bottom: 30px;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.04) !important;
  border-radius: 4px;
}
.cid-vdjaSkKAfq .card .card-wrapper .card-box .img-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}
.cid-vdjaSkKAfq .card .card-wrapper .card-box .img-wrapper img {
  width: 100%;
}
.cid-vdjaSkKAfq .card .card-wrapper .card-box .card-title {
  color: #ffffff;
}
.cid-vdjaSkKAfq .card .card-wrapper .card-box .mbr-text {
  color: #ffffff;
}
.cid-vdjaSkKAfq .card .card-wrapper .card-box .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-vdjaSkKAfq .card .card-wrapper .card-box .link-wrap {
  width: 100%;
}
.cid-vdjaSkKAfq .card .card-wrapper .card-box .link-wrap .link {
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-vdjaSkKAfq .container {
    max-width: 1400px;
  }
}
@media (max-width: 767px) {
  .cid-vdjaSkKAfq .card-wrapper {
    flex-direction: column;
  }
  .cid-vdjaSkKAfq .card-box {
    padding: 2rem 1rem;
  }
  .cid-vdjaSkKAfq .card-box,
  .cid-vdjaSkKAfq .img-wrapper {
    width: 100%;
  }
  .cid-vdjaSkKAfq .img-wrapper {
    padding: 0rem 1rem;
  }
  .cid-vdjaSkKAfq * {
    text-align: center;
  }
}
@media (max-width: 992px) {
  .cid-vdjaSkKAfq .card {
    margin-bottom: 2rem;
  }
}
.cid-vdjaSkKAfq .mbr-fallback-image.disabled {
  display: none;
}
.cid-vdjaSkKAfq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vdeJpVYp9u {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #efefec;
}
.cid-vdeJpVYp9u .mbr-fallback-image.disabled {
  display: none;
}
.cid-vdeJpVYp9u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vdeJpVYp9u .col-title {
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .cid-vdeJpVYp9u .col-title {
    margin-bottom: 50px;
  }
}
.cid-vdeJpVYp9u .mbr-section-title {
  color: #2B2B2B;
}
.cid-vdeJpVYp9u .mbr-section-main-subtitle {
  color: #5F6AD4;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .cid-vdeJpVYp9u .mbr-section-main-subtitle {
    margin-top: 16px;
  }
}
.cid-vdeJpVYp9u .content-row {
  flex-direction: row-reverse;
}
.cid-vdeJpVYp9u .col-text {
  display: flex;
  flex-wrap: wrap;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (min-width: 640px) and (max-width: 991px) {
  .cid-vdeJpVYp9u .col-text {
    flex-wrap: nowrap;
    justify-content: space-between;
  }
}
@media (max-width: 991px) {
  .cid-vdeJpVYp9u .col-text {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.cid-vdeJpVYp9u .text-container1 {
  width: 100%;
  padding: 0;
}
@media (min-width: 640px) and (max-width: 991px) {
  .cid-vdeJpVYp9u .text-container1 {
    max-width: 340px;
  }
}
.cid-vdeJpVYp9u .text-container2 {
  width: 100%;
  padding: 0;
}
@media (min-width: 640px) and (max-width: 991px) {
  .cid-vdeJpVYp9u .text-container2 {
    max-width: 280px;
    padding-left: 40px;
  }
}
.cid-vdeJpVYp9u .mbr-section-btn {
  margin-top: 16px;
}
.cid-vdeJpVYp9u .mbr-section-btn .btn {
  min-width: 280px;
  min-height: 60px;
}
@media (min-width: 640px) and (max-width: 991px) {
  .cid-vdeJpVYp9u .mbr-section-btn {
    margin-top: 8px;
    width: 100%;
  }
  .cid-vdeJpVYp9u .mbr-section-btn .btn {
    width: 100%;
    min-width: max-content;
  }
}
.cid-vdeJpVYp9u .col-carousel {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (max-width: 991px) {
  .cid-vdeJpVYp9u .col-carousel {
    padding-top: 30px;
  }
}
.cid-vdeJpVYp9u .col-border .border-line {
  height: 2px;
  background-color: #dfdfd8;
}
.cid-vdeJpVYp9u .name-text {
  color: #2A2A2A;
  margin-bottom: 0;
}
.cid-vdeJpVYp9u .roominess-text {
  color: #5F6AD4;
  margin-bottom: 0;
  margin-top: 12px;
}
.cid-vdeJpVYp9u .mbr-text {
  color: #2A2A2A;
  margin-bottom: 0;
  margin-top: 12px;
}
.cid-vdeJpVYp9u .list {
  color: #2A2A2A;
  margin-top: 20px;
  width: 100%;
}
.cid-vdeJpVYp9u .list-item {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-vdeJpVYp9u .list-item:not(:first-child) {
  margin-top: 12px;
}
.cid-vdeJpVYp9u .list-text {
  flex-grow: 1;
  color: #2A2A2A;
  margin-bottom: 0;
}
.cid-vdeJpVYp9u .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}
.cid-vdeJpVYp9u .iconfont-wrapper .mbr-iconfont {
  font-size: 20px;
  color: #5f6ad4;
}
.cid-vdeJpVYp9u .price-text {
  color: #2A2A2A;
  margin-bottom: 0;
  margin-top: 20px;
}
.cid-vdeJpVYp9u .carousel {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 400px;
}
.cid-vdeJpVYp9u .carousel img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1199px) {
  .cid-vdeJpVYp9u .carousel {
    height: 385px;
  }
}
@media (max-width: 991px) {
  .cid-vdeJpVYp9u .carousel {
    height: 350px;
  }
}
@media (max-width: 575px) {
  .cid-vdeJpVYp9u .carousel {
    height: 280px;
  }
}
.cid-vdeJpVYp9u .carousel-inner {
  display: flex;
  align-items: center;
  height: 100%;
  border-radius: 16px;
}
.cid-vdeJpVYp9u .carousel-item {
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
}
.cid-vdeJpVYp9u .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-vdeJpVYp9u .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-vdeJpVYp9u .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-vdeJpVYp9u .carousel-control {
  top: 50%;
  width: 30px;
  height: 30px;
  margin-top: -15px;
  font-size: 16px;
  background-color: #dfdfd8;
  color: #2B2B2B !important;
  border-radius: 50%;
  transition: all 0.3s;
  opacity: 1 !important;
}
.cid-vdeJpVYp9u .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 16px;
}
.cid-vdeJpVYp9u .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 16px;
}
.cid-vdeJpVYp9u .carousel-control:hover {
  background-color: #646464;
  color: #FFFFFF !important;
}
.cid-vdeJpVYp9u .carousel-indicators {
  display: none !important;
}
.cid-vdeJpVYp9u .item-menu-overlay {
  opacity: 0 !important;
}
.cid-vdjaSIv20W {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-vdjaSIv20W .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-vdjaSIv20W .card:hover .card-wrapper .img-wrapper .mbr-section-btn {
  opacity: 1;
  transform: translateY(-50px);
}
.cid-vdjaSIv20W .card .card-wrapper .img-wrapper {
  overflow: hidden;
  trasnition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  margin-bottom: 1.5rem;
}
.cid-vdjaSIv20W .card .card-wrapper .img-wrapper img {
  width: 100%;
  transition: all 0.6s ease-in-out;
}
.cid-vdjaSIv20W .card .card-wrapper .img-wrapper .mbr-section-btn {
  position: absolute;
  bottom: 150px;
  transition: all 0.2s ease-in-out 0s;
  opacity: 0;
  transform: translateY(100px);
  width: 100%;
}
.cid-vdjaSIv20W .card .card-wrapper .img-wrapper .mbr-section-btn .btn.display-4 {
  padding: 7px 39px;
  letter-spacing: 0;
}
.cid-vdjaSIv20W .card .card-wrapper .card-box .card-title {
  color: #06182d;
  font-weight: 700;
  margin-bottom: 0;
}
.cid-vdjaSIv20W .card .card-wrapper .card-box .card-title.display-7 {
  line-height: 1.2;
}
.cid-vdjaSIv20W .card .card-wrapper .card-box .mbr-section-subtitle {
  color: #b1f152;
  letter-spacing: 0;
}
.cid-vdjaSIv20W .card .card-wrapper .card-box .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-vdjaSIv20W .card .card-wrapper .card-box .text-wrap .icons-wrap .icon-wrapper {
  background: #ffffff;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #c3cad2;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-vdjaSIv20W .card .card-wrapper .card-box .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #007bff;
}
.cid-vdjaSIv20W .card .card-wrapper .card-box .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #61728a;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-vdjaSIv20W .card .card-wrapper .card-box .text-wrap .icons-wrap::before {
  height: 2px;
  width: 25%;
  top: 50%;
  right: 70%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #c3cad2;
}
@media (max-width: 992px) {
  .cid-vdjaSIv20W .card .card-wrapper .card-box .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-vdjaSIv20W .card .card-wrapper .card-box .text-wrap .icons-wrap::after {
  height: 2px;
  width: 25%;
  top: 50%;
  left: 70%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #c3cad2;
}
@media (max-width: 992px) {
  .cid-vdjaSIv20W .card .card-wrapper .card-box .text-wrap .icons-wrap::after {
    display: none;
  }
}
@media (max-width: 767px) {
  .cid-vdjaSIv20W .card .text-wrap {
    opacity: 1;
    padding: 1rem;
  }
}
.cid-vdjaSIv20W .mbr-fallback-image.disabled {
  display: none;
}
.cid-vdjaSIv20W .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vdjaT8FK1O {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #333333;
}
.cid-vdjaT8FK1O .img-wrap {
  position: relative;
}
.cid-vdjaT8FK1O .img-wrap img {
  width: 100%;
}
.cid-vdjaT8FK1O .img-wrap .icon-label {
  padding: 19px;
  left: auto;
  top: 0;
  right: 0;
  bottom: auto;
  background-color: #1352ff;
  z-index: 100;
  position: absolute;
}
.cid-vdjaT8FK1O .img-wrap .icon-label .mbr-iconfont {
  color: #ffffff;
  font-size: 27px;
  line-height: 1;
}
@media (max-width: 768px) {
  .cid-vdjaT8FK1O .img-wrap .icon-label {
    left: 0;
    top: auto;
    right: auto;
    bottom: 0;
  }
}
.cid-vdjaT8FK1O .mbr-section-title {
  color: #ffffff;
}
.cid-vdjaT8FK1O .mbr-section-subtitle {
  color: #ffffff;
}
.cid-vdjaT8FK1O .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-vdjaT8FK1O .mbr-section-text {
  color: #ffffff;
}
.cid-vdjaT8FK1O .form-control,
.cid-vdjaT8FK1O .form-check-label {
  font-size: 16px;
  font-weight: 300;
  line-height: 1;
}
.cid-vdjaT8FK1O .form-control {
  box-shadow: none;
  padding: 0.7em 1.07em 0em 0.8em;
  background-color: #333333;
  border: 0px solid #b8b8b8;
  border-bottom: 1px solid #b8b8b8;
  color: #b8b8b8;
  line-height: 1.43;
  min-height: 3.5em;
  border-radius: 0.25rem;
}
.cid-vdjaT8FK1O .form-control:focus,
.cid-vdjaT8FK1O .form-control:hover {
  border: 0px solid #b8b8b8;
  border-bottom: 1px solid #b8b8b8;
  background-color: #333333;
}
.cid-vdjaT8FK1O .form-control.textarea {
  padding-top: 40px;
}
.cid-vdjaT8FK1O .form-group {
  margin-bottom: 1.5rem;
}
.cid-vdjaT8FK1O input::-webkit-input-placeholder,
.cid-vdjaT8FK1O textarea::-webkit-input-placeholder {
  color: #b8b8b8;
}
.cid-vdjaT8FK1O input:-moz-placeholder,
.cid-vdjaT8FK1O textarea:-moz-placeholder {
  color: #b8b8b8;
}
.cid-vdjaT8FK1O .jq-selectbox li,
.cid-vdjaT8FK1O .jq-selectbox li {
  background-color: #333333;
  color: #ffffff;
}
.cid-vdjaT8FK1O .jq-selectbox li:hover,
.cid-vdjaT8FK1O .jq-selectbox li.selected {
  background-color: #333333;
  color: #ffffff;
}
.cid-vdjaT8FK1O .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #333333;
}
.cid-vdjaT8FK1O .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #333333;
}
.cid-vdjaT8FK1O .text-blocks .mbr-text {
  color: #ffffff;
}
.cid-vdjaT8FK1O a:not([href]):not([tabindex]) {
  color: #fff;
}
.cid-vdjaT8FK1O .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-vdjaT8FK1O .input-group-btn {
  display: block;
  text-align: left;
}
.cid-vdjaT8FK1O .input-group-btn .btn-sm {
  padding: 7px 39px;
}
.cid-vdjaT8FK1O textarea.form-control {
  resize: none;
}
@media (max-width: 767px) {
  .cid-vdjaT8FK1O h2 {
    padding-top: 2rem;
  }
  .cid-vdjaT8FK1O .input-group-btn {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .cid-vdjaT8FK1O .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-vdjaT8FK1O .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}
.cid-vdjaT8FK1O .gdpr-block {
  padding: 20px;
  text-align: left;
}
.cid-vdjaT8FK1O .gdpr-block span {
  line-height: 1;
}
.cid-vdjaT8FK1O .gdpr-block label span.textGDPR input[name="gdpr"] {
  top: 6px;
}
.cid-vdjaT8FK1O .mbr-fallback-image.disabled {
  display: none;
}
.cid-vdjaT8FK1O .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vdjaUyGGBx {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-vdjaUyGGBx .img-wrap {
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  background-position: 50% 50%;
  z-index: 2;
  background-image: url("../../../assets/images/03-1.jpg");
}
.cid-vdjaUyGGBx .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-vdjaUyGGBx .card .wrapper .mbr-section-title {
  color: #06182d;
}
.cid-vdjaUyGGBx .card .wrapper .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-vdjaUyGGBx .card .wrapper .mbr-section-subtitle {
  color: #06182d;
}
.cid-vdjaUyGGBx .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-vdjaUyGGBx .card .wrapper .mbr-text {
  color: #b1f152;
  font-weight: 300;
}
.cid-vdjaUyGGBx .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #606060;
}
.cid-vdjaUyGGBx .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-vdjaUyGGBx .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-vdjaUyGGBx .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff4e3c;
  display: inline-block;
  content: "\e97c";
  font-family: "Moririse2" !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-vdjaUyGGBx .card .wrapper .link-wrap {
  width: 100%;
}
.cid-vdjaUyGGBx .card .wrapper .link-wrap .link {
  position: relative;
  cursor: pointer;
  letter-spacing: 1px;
  display: inline-block;
  width: fit-content;
  transition: all 0.3s;
  transition-delay: 0.15s;
  text-align: left;
}
.cid-vdjaUyGGBx .card .wrapper .link-wrap .link:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background: currentColor;
  bottom: -6px;
  opacity: 0.2;
  left: 0;
}
.cid-vdjaUyGGBx .card .wrapper .link-wrap .link:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: -6px;
  left: auto;
  right: 0;
}
.cid-vdjaUyGGBx .card .wrapper .link-wrap .link:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}
.cid-vdjaUyGGBx .mbr-fallback-image.disabled {
  display: none;
}
.cid-vdjaUyGGBx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vdjaVdmL9h {
  padding-top: 105px;
  padding-bottom: 105px;
  background-color: #000000;
}
.cid-vdjaVdmL9h .text-wrap {
  margin-top: 32px;
}
.cid-vdjaVdmL9h .content-right-wrapper {
  background-color: #333333;
  padding: 32px;
}
.cid-vdjaVdmL9h .content-right-wrapper .mbr-list {
  color: #ffffff;
}
.cid-vdjaVdmL9h .content-right-wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
@media (max-width: 767px) {
  .cid-vdjaVdmL9h .content-right-wrapper .mbr-list .list {
    text-align: left;
  }
}
.cid-vdjaVdmL9h .content-right-wrapper .mbr-list .list li {
  line-height: 1.8;
}
.cid-vdjaVdmL9h .content-right-wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ffffff;
  display: inline-block;
  font-size: 9px;
  content: "\e97c";
  font-family: "Moririse2" !important;
  text-align: center;
  line-height: 1em;
  transition: all 0.3s;
  margin-right: 10px;
  border-radius: 50%;
  padding: 5px;
  background-color: #1352ff;
}
.cid-vdjaVdmL9h .mbr-fallback-image.disabled {
  display: none;
}
.cid-vdjaVdmL9h .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vdjaTwzseJ {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-vdjaTwzseJ .google-map {
  height: 100%;
  min-height: 25rem;
  position: relative;
  width: 100%;
}
.cid-vdjaTwzseJ .google-map iframe {
  min-height: 100%;
  width: 100%;
}
.cid-vdjaTwzseJ .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-vdjaTwzseJ .google-map[data-state] {
  background: #e9e5dc;
}
.cid-vdjaTwzseJ .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-vdjaTwzseJ .map-placeholder {
  display: none;
}
.cid-vdjaTwzseJ .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-vdjaTwzseJ .card {
  padding: 3rem 8rem;
}
.cid-vdjaTwzseJ .card .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-vdjaTwzseJ .card .mbr-text {
  color: #06182d;
}
.cid-vdjaTwzseJ .card .mbr-text.display-7 {
  letter-spacing: 0;
}
.cid-vdjaTwzseJ .card .items .list-item {
  vertical-align: middle;
  padding-top: 5px;
  padding-bottom: 5px;
  align-items: center;
  -webkit-align-items: center;
}
.cid-vdjaTwzseJ .card .items .list-item .listico {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.4rem;
}
.cid-vdjaTwzseJ .card .items .list-item .text2 {
  display: inline-block;
  color: #000000;
  text-align: left;
}
.cid-vdjaTwzseJ .card .mbr-section-btn .btn {
  margin: 0 !important;
  padding: 7px 39px;
}
.cid-vdjaTwzseJ .card .mbr-section-btn .btn.display-4 {
  letter-spacing: 0;
}
.cid-vdjaTwzseJ .card .mbr-section-btn .btn-success {
  color: #030f1c;
}
.cid-vdjaTwzseJ .card .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.cid-vdjaTwzseJ .card .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-vdjaTwzseJ .card .social-list .soc-item a {
  margin: 0;
  transition: 0.2s linear;
}
.cid-vdjaTwzseJ .card .social-list .soc-item a .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vdjaTwzseJ .card .social-list .soc-item a:hover {
  opacity: 0.4;
}
.cid-vdjaTwzseJ .card .form-group {
  padding-right: 0;
}
.cid-vdjaTwzseJ .card .form-group .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-vdjaTwzseJ .card .btn-primary {
  border: 1px solid #bcbcbc !important;
}
.cid-vdjaTwzseJ .card .btn-primary:hover {
  border: 1px solid #bcbcbc !important;
}
@media (max-width: 1200px) {
  .cid-vdjaTwzseJ .card {
    padding: 3rem;
  }
}
@media (max-width: 991px) {
  .cid-vdjaTwzseJ .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-vdjaTwzseJ h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) {
  .cid-vdjaTwzseJ * {
    text-align: center !important;
  }
  .cid-vdjaTwzseJ .card .social-list {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .cid-vdjaTwzseJ .form-group {
    max-width: 180px;
  }
  .cid-vdjaTwzseJ .card {
    padding: 2rem 1rem;
  }
}
.cid-vdjaTwzseJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-vdjaTwzseJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vdeJqvuvHs {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-vdeJqvuvHs .mbr-section-title {
  letter-spacing: 0.1em;
  color: #444444;
  margin-bottom: 2rem;
}
.cid-vdeJqvuvHs .mbr-section-subtitle {
  color: #444444;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-vdeJqvuvHs .list-img {
  width: 100px;
}
.cid-vdeJqvuvHs .ico2 {
  color: #656565;
  font-size: 1.2rem;
}
.cid-vdeJqvuvHs .btn {
  margin: 0px !important;
}
.cid-vdeJqvuvHs .text-box {
  padding: 1rem;
}
.cid-vdeJqvuvHs .text-box p {
  margin: 0;
}
.cid-vdeJqvuvHs .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 0px;
}
.cid-vdeJqvuvHs .ico-box p {
  margin: 0;
}
.cid-vdeJqvuvHs .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vdeJqvuvHs .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vdeJqvuvHs .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-vdeJqvuvHs .carousel-item .wrap-img {
  text-align: center;
}
.cid-vdeJqvuvHs .carousel-item .wrap-img img {
  width: auto;
  max-width: 100%;
}
.cid-vdeJqvuvHs .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-vdeJqvuvHs .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 1rem;
  margin-right: 0;
  margin-left: 0;
  text-align: center;
}
.cid-vdeJqvuvHs .carousel-indicators li {
  display: inline-block;
}
.cid-vdeJqvuvHs .carousel-indicators li {
  max-width: 15%;
  max-height: 120px;
  width: 15%;
  height: 120px;
  border-radius: 0;
  opacity: 1;
  background-size: cover;
  border: none;
}
.cid-vdeJqvuvHs .carousel-indicators li.active {
  border: 0px;
}
.cid-vdeJqvuvHs .li1 {
  background-image: url("../../../assets/images/01.jpg");
}
.cid-vdeJqvuvHs .li2 {
  background-image: url("../../../assets/images/02.jpg");
}
.cid-vdeJqvuvHs .li3 {
  background-image: url("../../../assets/images/03.jpg");
}
.cid-vdeJqvuvHs .li4 {
  background-image: url("../../../assets/images/01.jpg");
}
.cid-vdeJqvuvHs .li5 {
  background-image: url("../../../assets/images/02.jpg");
}
.cid-vdeJqvuvHs .li6 {
  background-image: url("../../../assets/images/03.jpg");
}
@media (max-width: 992px) {
  .cid-vdeJqvuvHs .carousel-indicators li {
    max-width: 30%;
    max-height: 120px;
    width: 30%;
    height: 120px;
  }
}
@media (max-width: 576px) {
  .cid-vdeJqvuvHs .carousel-indicators li {
    max-width: 30%;
    max-height: 80px;
    width: 30%;
    height: 80px;
  }
}
.cid-vdeJqvuvHs .card-title2 {
  color: #274abb;
}
.cid-vdeJqvuvHs .sq {
  color: #656565;
}
.cid-vdeJqvuvHs .item {
  color: #656565;
}
.cid-vdeJqvuvHs .mbr-fallback-image.disabled {
  display: none;
}
.cid-vdeJqvuvHs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vdeJmJS3Qt {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-vdeJmJS3Qt section {
  position: relative;
}
.cid-vdeJmJS3Qt h4 {
  margin: 0;
}
.cid-vdeJmJS3Qt img {
  height: 100px;
  padding-rigth: 8px;
}
.cid-vdeJmJS3Qt a {
  font-weight: 300;
}
.cid-vdeJmJS3Qt .img1 {
  color: #86de2d;
}
.cid-vdeJmJS3Qt .img2 {
  color: #86de2d;
}
.cid-vdeJmJS3Qt .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #86de2d;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-vdeJmJS3Qt .media-wrap {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-vdeJmJS3Qt .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-vdeJmJS3Qt .item,
.cid-vdeJmJS3Qt .link {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-vdeJmJS3Qt .item h4,
.cid-vdeJmJS3Qt .link h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-vdeJmJS3Qt .link {
  border-bottom: 1px solid #4a535e;
}
@media (max-width: 767px) {
  .cid-vdeJmJS3Qt .item {
    justify-content: center;
  }
}
.cid-vdeJmJS3Qt .item-title {
  color: #ffffff;
  text-align: left;
}
.cid-vdeJmJS3Qt .text1 {
  text-align: left;
}
.cid-vdeJmJS3Qt .link-title {
  text-align: left;
}
.cid-vdeJmKjT8y {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-vdeJmKjT8y .mbr-text {
  color: #f6f6ef;
}
.cid-vehgfd0th4 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 110px;
}
.cid-vehgfd0th4 nav.navbar {
  position: fixed;
}
.cid-vehgfd0th4 .container-fluid {
  padding-left: 64px;
  padding-right: 64px;
}
@media (max-width: 992px) {
  .cid-vehgfd0th4 .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-vehgfd0th4 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vehgfd0th4 .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-vehgfd0th4 .dropdown-item {
  border: none !important;
  background: #000000 !important;
}
.cid-vehgfd0th4 .dropdown-item:hover,
.cid-vehgfd0th4 .dropdown-item:focus {
  background: #ffffff !important;
  color: #121212 !important;
}
.cid-vehgfd0th4 .dropdown-item:hover span {
  color: white;
}
.cid-vehgfd0th4 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vehgfd0th4 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vehgfd0th4 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vehgfd0th4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vehgfd0th4 .nav-link {
  position: relative;
}
.cid-vehgfd0th4 .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-vehgfd0th4 .container {
    flex-wrap: nowrap;
  }
}
.cid-vehgfd0th4 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-vehgfd0th4 .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-vehgfd0th4 .dropdown-menu,
.cid-vehgfd0th4 .navbar.opened {
  background: #000000 !important;
}
.cid-vehgfd0th4 .nav-item:focus,
.cid-vehgfd0th4 .nav-link:focus {
  outline: none;
}
.cid-vehgfd0th4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vehgfd0th4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-vehgfd0th4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vehgfd0th4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vehgfd0th4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vehgfd0th4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vehgfd0th4 .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-vehgfd0th4 .navbar.opened {
  transition: all 0.3s;
}
.cid-vehgfd0th4 .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 22px;
  line-height: 1.5;
  border-radius: 3rem;
  margin-left: 4px;
  margin-bottom: 4px;
}
.cid-vehgfd0th4 .navbar .navbar-logo img {
  width: auto;
  border-radius: 6px !important;
}
.cid-vehgfd0th4 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vehgfd0th4 .navbar.collapsed {
  justify-content: center;
}
.cid-vehgfd0th4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vehgfd0th4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vehgfd0th4 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-vehgfd0th4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vehgfd0th4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vehgfd0th4 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vehgfd0th4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vehgfd0th4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vehgfd0th4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vehgfd0th4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vehgfd0th4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vehgfd0th4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vehgfd0th4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vehgfd0th4 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vehgfd0th4 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vehgfd0th4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vehgfd0th4 .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .cid-vehgfd0th4 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-vehgfd0th4 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vehgfd0th4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vehgfd0th4 .navbar.navbar-short {
  min-height: 96px;
}
.cid-vehgfd0th4 .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-vehgfd0th4 .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-vehgfd0th4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-vehgfd0th4 .navbar-brand .navbar-caption:hover,
.cid-vehgfd0th4 .navbar-brand .navbar-caption:focus {
  color: #ffffff !important;
}
.cid-vehgfd0th4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vehgfd0th4 .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-vehgfd0th4 .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #121212 !important;
}
.cid-vehgfd0th4 .dropdown-item.active,
.cid-vehgfd0th4 .dropdown-item:active {
  background-color: transparent;
}
.cid-vehgfd0th4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vehgfd0th4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vehgfd0th4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vehgfd0th4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-vehgfd0th4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-vehgfd0th4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-vehgfd0th4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vehgfd0th4 ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-vehgfd0th4 ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-vehgfd0th4 .navbar-buttons {
  text-align: center;
  width: auto;
}
.cid-vehgfd0th4 .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  min-height: auto;
  width: auto;
}
.cid-vehgfd0th4 .navbar-buttons .btn .mbr-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .cid-vehgfd0th4 .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-vehgfd0th4 button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #000000 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-vehgfd0th4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vehgfd0th4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-vehgfd0th4 button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-vehgfd0th4 button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-vehgfd0th4 button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-vehgfd0th4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vehgfd0th4 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vehgfd0th4 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vehgfd0th4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vehgfd0th4 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vehgfd0th4 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vehgfd0th4 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vehgfd0th4 .navbar {
    height: 70px;
  }
  .cid-vehgfd0th4 .navbar.opened {
    height: auto;
  }
  .cid-vehgfd0th4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vehgfd0th4 .navbar-nav {
  margin: 0 auto;
  justify-content: flex-end;
  margin: 0;
}
.cid-vehgfd0th4 .nav-item {
  padding: 0;
  margin: 0;
}
.cid-vehgfd0th4 .nav-item .nav-link {
  padding: 8px 22px !important;
  margin: 0 8px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border-radius: 3rem;
}
.cid-vehgfd0th4 .nav-item .nav-link::after {
  color: #ffffff !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-vehgfd0th4 .nav-item .nav-link:hover {
  background-color: #ffffff;
  color: #121212 !important;
}
.cid-vehgfd0th4 .nav-item .nav-link:hover::after {
  color: #121212 !important;
}
.cid-vehgfd0th4 .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-vehgfd0th4 .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-vehgfd0th4 .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-vehgfd0th4 .navbar {
    justify-content: flex-start !important;
  }
  .cid-vehgfd0th4 .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-vehgfd0th4 .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-vehgfd0th4 .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-vehgfd0th4 .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-vehgfd0th4 .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .cid-vehgfd0th4 .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-vehgfd0th4 .content-wrap {
  min-height: 110px;
}
.cid-vehgfd0th4 .mbr-section-btn .btn::after,
.cid-vehgfd0th4 .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
}
.cid-vehgfd0th4 .mbr-section-btn .btn:hover,
.cid-vehgfd0th4 .mbr-section-btn .btn:focus {
  color: #ffffff !important;
}
.cid-vehgfd0th4 .mbr-section-btn .btn:hover::after,
.cid-vehgfd0th4 .mbr-section-btn .btn:focus::after {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
  opacity: 1;
}
.cid-vf1v62kSoi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background1-7.jpg");
}
.cid-vf1v62kSoi .mbr-fallback-image.disabled {
  display: none;
}
.cid-vf1v62kSoi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vf1v62kSoi .mbr-section-head {
  margin-bottom: 50px;
}
@media (max-width: 1399px) {
  .cid-vf1v62kSoi .mbr-section-head {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .cid-vf1v62kSoi .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-vf1v62kSoi .mbr-section-title {
  color: #e3ebf3;
}
.cid-vf1v62kSoi .mbr-section-subtitle {
  margin-top: 16px;
  color: #6c7a88;
}
@media (max-width: 767px) {
  .cid-vf1v62kSoi .mbr-section-subtitle {
    margin-top: 12px;
  }
}
.cid-vf1v62kSoi .row {
  gap: 20px;
}
@media (max-width: 767px) {
  .cid-vf1v62kSoi .row {
    gap: 12px;
  }
}
.cid-vf1v62kSoi .card {
  border-radius: 20px;
  border: 1px solid #2e3237;
}
@media (max-width: 767px) {
  .cid-vf1v62kSoi .card {
    border-radius: 12px;
  }
}
.cid-vf1v62kSoi .card-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 32px;
}
@media (max-width: 1399px) {
  .cid-vf1v62kSoi .card-wrap {
    gap: 20px;
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .cid-vf1v62kSoi .card-wrap {
    gap: 12px;
    padding: 12px;
  }
}
.cid-vf1v62kSoi .card-title {
  color: #e3ebf3;
  margin-right: auto;
}
.cid-vf1v62kSoi .right-wrap {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 32px;
}
@media (max-width: 1399px) {
  .cid-vf1v62kSoi .right-wrap {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .cid-vf1v62kSoi .right-wrap {
    gap: 12px;
  }
}
.cid-vf1v62kSoi .card-subtitle {
  color: #e3ebf3;
  word-break: normal;
}
.cid-vf1v62kSoi .iconfont-wrapper .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  aspect-ratio: 1;
  padding: 10px;
  background: radial-gradient(50% 895.56% at 47.69% 50%, #db6f1c 0, #d04b08 100%);
  border: 1px solid #fa7e26;
  box-shadow: 0 6px 30px rgba(227, 118, 41, 0.35);
  border-radius: 6px;
  font-size: 1.5rem;
  color: #e3ebf3;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cid-vf1v62kSoi .iconfont-wrapper .mbr-iconfont {
    min-width: 36px;
    padding: 5px;
    font-size: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-vf1v62kSoi .iconfont-wrapper .mbr-iconfont:hover {
    box-shadow: 0 6px 40px #e37629;
  }
}
.cid-vf1vQG6Hc1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1b1b1b;
}
.cid-vf1vQG6Hc1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vf1vQG6Hc1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vf1vQG6Hc1 .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-vf1vQG6Hc1 .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-vf1vQG6Hc1 .container {
    padding: 0 20px;
  }
}
.cid-vf1vQG6Hc1 .row {
  justify-content: center;
}
.cid-vf1vQG6Hc1 .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-vf1vQG6Hc1 .item {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-vf1vQG6Hc1 .item {
    margin-bottom: 50px;
  }
}
.cid-vf1vQG6Hc1 .item .item-wrapper a {
  display: block;
}
.cid-vf1vQG6Hc1 .item .item-wrapper a .item-img {
  margin-bottom: 24px;
  position: relative;
}
.cid-vf1vQG6Hc1 .item .item-wrapper a .item-img img {
  height: 340px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vf1vQG6Hc1 .item .item-wrapper a .item-img img {
    height: 300px;
  }
}
.cid-vf1vQG6Hc1 .item .item-wrapper a .item-img .mbr-iconfont {
  position: absolute;
  right: 16px;
  bottom: 16px;
  font-size: 16px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  color: #1b1b1b;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}
.cid-vf1vQG6Hc1 .item .item-wrapper a .item-img .mbr-iconfont:hover {
  background-color: #555354;
}
.cid-vf1vQG6Hc1 .item .item-wrapper a .item-content .mbr-card-title {
  margin-bottom: 0;
}
.cid-vf1vQG6Hc1 .item .item-wrapper a .item-content .mbr-date {
  margin-bottom: 16px;
}
.cid-vf1vQG6Hc1 .mbr-section-title {
  color: #c2b299;
}
.cid-vf1vQG6Hc1 .mbr-card-title {
  color: #c2b299;
  text-align: center;
}
.cid-vf1vQG6Hc1 .mbr-date {
  color: #e4dfd4;
  text-align: center;
}
.cid-vf1vBkxv1J {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #dedede;
}
.cid-vf1vBkxv1J .mbr-fallback-image.disabled {
  display: none;
}
.cid-vf1vBkxv1J .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vf1vBkxv1J .container-fluid {
  padding: 0;
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
}
@media (max-width: 992px) {
  .cid-vf1vBkxv1J .container-fluid {
    padding: 0;
  }
}
.cid-vf1vBkxv1J .container {
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
}
@media (max-width: 992px) {
  .cid-vf1vBkxv1J .container {
    padding: 0 28px;
  }
}
.cid-vf1vBkxv1J .row {
  margin: -1px 0 0 0;
  justify-content: center;
}
.cid-vf1vBkxv1J .item {
  padding: 40px;
  border-right: 1px solid #707070;
  transition: all 0.3s ease-in-out;
}
.cid-vf1vBkxv1J .item:nth-child(3n) {
  border-right: none;
}
@media (max-width: 992px) {
  .cid-vf1vBkxv1J .item {
    padding: 28px;
    border-right: none;
    border-bottom: 1px solid #707070;
  }
  .cid-vf1vBkxv1J .item:last-child {
    border-bottom: none;
  }
}
.cid-vf1vBkxv1J .item:hover,
.cid-vf1vBkxv1J .item:focus {
  background-color: #18c28a;
}
.cid-vf1vBkxv1J .item:hover .item-wrapper .item-img .mbr-iconfont,
.cid-vf1vBkxv1J .item:focus .item-wrapper .item-img .mbr-iconfont {
  opacity: 1;
}
.cid-vf1vBkxv1J .item .item-wrapper {
  display: block;
}
.cid-vf1vBkxv1J .item .item-wrapper .item-img {
  margin-bottom: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vf1vBkxv1J .item .item-wrapper .item-img img {
  height: 415px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vf1vBkxv1J .item .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-vf1vBkxv1J .item .item-wrapper .item-img .mbr-iconfont {
  position: absolute;
  height: 200px;
  width: 200px;
  background-color: #f2d122;
  font-size: 80px;
  color: #000000;
  border: 5px solid #000000;
  border-radius: 100%;
  transform: rotate(15deg);
  transition: all 0.3s ease-in-out;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vf1vBkxv1J .item .item-wrapper .item-content .item-title {
  margin-bottom: 20px;
}
.cid-vf1vBkxv1J .item .item-wrapper .item-content .mbr-text {
  margin-bottom: 0;
}
.cid-vf1vBkxv1J .item .item-wrapper .item-content .social-wrapper {
  margin-top: 34px;
}
.cid-vf1vBkxv1J .item .item-wrapper .item-content .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-vf1vBkxv1J .item .item-wrapper .item-content .social-wrapper .social-wrap .social-item {
  display: inline-flex;
  margin-right: 15px;
}
.cid-vf1vBkxv1J .item .item-wrapper .item-content .social-wrapper .social-wrap .social-item:hover .mbr-soc::after,
.cid-vf1vBkxv1J .item .item-wrapper .item-content .social-wrapper .social-wrap .social-item:focus .mbr-soc::after {
  width: 100%;
}
.cid-vf1vBkxv1J .item .item-wrapper .item-content .social-wrapper .social-wrap .social-item .mbr-soc {
  margin-bottom: 0;
  position: relative;
}
.cid-vf1vBkxv1J .item .item-wrapper .item-content .social-wrapper .social-wrap .social-item .mbr-soc::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 5px;
  transition: all 0.3s ease-in-out;
  background-color: #000000;
}
.cid-vf1vBkxv1J .item-title {
  color: #000000;
}
.cid-vf1vBkxv1J .mbr-text {
  color: #000000;
}
.cid-vf1vBkxv1J .mbr-soc {
  color: #000000;
}
.cid-vehgfdwDkR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-vehgfdwDkR .mbr-fallback-image.disabled {
  display: none;
}
.cid-vehgfdwDkR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vehgfdwDkR .container-fluid {
  padding: 0 120px;
}
@media (max-width: 768px) {
  .cid-vehgfdwDkR .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-vehgfdwDkR .container {
    padding: 0 26px;
  }
}
.cid-vehgfdwDkR .row {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-vehgfdwDkR .row {
    margin: 0 -12px;
  }
}
.cid-vehgfdwDkR .card {
  position: relative;
  padding: 0 50px 0 0;
  justify-content: center;
  border-radius: 0;
}
.cid-vehgfdwDkR .card:first-child {
  border-right: 1px solid #ffffff;
}
@media (max-width: 992px) {
  .cid-vehgfdwDkR .card:first-child {
    border: none;
  }
}
.cid-vehgfdwDkR .card:first-child::before {
  content: '';
  position: absolute;
  right: -8px;
  width: 15px;
  height: 15px;
  background-color: #ffffff;
  border-radius: 50%;
}
@media (max-width: 992px) {
  .cid-vehgfdwDkR .card:first-child::before {
    display: none;
  }
}
.cid-vehgfdwDkR .card:last-child {
  padding: 0 0 0 50px;
}
@media (max-width: 992px) {
  .cid-vehgfdwDkR .card:last-child {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-vehgfdwDkR .card {
    padding: 0 12px;
  }
}
.cid-vehgfdwDkR .image-wrapper {
  padding: 40px 0;
}
@media (max-width: 992px) {
  .cid-vehgfdwDkR .image-wrapper {
    padding: 0 0 40px 0;
  }
}
.cid-vehgfdwDkR .image-wrapper img {
  height: 420px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vehgfdwDkR .image-wrapper img {
    height: 300px;
  }
}
.cid-vehgfdwDkR .title-wrapper .title-wrap {
  padding: 40px;
}
@media (max-width: 992px) {
  .cid-vehgfdwDkR .title-wrapper .title-wrap {
    padding: 0;
  }
}
.cid-vehgfdwDkR .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 18px;
}
.cid-vehgfdwDkR .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-vehgfdwDkR .mbr-section-title {
  color: #ffffff;
}
.cid-vehgfdwDkR .mbr-text {
  color: #cacaca;
}
.cid-vf1rUtS5df {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vf1rUtS5df .mbr-fallback-image.disabled {
  display: none;
}
.cid-vf1rUtS5df .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vf1rUtS5df .title-wrapper {
  margin-bottom: 50px;
}
.cid-vf1rUtS5df .title-wrapper .label-wrapper {
  margin-bottom: 25px;
}
.cid-vf1rUtS5df .title-wrapper .label-wrapper .label-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cid-vf1rUtS5df .title-wrapper .label-wrapper .label-wrap .icon-wrapper .mbr-iconfont {
  font-size: 22px;
  display: inline-flex;
}
.cid-vf1rUtS5df .title-wrapper .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-vf1rUtS5df .title-wrapper .title-wrap .mbr-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .cid-vf1rUtS5df .title-wrapper .title-wrap .mbr-section-title {
    width: 70%;
  }
}
@media (max-width: 992px) {
  .cid-vf1rUtS5df .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 20px;
    width: 100%;
  }
}
.cid-vf1rUtS5df .items-wrapper {
  margin: 0 -10px;
}
.cid-vf1rUtS5df .items-wrapper .item {
  padding: 0 10px;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-vf1rUtS5df .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-vf1rUtS5df .items-wrapper .item:hover .item-wrapper,
.cid-vf1rUtS5df .items-wrapper .item:focus .item-wrapper {
  transform: translateY(-8px);
}
@media (max-width: 992px) {
  .cid-vf1rUtS5df .items-wrapper .item:hover .item-wrapper,
  .cid-vf1rUtS5df .items-wrapper .item:focus .item-wrapper {
    transform: none;
  }
}
.cid-vf1rUtS5df .items-wrapper .item:hover .item-wrapper .link-wrapper .mbr-iconfont,
.cid-vf1rUtS5df .items-wrapper .item:focus .item-wrapper .link-wrapper .mbr-iconfont {
  background-color: #caf31d;
  color: #000000;
}
.cid-vf1rUtS5df .items-wrapper .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  border: 2px solid #e8e8e8;
  padding: 30px;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-vf1rUtS5df .items-wrapper .item .item-wrapper {
    padding: 20px;
  }
}
.cid-vf1rUtS5df .items-wrapper .item .item-wrapper .card-box .iconfont-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vf1rUtS5df .items-wrapper .item .item-wrapper .card-box .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-vf1rUtS5df .items-wrapper .item .item-wrapper .card-box .iconfont-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 60px;
}
.cid-vf1rUtS5df .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 10px;
}
.cid-vf1rUtS5df .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-vf1rUtS5df .items-wrapper .item .item-wrapper .card-box .item-btn {
  margin-top: 10px;
  margin-bottom: -9.6px;
}
.cid-vf1rUtS5df .items-wrapper .item .item-wrapper .link-wrapper {
  margin-top: 40px;
}
@media (max-width: 992px) {
  .cid-vf1rUtS5df .items-wrapper .item .item-wrapper .link-wrapper {
    margin-top: 25px;
  }
}
.cid-vf1rUtS5df .items-wrapper .item .item-wrapper .link-wrapper .mbr-iconfont {
  border-radius: 100%;
  background-color: #f8f8f8;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all .3s ease;
  z-index: 1;
}
.cid-vf1rUtS5df .items-wrapper .item .item-wrapper .link-wrapper .mbr-iconfont:hover,
.cid-vf1rUtS5df .items-wrapper .item .item-wrapper .link-wrapper .mbr-iconfont:focus {
  background-color: #caf31d;
  color: #000000;
}
.cid-vf1rUtS5df .items-wrapper .item .item-wrapper .link-wrapper a {
  width: 58px;
  height: 58px;
}
.cid-vf1rUtS5df .mbr-label,
.cid-vf1rUtS5df .label-wrapper {
  color: #000000;
  text-align: center;
}
.cid-vf1rUtS5df .mbr-section-title,
.cid-vf1rUtS5df .title-wrap {
  color: #000000;
  text-align: center;
}
.cid-vf1rUtS5df .item-title {
  color: #000000;
}
.cid-vf1rUtS5df .item-text {
  color: #000000;
}
.cid-vf1rTseeHF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #caf31d;
}
.cid-vf1rTseeHF .mbr-fallback-image.disabled {
  display: none;
}
.cid-vf1rTseeHF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-vf1rTseeHF .title-wrapper {
    margin-bottom: 50px;
  }
}
.cid-vf1rTseeHF .title-wrapper .label-wrapper {
  margin-bottom: 25px;
}
.cid-vf1rTseeHF .title-wrapper .label-wrapper .label-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cid-vf1rTseeHF .title-wrapper .label-wrapper .label-wrap .icon-wrapper .mbr-iconfont {
  font-size: 22px;
  display: inline-flex;
}
.cid-vf1rTseeHF .title-wrapper .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-vf1rTseeHF .title-wrapper .title-wrap .mbr-section-title {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vf1rTseeHF .title-wrapper .title-wrap .mbr-section-title {
    width: 100%;
  }
}
.cid-vf1rTseeHF .title-wrapper .main-btn {
  margin-top: 15px;
  margin-bottom: -9.6px;
}
.cid-vf1rTseeHF .items-wrapper .item {
  margin-bottom: 50px;
}
.cid-vf1rTseeHF .items-wrapper .item:last-child {
  margin-bottom: 0;
}
.cid-vf1rTseeHF .items-wrapper .item .item-wrapper {
  display: flex;
  gap: 25px;
}
@media (max-width: 992px) {
  .cid-vf1rTseeHF .items-wrapper .item .item-wrapper {
    display: block;
  }
}
.cid-vf1rTseeHF .items-wrapper .item .item-wrapper .iconfont-wrapper {
  width: 60px;
}
@media (max-width: 992px) {
  .cid-vf1rTseeHF .items-wrapper .item .item-wrapper .iconfont-wrapper {
    width: 100%;
    margin-bottom: 15px;
  }
}
.cid-vf1rTseeHF .items-wrapper .item .item-wrapper .iconfont-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 60px;
}
.cid-vf1rTseeHF .items-wrapper .item .item-wrapper .card-box {
  width: 100%;
}
.cid-vf1rTseeHF .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 10px;
}
.cid-vf1rTseeHF .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-vf1rTseeHF .items-wrapper .item .item-wrapper .card-box .item-btn {
  margin-top: 10px;
  margin-bottom: -9.6px;
}
.cid-vf1rTseeHF .mbr-label {
  color: #000000;
}
.cid-vf1rTseeHF .mbr-section-title {
  color: #000000;
}
.cid-vf1rTseeHF .item-title {
  color: #000000;
}
.cid-vf1rTseeHF .item-text {
  color: #000000;
}
.cid-vf1rV7ubGa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-vf1rV7ubGa .item:focus,
.cid-vf1rV7ubGa span:focus {
  outline: none;
}
.cid-vf1rV7ubGa .container-fluid {
  padding-left: 0;
  padding-right: 0;
  overflow: visible;
}
.cid-vf1rV7ubGa .item {
  padding: 30px 0;
}
.cid-vf1rV7ubGa .content-wrap_1 {
  transform: rotate(2deg);
  background-color: #f8f8f8;
  will-change: transform;
}
.cid-vf1rV7ubGa .content-wrap_2 {
  transform: rotate(-2deg);
  background-color: #000000;
  will-change: transform;
}
.cid-vf1rV7ubGa .container_1 {
  background-color: #f8f8f8;
}
.cid-vf1rV7ubGa .container_1 .item_1 {
  color: #000000;
  background-color: #f8f8f8;
}
.cid-vf1rV7ubGa .container_2 {
  background-color: #000000;
}
.cid-vf1rV7ubGa .container_2 .item_2 {
  color: #ffffff;
  background-color: #000000;
}
.cid-vf1rWdze7P {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vf1rWdze7P .mbr-fallback-image.disabled {
  display: none;
}
.cid-vf1rWdze7P .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vf1rWdze7P .title-wrapper {
  margin-bottom: 50px;
}
.cid-vf1rWdze7P .title-wrapper .label-wrapper {
  margin-bottom: 25px;
}
.cid-vf1rWdze7P .title-wrapper .label-wrapper .label-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cid-vf1rWdze7P .title-wrapper .label-wrapper .label-wrap .icon-wrapper .mbr-iconfont {
  font-size: 22px;
  display: inline-flex;
}
.cid-vf1rWdze7P .title-wrapper .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-vf1rWdze7P .title-wrapper .title-wrap .mbr-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .cid-vf1rWdze7P .title-wrapper .title-wrap .mbr-section-title {
    width: 70%;
  }
}
@media (max-width: 992px) {
  .cid-vf1rWdze7P .title-wrapper .title-wrap .mbr-section-title {
    width: 100%;
  }
}
.cid-vf1rWdze7P .items-wrapper .item {
  margin-bottom: 50px;
}
.cid-vf1rWdze7P .items-wrapper .item:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vf1rWdze7P .items-wrapper .item {
    margin-bottom: 20px;
  }
  .cid-vf1rWdze7P .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-vf1rWdze7P .items-wrapper .item .item-wrapper {
  display: grid;
  grid-template-columns: 1fr .7fr;
  gap: 20px;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-vf1rWdze7P .items-wrapper .item .item-wrapper {
    display: block;
  }
}
.cid-vf1rWdze7P .items-wrapper .item .item-wrapper .item-img {
  position: relative;
  height: 100%;
  min-height: 400px;
}
@media (max-width: 992px) {
  .cid-vf1rWdze7P .items-wrapper .item .item-wrapper .item-img {
    min-height: 300px;
    margin-bottom: 20px;
  }
}
.cid-vf1rWdze7P .items-wrapper .item .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-vf1rWdze7P .items-wrapper .item .item-wrapper .card-box {
  height: 100%;
  background-color: #caf31d;
  padding: 50px;
}
@media (max-width: 1440px) {
  .cid-vf1rWdze7P .items-wrapper .item .item-wrapper .card-box {
    padding: 30px;
  }
}
@media (max-width: 992px) {
  .cid-vf1rWdze7P .items-wrapper .item .item-wrapper .card-box {
    padding: 20px;
  }
}
.cid-vf1rWdze7P .items-wrapper .item .item-wrapper .card-box .iconfont-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-vf1rWdze7P .items-wrapper .item .item-wrapper .card-box .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-vf1rWdze7P .items-wrapper .item .item-wrapper .card-box .iconfont-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 60px;
}
.cid-vf1rWdze7P .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 25px;
}
.cid-vf1rWdze7P .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-vf1rWdze7P .items-wrapper .item .item-wrapper .card-box .item-btn {
  margin-top: 15px;
  margin-bottom: -9.6px;
}
.cid-vf1rWdze7P .mbr-label,
.cid-vf1rWdze7P .label-wrapper {
  color: #000000;
  text-align: center;
}
.cid-vf1rWdze7P .mbr-section-title,
.cid-vf1rWdze7P .title-wrap {
  color: #000000;
  text-align: center;
}
.cid-vf1rWdze7P .item-title {
  color: #000000;
}
.cid-vf1rWdze7P .item-text {
  color: #000000;
}
.cid-vf1rWQIzRN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vf1rWQIzRN .mbr-fallback-image.disabled {
  display: none;
}
.cid-vf1rWQIzRN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vf1rWQIzRN .title-wrapper {
  margin-bottom: 50px;
}
.cid-vf1rWQIzRN .title-wrapper .label-wrapper {
  margin-bottom: 25px;
}
.cid-vf1rWQIzRN .title-wrapper .label-wrapper .label-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cid-vf1rWQIzRN .title-wrapper .label-wrapper .label-wrap .icon-wrapper .mbr-iconfont {
  font-size: 22px;
  display: inline-flex;
}
.cid-vf1rWQIzRN .title-wrapper .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-vf1rWQIzRN .title-wrapper .title-wrap .mbr-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .cid-vf1rWQIzRN .title-wrapper .title-wrap .mbr-section-title {
    width: 70%;
  }
}
@media (max-width: 992px) {
  .cid-vf1rWQIzRN .title-wrapper .title-wrap .mbr-section-title {
    width: 100%;
  }
}
.cid-vf1rWQIzRN .items-wrapper {
  margin: 0 -10px;
}
.cid-vf1rWQIzRN .items-wrapper .item {
  padding: 0 10px;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-vf1rWQIzRN .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-vf1rWQIzRN .items-wrapper .item:hover .item-wrapper .image-wrapper .item-img img,
.cid-vf1rWQIzRN .items-wrapper .item:focus .item-wrapper .image-wrapper .item-img img {
  transform: scale(1.05);
}
.cid-vf1rWQIzRN .items-wrapper .item .item-wrapper .image-wrapper {
  position: relative;
  overflow: hidden;
  margin-bottom: 25px;
  will-change: transform;
}
.cid-vf1rWQIzRN .items-wrapper .item .item-wrapper .image-wrapper .item-img {
  will-change: transform;
}
.cid-vf1rWQIzRN .items-wrapper .item .item-wrapper .image-wrapper .item-img img {
  height: 300px;
  width: 100%;
  object-fit: cover;
  transition: all .3s ease;
  will-change: transform;
}
.cid-vf1rWQIzRN .items-wrapper .item .item-wrapper .image-wrapper .date-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
}
.cid-vf1rWQIzRN .items-wrapper .item .item-wrapper .image-wrapper .date-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #caf31d;
  opacity: .85;
  will-change: transform;
}
.cid-vf1rWQIzRN .items-wrapper .item .item-wrapper .image-wrapper .date-wrapper .date-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  z-index: 1;
  position: relative;
}
.cid-vf1rWQIzRN .items-wrapper .item .item-wrapper .image-wrapper .date-wrapper .date-wrap .iconfont-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 20px;
}
.cid-vf1rWQIzRN .items-wrapper .item .item-wrapper .image-wrapper .date-wrapper .date-wrap .item-date {
  margin-bottom: 0;
}
.cid-vf1rWQIzRN .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 10px;
}
.cid-vf1rWQIzRN .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-vf1rWQIzRN .items-wrapper .item .item-wrapper .card-box .item-btn {
  margin-top: 10px;
  margin-bottom: -9.6px;
}
.cid-vf1rWQIzRN .mbr-label,
.cid-vf1rWQIzRN .label-wrapper {
  color: #000000;
  text-align: center;
}
.cid-vf1rWQIzRN .mbr-section-title,
.cid-vf1rWQIzRN .title-wrap {
  color: #000000;
  text-align: center;
}
.cid-vf1rWQIzRN .item-title {
  color: #000000;
}
.cid-vf1rWQIzRN .item-date {
  color: #000000;
}
.cid-vf1rWQIzRN .item-text {
  color: #000000;
}
.cid-vf1rXArCFX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #caf31d;
}
.cid-vf1rXArCFX .mbr-fallback-image.disabled {
  display: none;
}
.cid-vf1rXArCFX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vf1rXArCFX .title-wrapper {
  margin-bottom: 50px;
}
.cid-vf1rXArCFX .title-wrapper .label-wrapper {
  margin-bottom: 25px;
}
.cid-vf1rXArCFX .title-wrapper .label-wrapper .label-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cid-vf1rXArCFX .title-wrapper .label-wrapper .label-wrap .icon-wrapper .mbr-iconfont {
  font-size: 22px;
  display: inline-flex;
}
.cid-vf1rXArCFX .title-wrapper .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-vf1rXArCFX .title-wrapper .title-wrap .mbr-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .cid-vf1rXArCFX .title-wrapper .title-wrap .mbr-section-title {
    width: 70%;
  }
}
@media (max-width: 992px) {
  .cid-vf1rXArCFX .title-wrapper .title-wrap .mbr-section-title {
    width: 100%;
  }
}
.cid-vf1rXArCFX .card {
  justify-content: center;
}
.cid-vf1rXArCFX .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media (max-width: 992px) {
  .cid-vf1rXArCFX .items-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-vf1rXArCFX .items-wrapper .item .item-wrapper .card-box .iconfont-wrapper {
  margin-bottom: 25px;
}
.cid-vf1rXArCFX .items-wrapper .item .item-wrapper .card-box .iconfont-wrapper .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 100%;
  background-color: #000000;
  font-size: 36px;
}
.cid-vf1rXArCFX .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 10px;
}
.cid-vf1rXArCFX .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-vf1rXArCFX .items-wrapper .item .item-wrapper .card-box .item-btn {
  margin-top: 10px;
  margin-bottom: -9.6px;
}
@media (max-width: 992px) {
  .cid-vf1rXArCFX .image-wrapper {
    margin-top: 50px;
  }
}
.cid-vf1rXArCFX .image-wrapper img {
  height: 700px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 1440px) {
  .cid-vf1rXArCFX .image-wrapper img {
    height: 400px;
  }
}
@media (max-width: 1200px) {
  .cid-vf1rXArCFX .image-wrapper img {
    height: 300px;
  }
}
.cid-vf1rXArCFX .mbr-label,
.cid-vf1rXArCFX .label-wrapper {
  color: #000000;
  text-align: center;
}
.cid-vf1rXArCFX .mbr-section-title,
.cid-vf1rXArCFX .title-wrap {
  color: #000000;
  text-align: center;
}
.cid-vf1rXArCFX .item-title {
  color: #000000;
}
.cid-vf1rXArCFX .item-text {
  color: #000000;
}
.cid-vehgfdRGKG {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #1b1818;
}
.cid-vehgfdRGKG img {
  object-fit: cover;
}
.cid-vehgfdRGKG .item-img {
  position: relative;
  padding: 0;
}
@media (min-width: 1600px) {
  .cid-vehgfdRGKG .text-wrapper {
    padding: 0 3rem;
  }
}
.cid-vehgfdRGKG .row {
  justify-content: space-between;
}
.cid-vehgfdRGKG .image {
  cursor: pointer;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vehgfdRGKG .image {
    margin-bottom: 1rem;
  }
}
.cid-vehgfdRGKG .item-title {
  color: #ffffff;
  text-align: left;
}
.cid-vehgfdRGKG .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-vehgfdRGKG .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-vehgfdRGKG .mbr-text,
.cid-vehgfdRGKG .mbr-section-btn {
  color: #ffffff;
}
.cid-vemSBSvMEh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vemSBSvMEh .mbr-fallback-image.disabled {
  display: none;
}
.cid-vemSBSvMEh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vemSBSvMEh .content-wrapper {
  padding-top: 80px;
}
@media (max-width: 992px) {
  .cid-vemSBSvMEh .content-wrapper {
    padding-top: 0;
    margin-bottom: 32px;
  }
}
.cid-vemSBSvMEh .content-wrapper .title-wrapper {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-vemSBSvMEh .content-wrapper .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-vemSBSvMEh .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-vemSBSvMEh .content-wrapper .title-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-vemSBSvMEh .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vemSBSvMEh .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 50%;
  max-width: 50%;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-vemSBSvMEh .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-vemSBSvMEh .embla__slide .slide-content {
  width: 100%;
}
.cid-vemSBSvMEh .embla__slide .slide-content .item-wrapper {
  height: 100%;
}
.cid-vemSBSvMEh .embla__slide .slide-content .item-wrapper .item-img img {
  width: 100%;
  height: 690px;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 1440px) {
  .cid-vemSBSvMEh .embla__slide .slide-content .item-wrapper .item-img img {
    height: 590px;
  }
}
@media (max-width: 992px) {
  .cid-vemSBSvMEh .embla__slide .slide-content .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-vemSBSvMEh .embla__button--next,
.cid-vemSBSvMEh .embla__button--prev {
  display: flex;
}
.cid-vemSBSvMEh .embla__button {
  top: 45%;
  width: 56px;
  height: 56px;
  font-size: 16px;
  backdrop-filter: blur(10px);
  background-color: transparent !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 100%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-vemSBSvMEh .embla__button::before {
  content: '';
  position: absolute;
  width: 56px;
  height: 56px;
  background-color: #000000;
  opacity: .2;
  border-radius: 100%;
  pointer-events: none;
  transition: all 0.3s ease;
}
.cid-vemSBSvMEh .embla__button:hover::before {
  opacity: .5;
}
.cid-vemSBSvMEh .embla__button:disabled {
  background-color: transparent !important;
  color: #ffffff !important;
  opacity: .5 !important;
}
.cid-vemSBSvMEh .embla__button:disabled::before {
  opacity: .2;
}
.cid-vemSBSvMEh .embla__button .mbr-iconfont {
  z-index: 1;
}
.cid-vemSBSvMEh .embla__button.embla__button--prev {
  left: 32px;
}
@media (max-width: 992px) {
  .cid-vemSBSvMEh .embla__button.embla__button--prev {
    left: 16px;
  }
}
.cid-vemSBSvMEh .embla__button.embla__button--prev .mbr-iconfont {
  margin-right: 4px;
}
.cid-vemSBSvMEh .embla__button.embla__button--next {
  right: 32px;
}
@media (max-width: 992px) {
  .cid-vemSBSvMEh .embla__button.embla__button--next {
    right: 16px;
  }
}
.cid-vemSBSvMEh .embla__button.embla__button--next .mbr-iconfont {
  margin-left: 4px;
}
.cid-vemSBSvMEh .embla {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-left: 52px;
}
@media (max-width: 1440px) {
  .cid-vemSBSvMEh .embla {
    margin-left: 0;
  }
}
.cid-vemSBSvMEh .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-vemSBSvMEh .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vemSBSvMEh .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vemSBSvMEh .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vemSBSvMEh .item-menu-overlay {
  opacity: 0 !important;
}
.cid-vemSBSvMEh .mbr-section-title {
  color: #111111;
}
.cid-vemSBSvMEh .mbr-section-subtitle {
  color: #ff6d99;
}
.cid-vemSBSvMEh .mbr-text,
.cid-vemSBSvMEh .text-wrapper {
  color: #666666;
}
.cid-vehgfedrWy {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-vehgfedrWy .item-img,
.cid-vehgfedrWy .img-wrap,
.cid-vehgfedrWy img {
  border-radius: 50% !important;
  display: flex;
  justify-content: center;
}
.cid-vehgfedrWy img,
.cid-vehgfedrWy .item-img {
  width: 230px;
  overflow: hidden;
  transition: transform 3s;
  cursor: pointer;
  object-fit: cover;
  min-height: 230px;
  height: 230px;
}
@media (max-width: 1600px) {
  .cid-vehgfedrWy img,
  .cid-vehgfedrWy .item-img {
    width: 180px;
    min-height: 180px;
    height: 180px;
  }
}
.cid-vehgfedrWy .item-img {
  border: 1px solid transparent;
  transition: all 0.3s;
}
.cid-vehgfedrWy .item:focus,
.cid-vehgfedrWy span:focus {
  outline: none;
}
.cid-vehgfedrWy .img-wrap {
  transition: all 0.3s;
  overflow: hidden;
  width: -webkit-fill-available;
  height: -webkit-fill-available;
}
.cid-vehgfedrWy .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vehgfedrWy .item {
    margin-bottom: 1rem;
  }
}
.cid-vehgfedrWy h5 {
  margin: 0;
}
.cid-vehgfedrWy .item-content {
  margin-top: 1rem;
  padding: 0rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.cid-vehgfedrWy .item-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column nowrap;
  transition: all 0.3s;
}
.cid-vehgfedrWy .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-vehgfedrWy .item-wrapper:hover .item-img {
  border: 1px solid lightgray;
}
.cid-vehgfedrWy .item-wrapper:hover .img-wrap {
  margin: 10px;
}
@media (max-width: 992px) {
  .cid-vehgfedrWy .item-wrapper {
    height: auto;
  }
}
.cid-vehgfedrWy .mbr-section-title {
  color: #4e423d;
  text-align: left;
}
.cid-vehgfedrWy .item-title {
  text-align: center;
}
.cid-vehgfedrWy .item-subtitle {
  text-align: center;
  color: #232323;
}
.cid-vehgfedrWy .mbr-text,
.cid-vehgfedrWy .item .mbr-section-btn {
  text-align: center;
}
.cid-vehgfedrWy .mbr-section-subtitle,
.cid-vehgfedrWy .mbr-section-head .mbr-section-btn {
  text-align: left;
}
.cid-vehgfeDC7O {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-vehgfeDC7O .mbr-fallback-image.disabled {
  display: none;
}
.cid-vehgfeDC7O .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vehgfeDC7O .col-lg-8 {
  padding: 4rem 6rem;
}
@media (max-width: 1600px) {
  .cid-vehgfeDC7O .col-lg-8 {
    padding: 2rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-vehgfeDC7O .col-lg-8 {
    padding: 2rem 1rem;
  }
}
.cid-vehgfeDC7O .img-col {
  border-left: 1px solid lightgray;
  padding: 1rem;
}
.cid-vehgfeDC7O .img-col img {
  width: 140px;
}
@media (max-width: 767px) {
  .cid-vehgfeDC7O .img-col {
    border-left: 0px solid lightgray;
    padding: 0;
    padding-top: 1rem;
  }
}
.cid-vehgfeDC7O .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-vehgfeDC7O .mbr-text,
.cid-vehgfeDC7O .mbr-section-btn {
  text-align: left;
  color: #232323;
}
.cid-vehgfeDC7O .mbr-section-title,
.cid-vehgfeDC7O .line {
  color: #808080;
}
.cid-vehgfeDC7O .mbr-section-subtitle,
.cid-vehgfeDC7O .align {
  text-align: left;
  color: #232323;
}
.cid-vehzr1F9EI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #000000;
}
.cid-vehzr1F9EI .mbr-fallback-image.disabled {
  display: none;
}
.cid-vehzr1F9EI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vehzr1F9EI .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-vehzr1F9EI .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-vehzr1F9EI .container {
    padding: 0 20px;
  }
}
.cid-vehzr1F9EI .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  max-width: 100%;
}
@media (max-width: 768px) {
  .cid-vehzr1F9EI .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
    border-right: none;
  }
}
.cid-vehzr1F9EI .embla__slide .card-wrap {
  display: flex;
}
@media (max-width: 992px) {
  .cid-vehzr1F9EI .embla__slide .card-wrap {
    display: block;
  }
}
.cid-vehzr1F9EI .embla__slide .card-wrap .content-wrap {
  width: 40%;
}
@media (max-width: 992px) {
  .cid-vehzr1F9EI .embla__slide .card-wrap .content-wrap {
    margin-bottom: 24px;
    width: 100%;
  }
}
.cid-vehzr1F9EI .embla__slide .card-wrap .content-wrap .card-subtitle {
  margin-bottom: 10px;
  letter-spacing: .16em;
}
.cid-vehzr1F9EI .embla__slide .card-wrap .content-wrap .card-title {
  margin-bottom: 16px;
}
.cid-vehzr1F9EI .embla__slide .card-wrap .content-wrap .card-desc {
  margin-bottom: 30px;
}
.cid-vehzr1F9EI .embla__slide .card-wrap .content-wrap .card-text {
  margin-bottom: 24px;
}
.cid-vehzr1F9EI .embla__slide .card-wrap .item-wrapper {
  width: 60%;
  padding-left: 4rem;
}
@media (max-width: 992px) {
  .cid-vehzr1F9EI .embla__slide .card-wrap .item-wrapper {
    width: 100%;
    padding: 0;
  }
}
.cid-vehzr1F9EI .embla__slide .card-wrap .item-wrapper .image-wrap {
  height: 100%;
  display: flex;
  align-items: center;
}
.cid-vehzr1F9EI .embla__slide .card-wrap .item-wrapper .image-wrap img {
  height: 350px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vehzr1F9EI .embla__slide .card-wrap .item-wrapper .image-wrap img {
    height: 300px;
  }
}
.cid-vehzr1F9EI .embla__button--next,
.cid-vehzr1F9EI .embla__button--prev {
  display: flex;
}
.cid-vehzr1F9EI .embla__button {
  bottom: -3rem;
  width: 40px;
  height: 40px;
  margin-top: -1.5rem;
  font-size: 16px;
  background-color: transparent;
  color: #bcbcbc;
  border: 2px solid #b1f152;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-vehzr1F9EI .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-vehzr1F9EI .embla__button:hover {
  background: transparent;
  color: #bcbcbc;
  border-color: #bcbcbc;
}
.cid-vehzr1F9EI .embla__button.embla__button--prev {
  left: auto;
  right: 3.5rem;
  margin-left: 0;
}
.cid-vehzr1F9EI .embla__button.embla__button--next {
  right: 0;
  margin-right: 0;
}
.cid-vehzr1F9EI .embla {
  position: relative;
  width: 100%;
}
.cid-vehzr1F9EI .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-vehzr1F9EI .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vehzr1F9EI .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vehzr1F9EI .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vehzr1F9EI .card-subtitle {
  color: #ededed;
}
.cid-vehzr1F9EI .card-title {
  color: #ffffff;
}
.cid-vehzr1F9EI .card-desc {
  color: #ffffff;
}
.cid-vehzr1F9EI .card-text {
  color: #ffffff;
}
.cid-vehgfeZACF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #212428;
}
.cid-vehgfeZACF .mbr-fallback-image.disabled {
  display: none;
}
.cid-vehgfeZACF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vehgfeZACF .mbr-section-head {
  margin-bottom: 20px;
  width: 100%;
}
.cid-vehgfeZACF .mbr-section-title {
  color: #FF014E;
}
.cid-vehgfeZACF .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-vehgfeZACF .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-vehgfeZACF .card-row {
  align-items: stretch;
}
.cid-vehgfeZACF .card {
  margin: 15px 0;
}
.cid-vehgfeZACF .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 40px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 1199px) {
  .cid-vehgfeZACF .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 575px) {
  .cid-vehgfeZACF .card-wrapper {
    padding: 20px;
  }
}
.cid-vehgfeZACF .card-box {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 5;
  height: 100%;
}
.cid-vehgfeZACF .card-head {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
}
.cid-vehgfeZACF .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: 10px;
  padding: 7px;
  min-width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #3eb75e;
}
.cid-vehgfeZACF .iconfont-wrapper .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
}
.cid-vehgfeZACF .card-head-text {
  flex-grow: 1;
}
.cid-vehgfeZACF .name-title {
  color: #FFFFFF;
}
.cid-vehgfeZACF .name-text {
  color: #FF014E;
}
.cid-vehgfeZACF .card-title {
  color: #FFFFFF;
  margin-bottom: 20px;
  transition: .5s all;
}
.cid-vehgfeZACF .card-text {
  color: #C4CFDE;
  opacity: 0.75;
  margin-bottom: 36px;
  transition: .5s all;
}
.cid-vehgfeZACF .score-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: auto;
  margin-right: auto;
  padding-top: 4px;
}
.cid-vehgfeZACF .score-container .score-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 4px;
}
.cid-vehgfeZACF .score-container .score-wrapper .mbr-iconfont {
  font-size: 12px;
  color: #ff014e;
}
.cid-vehgffDzUF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #212428;
}
.cid-vehgffDzUF .mbr-fallback-image.disabled {
  display: none;
}
.cid-vehgffDzUF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 575px) {
  .cid-vehgffDzUF .row > [class*="col"] {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.cid-vehgffDzUF .mbr-section-head {
  margin-bottom: 10px;
  width: 100%;
}
.cid-vehgffDzUF .mbr-section-title {
  color: #FF014E;
}
.cid-vehgffDzUF .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-vehgffDzUF .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-vehgffDzUF .card-row {
  align-items: stretch;
}
.cid-vehgffDzUF .card {
  margin-top: 30px;
}
.cid-vehgffDzUF .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
.cid-vehgffDzUF .card-wrapper:hover .card-bg {
  opacity: 1;
}
.cid-vehgffDzUF .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
  transition: .5s all;
}
.cid-vehgffDzUF .card-box {
  position: relative;
  z-index: 5;
  height: 100%;
}
.cid-vehgffDzUF .item-img {
  height: 150px;
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 30px;
  width: 100%;
}
.cid-vehgffDzUF .item-img img {
  width: auto;
  max-height: 85px;
  max-width: 100%;
  object-fit: contain;
}
.cid-vehgffDzUF .text-item {
  padding: 16px;
  width: 100%;
  border-top: 1px solid #16181c;
}
.cid-vehgffDzUF .card-title {
  color: #878e99;
  margin-bottom: 0;
}
.cid-vehgffDzUF .card-title a {
  transition: 0.4s all;
}
.cid-vehgffDzUF .card-title a:hover {
  color: #bcbcbc !important;
}
.cid-vehgfgfh4Q {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #212428;
}
.cid-vehgfgfh4Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-vehgfgfh4Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vehgfgfh4Q .container {
  max-width: 1200px;
  padding: 0 10px;
}
.cid-vehgfgfh4Q .mbr-section-head {
  margin-bottom: 10px;
  width: 100%;
}
.cid-vehgfgfh4Q .mbr-section-title {
  color: #FF014E;
}
.cid-vehgfgfh4Q .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-vehgfgfh4Q .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-vehgfgfh4Q .card-row {
  align-items: stretch;
}
.cid-vehgfgfh4Q .card {
  margin-top: 30px;
}
@media (max-width: 575px) {
  .cid-vehgfgfh4Q .card {
    flex-basis: 80% !important;
  }
}
.cid-vehgfgfh4Q .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
.cid-vehgfgfh4Q .card-wrapper:hover .card-bg {
  opacity: 1;
}
.cid-vehgfgfh4Q .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
  transition: .5s all;
}
.cid-vehgfgfh4Q .card-box {
  position: relative;
  z-index: 5;
  height: 100%;
}
.cid-vehgfgfh4Q .item-img {
  height: 150px;
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 30px;
  width: 100%;
}
.cid-vehgfgfh4Q .item-img img {
  width: auto;
  max-height: 85px;
  max-width: 100%;
  object-fit: contain;
}
.cid-vehgfgfh4Q .text-item {
  padding: 16px;
  width: 100%;
  border-top: 1px solid #16181c;
}
.cid-vehgfgfh4Q .card-title {
  color: #878e99;
  margin-bottom: 0;
}
.cid-vehgfgfh4Q .card-title a {
  transition: 0.4s all;
}
.cid-vehgfgfh4Q .card-title a:hover {
  color: #bcbcbc !important;
}
.cid-vehEvEPo80 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-vehEvEPo80 .mbr-section-subtitle {
  color: #86de2d;
}
.cid-vehEvEPo80 .mbr-text {
  color: #bbbbbb;
}
.cid-vehEwf7pGy {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-vehEwf7pGy .mbr-fallback-image.disabled {
  display: none;
}
.cid-vehEwf7pGy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vehEwf7pGy .items-wrapper {
  margin: 0 -30px;
}
.cid-vehEwf7pGy .item {
  padding: 0 30px;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-vehEwf7pGy .item {
    margin-bottom: 40px;
  }
  .cid-vehEwf7pGy .item:last-child {
    margin-bottom: 0;
  }
}
.cid-vehEwf7pGy .item .item-wrapper .icon-wrapper {
  margin-bottom: 24px;
}
.cid-vehEwf7pGy .item .item-wrapper .icon-wrapper .icon-wrap {
  background-image: linear-gradient(40deg, #b1f152 0%, #000000 45%, #86de2d 100%);
  box-shadow: 0 6px 30px -12px #b1f152;
  display: inline-flex;
  padding: 2px;
}
.cid-vehEwf7pGy .item .item-wrapper .icon-wrapper .icon-wrap .mbr-iconfont {
  padding: 16px;
  font-size: 36px;
  background-color: #000000;
}
.cid-vehEwf7pGy .item .item-wrapper .item-title {
  margin-bottom: 6px;
}
.cid-vehEwf7pGy .item .item-wrapper .item-text {
  margin-bottom: 0;
}
.cid-vehEwf7pGy .item .item-wrapper .mbr-section-btn {
  margin-top: 10px;
  width: 100%;
}
.cid-vehEwf7pGy .item .item-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
  width: 100%;
}
.cid-vehEwf7pGy .item-title {
  color: #ffffff;
}
.cid-vehEwf7pGy .item-text {
  color: #9ba9c4;
}
.cid-vehEwf7pGy .item-text,
.cid-vehEwf7pGy .text-wrap {
  color: #bbbbbb;
}
.cid-vehEwf7pGy .item-title,
.cid-vehEwf7pGy .mbr-section-btn,
.cid-vehEwf7pGy .icon-wrapper {
  color: #b1f152;
}
.cid-vehDIwGYDz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #212428;
}
.cid-vehDIwGYDz .mbr-fallback-image.disabled {
  display: none;
}
.cid-vehDIwGYDz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vehDIwGYDz .mbr-section-head {
  margin-bottom: 20px;
  width: 100%;
}
.cid-vehDIwGYDz .mbr-section-title {
  color: #b1f152;
}
.cid-vehDIwGYDz .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-vehDIwGYDz .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-vehDIwGYDz .card-row {
  align-items: stretch;
}
.cid-vehDIwGYDz .card {
  margin: 15px 0;
}
.cid-vehDIwGYDz .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 40px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 1199px) {
  .cid-vehDIwGYDz .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 575px) {
  .cid-vehDIwGYDz .card-wrapper {
    padding: 20px;
  }
}
.cid-vehDIwGYDz .card-box {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 5;
  height: 100%;
}
.cid-vehDIwGYDz .card-head {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
}
.cid-vehDIwGYDz .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: 10px;
  padding: 7px;
  min-width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #3eb75e;
}
.cid-vehDIwGYDz .iconfont-wrapper .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
}
.cid-vehDIwGYDz .card-head-text {
  flex-grow: 1;
}
.cid-vehDIwGYDz .name-title {
  color: #FFFFFF;
}
.cid-vehDIwGYDz .name-text {
  color: #FF014E;
}
.cid-vehDIwGYDz .card-title {
  color: #FFFFFF;
  margin-bottom: 20px;
  transition: .5s all;
}
.cid-vehDIwGYDz .card-text {
  color: #C4CFDE;
  opacity: 0.75;
  margin-bottom: 36px;
  transition: .5s all;
  text-align: left;
}
.cid-vehDIwGYDz .score-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: auto;
  margin-right: auto;
  padding-top: 4px;
}
.cid-vehDIwGYDz .score-container .score-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 4px;
}
.cid-vehDIwGYDz .score-container .score-wrapper .mbr-iconfont {
  font-size: 12px;
  color: #ff014e;
}
.cid-vehgfgOBCE {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #171717;
}
.cid-vehgfgOBCE img {
  width: 220px;
  margin: auto;
  filter: brightness(10);
}
.cid-vehgfgOBCE .col-md-6 {
  margin-bottom: 1rem;
}
.cid-vehgfgOBCE .card {
  transition: all 0.3s;
  height: fit-content;
  background: #333333;
  padding: 4rem 1rem;
  border-radius: 2rem;
  overflow: hidden;
  cursor: pointer;
}
.cid-vehgfgOBCE .dot {
  width: 6px;
  height: 6px;
  background: #ffffff;
}
.cid-vehgfgOBCE .dot-right {
  margin-right: 0;
  margin-left: auto;
}
.cid-vehgfgOBCE .mbr-section-text {
  color: #ffffff;
}
.cid-vehgfgOBCE .mbr-section-subtitle {
  color: #ffffff;
  position: relative;
  width: fit-content;
  margin: auto;
  transition: all 0.3s;
}
.cid-vehgfgOBCE .mbr-section-subtitle:before {
  content: '';
  position: absolute;
  transition: all 0.3s;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 1px;
  background: #bbbbbb;
}
.cid-vehgfgOBCE .mbr-section-subtitle:hover {
  color: #bbbbbb !important;
}
.cid-vehgfgOBCE .mbr-section-subtitle:hover:before {
  width: 100%;
}
.cid-vehgfgOBCE .mbr-section-title {
  color: #ffffff;
}
.cid-vehgfhgaz9 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #fafafa;
}
.cid-vehgfhgaz9 .container-fluid {
  max-width: 1500px;
}
.cid-vehgfhgaz9 .icon1 {
  font-size: 2.2rem;
}
.cid-vehgfhgaz9 .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-vehgfhgaz9 .team-card:hover {
  transform: translateY(-10px);
}
@media (min-width: 1400px) {
  .cid-vehgfhgaz9 .col-lg-3 {
    padding: 0 1.5rem;
  }
}
.cid-vehgfhgaz9 .card-wrap {
  height: 100%;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 4px;
}
.cid-vehgfhgaz9 .card-wrap:hover img {
  transform: scale(1.1);
}
@media (max-width: 991px) {
  .cid-vehgfhgaz9 .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-vehgfhgaz9 .card-wrap .image-wrap img {
  width: 100%;
  transition: all 0.3s;
  height: 300px;
  object-fit: cover;
}
.cid-vehgfhgaz9 .card-wrap .content-wrap {
  margin: auto;
}
@media (min-width: 768px) {
  .cid-vehgfhgaz9 .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vehgfhgaz9 .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-vehgfhgaz9 .content-wrap {
  height: 100%;
  justify-content: space-between;
  display: flex;
  flex-direction: column;
}
.cid-vehgfhgaz9 .text-wrapper {
  display: flex;
}
.cid-vehgfhgaz9 .text-wrapper span {
  color: #bcbcbc;
  padding-right: 1rem;
}
.cid-vehgfhgaz9 .mbr-main-subtitle {
  background: #bcbcbc;
  width: fit-content;
  padding: 0.4rem 0.8rem;
  position: relative;
  margin-bottom: 2rem;
}
.cid-vehgfhgaz9 .mbr-main-subtitle:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -18px;
  border-left: 24px solid #bcbcbc;
  border-bottom: 18px solid transparent;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-vehgfhgaz9 .mbr-main-subtitle {
    margin: auto;
    margin-bottom: 2rem;
  }
}
.cid-vehgfhgaz9 .social {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.5rem;
  padding-left: 3rem;
}
.cid-vehgfhgaz9 .social .mbr-iconfont {
  padding-right: 0.6rem;
  color: #bcbcbc;
}
@media (max-width: 767px) {
  .cid-vehgfhgaz9 .social {
    padding-left: 0rem;
  }
}
.cid-vehgfhgaz9 .icons-menu {
  display: flex;
}
@media (max-width: 767px) {
  .cid-vehgfhgaz9 .icons-menu {
    justify-content: center;
  }
}
.cid-vehgfhgaz9 .image-wrap {
  clip-path: polygon(100% 0, 100% 100%, 0% 94%, 0% 0%);
}
.cid-vehgfhgaz9 .iconfont-wrapper {
  font-size: 1.2rem;
  padding: 0.4rem 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-vehgfhgaz9 .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #bcbcbc;
  z-index: 0;
}
.cid-vehgfhgaz9 .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-vehgfhgaz9 .mbr-iconfont {
  position: relative;
  fomt-size: 1rem;
  color: #272727;
}
.cid-vehgfhgaz9 .card-text,
.cid-vehgfhgaz9 .mbr-section-btn,
.cid-vehgfhgaz9 .social-row {
  color: #353535;
}
.cid-vehgfhgaz9 .mbr-role,
.cid-vehgfhgaz9 .social-row {
  color: #353535;
}
.cid-vehgfhgaz9 .card-title,
.cid-vehgfhgaz9 .social-row {
  color: #272727;
}
.cid-vehgfhgaz9 .mbr-section-title {
  color: #272727;
}
.cid-vehgfhgaz9 .card1-text {
  color: #272727;
}
.cid-vehgfhgaz9 .soc-link,
.cid-vehgfhgaz9 .soc-wrapper {
  color: #272727;
}
.cid-vehgfhSsDa {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-vehgfhSsDa .main-col {
  display: flex;
}
.cid-vehgfhSsDa .main-bg {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  background-color: transparent;
  background-color: #ffffff;
  box-shadow: 0 0 80px rgba(0, 29, 56, 0.03);
}
.cid-vehgfhSsDa .text-wrapper {
  width: 100%;
  padding: 50px 20px 30px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-vehgfhSsDa .text-wrapper {
    padding: 15px 40px;
  }
}
@media (min-width: 1200px) {
  .cid-vehgfhSsDa .text-wrapper {
    padding: 40px 50px 40px 70px;
  }
}
@media (min-width: 992px) {
  .cid-vehgfhSsDa .text-wrapper {
    width: 52%;
  }
}
.cid-vehgfhSsDa .mbr-section-title {
  color: #010d4c;
  margin-bottom: 5px;
}
.cid-vehgfhSsDa .prof-text {
  color: #00284E;
  opacity: 0.5;
  padding-bottom: 5px;
  margin-bottom: 0;
}
.cid-vehgfhSsDa .mbr-section-subtitle {
  color: #010d4c;
  margin-top: 45px;
  margin-bottom: 5px;
}
@media (min-width: 992px) {
  .cid-vehgfhSsDa .mbr-section-subtitle {
    margin-bottom: 8px;
  }
}
.cid-vehgfhSsDa .mbr-text {
  color: #00284E;
  opacity: 0.8;
  padding-top: 8px;
  margin-bottom: 0;
}
.cid-vehgfhSsDa .image-wrapper {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-vehgfhSsDa .image-wrapper {
    width: 48%;
  }
}
.cid-vehgfhSsDa .image-wrapper img {
  max-width: 100%;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.cid-vehgfhSsDa .social-row {
  display: flex;
  flex-wrap: wrap;
  padding-top: 22px;
}
.cid-vehgfhSsDa .mbr-iconfont {
  font-size: 18px;
  color: #000000;
}
.cid-vehgfhSsDa .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: transparent;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 5px;
  min-width: 42px;
  min-height: 42px;
}
.cid-vehgfhSsDa .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vehgfhSsDa .soc-item:hover .mbr-iconfont {
  color: #FFFFFF !important;
}
.cid-vehgfhSsDa .soc-item:nth-child(1):hover {
  background-color: #913BFF;
}
.cid-vehgfhSsDa .soc-item:nth-child(2):hover {
  background-color: #0066FF;
}
.cid-vehgfhSsDa .soc-item:nth-child(3):hover {
  background-color: #FF7A41;
}
.cid-vehgfhSsDa .soc-item:nth-child(4):hover {
  background-color: #ec2016;
}
.cid-vehgfhSsDa .mbr-fallback-image.disabled {
  display: none;
}
.cid-vehgfhSsDa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vehgfirdJY {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .cid-vehgfirdJY .col-md-6 {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .cid-vehgfirdJY .mbr-section-head {
    padding: 0;
  }
}
.cid-vehgfirdJY .people {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .cid-vehgfirdJY .people {
    padding: 0;
  }
}
.cid-vehgfirdJY .mbr-section-title {
  color: #000000;
  margin: 0;
}
.cid-vehgfirdJY .mbr-section-subtitle {
  color: #6b6b6b;
  margin: 0;
}
.cid-vehgfirdJY .mbr-text {
  color: #6b6b6b;
  width: 362px;
  max-width: 362px;
  margin: 10px auto;
}
@media (max-width: 400px) {
  .cid-vehgfirdJY .mbr-text {
    width: 100%;
  }
}
.cid-vehgfirdJY .item-name {
  color: #000000;
  margin: 0;
}
.cid-vehgfirdJY h3 {
  margin: 0;
}
.cid-vehgfirdJY .occupation {
  color: #6b6b6b;
  margin: 0;
}
.cid-vehgfirdJY .item {
  margin-bottom: 50px;
  transition: all 1s ease-out;
}
@media (max-width: 767px) {
  .cid-vehgfirdJY .item {
    margin-bottom: 80px;
  }
}
.cid-vehgfirdJY .item-wrapper {
  display: flex;
}
@media (max-width: 767px) {
  .cid-vehgfirdJY .item-wrapper {
    flex-direction: column;
  }
}
.cid-vehgfirdJY .item-caption {
  width: 50%;
  padding-left: 30px;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .cid-vehgfirdJY .item-caption {
    width: 100%;
    padding-left: 0;
  }
}
.cid-vehgfirdJY .top {
  padding-top: 16px;
}
.cid-vehgfirdJY .socials-wrap {
  margin-bottom: 5px;
}
.cid-vehgfirdJY .socials {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.cid-vehgfirdJY .socials p {
  margin: 0 20px 0 0;
}
@media (max-width: 767px) {
  .cid-vehgfirdJY .socials p {
    margin-right: 10px;
    margin-bottom: 5px;
  }
}
.cid-vehgfirdJY .socials-item .link {
  color: #000000;
}
.cid-vehgfirdJY .item-img {
  width: 50%;
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .cid-vehgfirdJY .item-img {
    width: 100%;
    height: 100%;
  }
}
.cid-vehgfirdJY .item-img::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 1s ease-out;
  --qodef-gradient-color-1: rgba(248, 117, 117, 0.8);
  --qodef-gradient-color-2: rgba(255, 160, 160, 0.44);
  --qodef-gradient-color-3: rgba(254, 216, 255, 0);
  --qodef-gradient-color-4: #b1d2fe;
  --qodef-gradient-color-5: rgba(230, 255, 250, 0);
  --qodef-gradient-color-6: #d8cafe;
  background: radial-gradient(105.68% 45.69% at 92.95% 50%, var(--qodef-gradient-color-1) 0, var(--qodef-gradient-color-2) 53.91%, var(--qodef-gradient-color-3) 100%), radial-gradient(103.18% 103.18% at 90.11% 102.39%, var(--qodef-gradient-color-4) 0, var(--qodef-gradient-color-5) 100%), radial-gradient(90.45% 90.45% at 87.84% 9.55%, var(--qodef-gradient-color-5) 0, rgba(254, 219, 246, 0) 100%), linear-gradient(135.66deg, var(--qodef-gradient-color-6) 14.89%, var(--qodef-gradient-color-6) 74.33%);
  z-index: 1;
  pointer-events: none;
}
.cid-vehgfirdJY .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-vehgfirdJY .item:hover {
  cursor: pointer;
}
.cid-vehgfirdJY .item:hover .item-img::before {
  opacity: 0.7;
}
.cid-vehgfjaP3e {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
  z-index: 2;
}
.cid-vehgfjaP3e .icon1 {
  background: #a8aaf1;
}
.cid-vehgfjaP3e .icon-wrapper {
  align-items: center;
  display: flex;
  margin: 0 -0.5rem;
}
@media (max-width: 767px) {
  .cid-vehgfjaP3e .icon-wrapper {
    justify-content: center;
  }
}
.cid-vehgfjaP3e .img-col {
  padding-right: 6rem;
}
@media (max-width: 992px) {
  .cid-vehgfjaP3e .img-col {
    padding-right: 3rem;
    padding-bottom: 4rem;
  }
}
.cid-vehgfjaP3e .icon2 {
  background: #ff9083;
}
.cid-vehgfjaP3e .icon3 {
  background: #72dfe9;
}
.cid-vehgfjaP3e .img-wrapper {
  padding: 0;
  position: relative;
}
.cid-vehgfjaP3e .img-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-vehgfjaP3e .img-wrapper:after {
  position: absolute;
  top: 0;
  border-radius: 8px;
  border: 2px solid #1c1c25;
  left: 0;
  width: 100%;
  z-index: -1;
  pointer-events: none;
  transition: opacity 0.3s;
  transform: translate(2rem, 2rem);
  height: 100%;
  content: '';
  background: transparent;
  opacity: 1;
}
.cid-vehgfjaP3e p {
  line-height: 2;
}
.cid-vehgfjaP3e .iconfont-wrapper {
  position: relative;
  box-shadow: 0px 0px 0px 2px #1c1c25 inset;
  border-radius: 50%;
  min-width: 40px;
  width: 40px;
  height: 40px;
  display: flex;
  margin: 0 0.5rem;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-vehgfjaP3e .iconfont-wrapper:hover {
  box-shadow: 0px 0px 0px 2px transparent inset;
}
.cid-vehgfjaP3e .iconfont-wrapper:hover .icon-bg {
  top: 0px;
  right: 0px;
}
.cid-vehgfjaP3e .iconfont-wrapper:hover .mbr-iconfont {
  color: white;
}
.cid-vehgfjaP3e .mbr-iconfont {
  z-index: 2;
  transition: all 0.3s;
  font-size: 1rem;
  color: #1c1c25;
}
.cid-vehgfjaP3e .icon-bg {
  position: absolute;
  overflow: visible;
  top: 5px;
  right: -5px;
  box-sizing: border-box;
  width: 100%;
  transition: all 0.3s;
  z-index: -1;
  height: 100%;
  border-radius: 50%;
}
.cid-vehgfjaP3e .inline-wrapper {
  display: inline-block;
}
.cid-vehgfjaP3e .align-wrapper {
  width: 100%;
}
.cid-vehgfjaP3e img {
  border-radius: 8px;
  position: relative;
}
.cid-vehgfjaP3e .wrap {
  width: 150px;
  height: 150px;
  margin: 0 auto;
}
.cid-vehgfjaP3e .mbr-section-subtitle {
  color: #767676;
}
.cid-vehgfjaP3e .card-text {
  color: #767676;
}
.cid-vehgfjaP3e .main-sub-title,
.cid-vehgfjaP3e .align-wrapper {
  color: #ff9083;
}
.cid-vehgfjaP3e .main-text {
  color: #777d74;
}
.cid-vehgfjaP3e .main-text,
.cid-vehgfjaP3e .link-align-wrapper {
  color: #1c1c25;
}
.cid-vehgfjaP3e .mbr-fallback-image.disabled {
  display: none;
}
.cid-vehgfjaP3e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vehgfk7p4c {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f2f2f4;
}
.cid-vehgfk7p4c .content {
  max-width: 800px;
  margin: auto 0;
  padding: 0 2rem;
}
@media (min-width: 1400px) {
  .cid-vehgfk7p4c .content {
    padding: 0 6rem;
  }
}
.cid-vehgfk7p4c .mbr-figure {
  height: 100%;
}
.cid-vehgfk7p4c img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.cid-vehgfk7p4c .img-col {
  padding: 0;
}
.cid-vehgfk7p4c .icon-wrap {
  width: fit-content;
  padding-bottom: 1.5rem;
  display: inline-block;
}
.cid-vehgfk7p4c p {
  font-weight: 700;
  line-height: 1.6;
}
.cid-vehgfk7p4c .mbr-iconfont {
  font-size: 5rem;
  color: #ed6436 !important;
}
.cid-vehgfk7p4c .icon-title,
.cid-vehgfk7p4c .mbr-iconfont {
  color: #181818;
}
@media (max-width: 992px) {
  .cid-vehgfk7p4c .content {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-vehgfk7p4c .icon-wrap {
    margin: auto;
  }
}
.cid-vehgfk7p4c H3 {
  color: #ed6436;
}
.cid-vehgfk7p4c .mbr-fallback-image.disabled {
  display: none;
}
.cid-vehgfk7p4c .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vehgfkK7ys {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-vehgfkK7ys .mbr-fallback-image.disabled {
  display: none;
}
.cid-vehgfkK7ys .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vehgfkK7ys b,
.cid-vehgfkK7ys strong {
  font-weight: 900;
}
@media (min-width: 992px) {
  .cid-vehgfkK7ys img {
    padding: 0 4rem;
  }
}
@media (max-width: 992px) {
  .cid-vehgfkK7ys img {
    padding-bottom: 2rem;
  }
}
.cid-vehgfkK7ys .row {
  align-items: center;
}
.cid-vehgfkK7ys .mbr-section-title {
  color: #17003b;
}
.cid-vehgfkK7ys .mbr-text,
.cid-vehgfkK7ys .mbr-section-btn {
  color: #17003b;
}
.cid-vehgfkK7ys .mbr-section-subtitle {
  color: #17003b;
}
.cid-vehgfljT3g {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-vehgfljT3g .mbr-fallback-image.disabled {
  display: none;
}
.cid-vehgfljT3g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vehgfljT3g .col-lg-8 {
  padding: 4rem 6rem;
}
@media (max-width: 1600px) {
  .cid-vehgfljT3g .col-lg-8 {
    padding: 2rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-vehgfljT3g .col-lg-8 {
    padding: 2rem 1rem;
  }
}
.cid-vehgfljT3g .img-col {
  border-left: 1px solid lightgray;
  padding: 1rem;
}
.cid-vehgfljT3g .img-col img {
  width: 140px;
}
@media (max-width: 767px) {
  .cid-vehgfljT3g .img-col {
    border-left: 0px solid lightgray;
    padding: 0;
    padding-top: 1rem;
  }
}
.cid-vehgfljT3g .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-vehgfljT3g .mbr-text,
.cid-vehgfljT3g .mbr-section-btn {
  text-align: left;
  color: #232323;
}
.cid-vehgfljT3g .mbr-section-title,
.cid-vehgfljT3g .line {
  color: #808080;
}
.cid-vehgfljT3g .mbr-section-subtitle,
.cid-vehgfljT3g .align {
  text-align: left;
  color: #232323;
}
.cid-vehgflSwGU {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-vehgflSwGU .mbr-fallback-image.disabled {
  display: none;
}
.cid-vehgflSwGU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vehgflSwGU .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-vehgflSwGU .item-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-vehgflSwGU .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-vehgflSwGU .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-vehgflSwGU .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-vehgflSwGU .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-vehgflSwGU .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-vehgflSwGU .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-vehgflSwGU .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vehgflSwGU .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-vehvEIjj5L {
  padding-top: 90px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-vehvEIjj5L .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-vehvEIjj5L textarea {
  min-height: 150px;
}
.cid-vehvEIjj5L input[name='yourSubject'] {
  margin-top: 1.5rem;
}
.cid-vehvEIjj5L textarea[name='yourMessage'] {
  margin-top: 0.3rem;
}
.cid-vehvEIjj5L .form-control,
.cid-vehvEIjj5L .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-vehvEIjj5L .form-control input::-webkit-input-placeholder,
.cid-vehvEIjj5L .field-input input::-webkit-input-placeholder,
.cid-vehvEIjj5L .form-control textarea::-webkit-input-placeholder,
.cid-vehvEIjj5L .field-input textarea::-webkit-input-placeholder {
  color: #000000 !important;
}
.cid-vehvEIjj5L .form-control input:-moz-placeholder,
.cid-vehvEIjj5L .field-input input:-moz-placeholder,
.cid-vehvEIjj5L .form-control textarea:-moz-placeholder,
.cid-vehvEIjj5L .field-input textarea:-moz-placeholder {
  color: #000000 !important;
}
.cid-vehvEIjj5L .jq-number__spin:hover,
.cid-vehvEIjj5L .jq-number__spin:focus {
  background-color: #86de2d;
  border-color: #86de2d !important;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-vehvEIjj5L .jq-number__spin {
  background-color: #ffffff;
  border-color: #414141 !important;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-vehvEIjj5L .jq-selectbox li,
.cid-vehvEIjj5L .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-vehvEIjj5L .jq-selectbox li:hover,
.cid-vehvEIjj5L .jq-selectbox li.selected {
  background-color: #86de2d;
  color: #000000;
}
.cid-vehvEIjj5L .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-vehvEIjj5L .jq-number__spin.minus:hover:after,
.cid-vehvEIjj5L .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-vehvEIjj5L .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-vehvEIjj5L .jq-number__spin.minus:after,
.cid-vehvEIjj5L .jq-number__spin.plus:after {
  border-top-color: #86de2d;
  border-bottom-color: #86de2d;
}
@media (max-width: 992px) {
  .cid-vehvEIjj5L .media-content {
    padding-left: 0rem;
    padding-top: 2rem;
  }
  .cid-vehvEIjj5L .social-list {
    margin-bottom: 3rem;
  }
  .cid-vehvEIjj5L .email-input {
    margin-top: 2rem;
  }
}
.cid-vehvEIjj5L .mbr-section-subtitle {
  color: #000000;
  margin-bottom: 2.4rem;
}
.cid-vehvEIjj5L .mbr-text {
  color: #acacac;
  margin-bottom: 3.5rem;
}
.cid-vehvEIjj5L .mbr-iconfont-social {
  font-size: 1rem;
  color: #353535;
  margin-right: 0.6rem;
}
.cid-vehvEIjj5L .mbr-iconfont-social:before {
  padding: 1rem;
  border: 2px solid;
  border-radius: 100px;
  border-color: #25d366;
  transition: all 0.3s;
}
.cid-vehvEIjj5L .mbr-iconfont-social:hover {
  color: #25d366;
}
.cid-vehvEIjj5L .social-list {
  display: flex;
}
.cid-vehvEIjj5L .social-list a {
  transition: 0.3s;
}
.cid-vehvEIjj5L .social-list a:hover {
  transform: translateY(-8px);
}
.cid-vehvEIjj5L .row {
  align-items: center;
}
.cid-vehvEIjj5L .mbr-section-title {
  margin-bottom: 1.3rem;
}
.cid-vehvEIjj5L .btn {
  font-weight: bold;
  padding: 1rem 5.5rem;
}
.cid-vehvEIjj5L .form-btn {
  margin-top: 2.5rem;
}
.cid-vehvEIjj5L input::-webkit-input-placeholder,
.cid-vehvEIjj5L textarea::-webkit-input-placeholder {
  color: #000000 !important;
}
.cid-vehvEIjj5L input:-moz-placeholder,
.cid-vehvEIjj5L textarea:-moz-placeholder {
  color: #000000 !important;
}
@media (min-width: 992px) {
  .cid-vehvEIjj5L .media-content {
    padding-right: 3rem;
  }
  .cid-vehvEIjj5L .email-input {
    padding-left: 2.2rem;
  }
}
@media (min-width: 767px) {
  .cid-vehvEIjj5L .row {
    padding: 0 1rem;
  }
}
.cid-vehvEIjj5L .btn:hover {
  background-color: #25d366 !important;
  border-color: #25d366 !important;
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-vehvEIjj5L .form-btn {
    width: 100%;
  }
  .cid-vehvEIjj5L .btn {
    width: 100%;
  }
}
.cid-vehvEIjj5L .mbr-text,
.cid-vehvEIjj5L .mbr-section-btn {
  color: #232323;
}
.cid-vehgfmIkmC {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #121212;
}
.cid-vehgfmIkmC .mbr-fallback-image.disabled {
  display: none;
}
.cid-vehgfmIkmC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vehgfmIkmC .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  max-width: 100%;
}
@media (max-width: 768px) {
  .cid-vehgfmIkmC .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-vehgfmIkmC .embla__slide .slide-content {
  width: 100%;
}
.cid-vehgfmIkmC .embla__slide .slide-content .item-wrapper .rating-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}
.cid-vehgfmIkmC .embla__slide .slide-content .item-wrapper .rating-wrapper .rating-wrap {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.cid-vehgfmIkmC .embla__slide .slide-content .item-wrapper .rating-wrapper .rating-wrap .mbr-star {
  margin-bottom: 0;
}
.cid-vehgfmIkmC .embla__slide .slide-content .item-wrapper .item-text {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}
.cid-vehgfmIkmC .embla__slide .slide-content .item-wrapper .person-wrapper .person-wrap {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.cid-vehgfmIkmC .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-vehgfmIkmC .embla__slide .slide-content .item-wrapper .person-wrapper .person-wrap .name-wrapper {
  position: relative;
  z-index: 1;
}
.cid-vehgfmIkmC .embla__slide .slide-content .item-wrapper .person-wrapper .person-wrap .name-wrapper .item-name {
  margin-bottom: 0;
}
.cid-vehgfmIkmC .embla__slide .slide-content .item-wrapper .person-wrapper .person-wrap .name-wrapper .item-role {
  margin-bottom: 0;
}
.cid-vehgfmIkmC .embla__button--next,
.cid-vehgfmIkmC .embla__button--prev {
  display: flex;
}
.cid-vehgfmIkmC .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-vehgfmIkmC .embla__button {
    bottom: 0;
  }
}
.cid-vehgfmIkmC .embla__button:hover {
  background-color: #86de2d !important;
  color: #ffffff !important;
}
.cid-vehgfmIkmC .embla__button:disabled {
  opacity: .5 !important;
  background-color: #2b2b2b !important;
  color: #ffffff !important;
}
.cid-vehgfmIkmC .embla__button.embla__button--prev {
  left: 0;
}
.cid-vehgfmIkmC .embla__button.embla__button--next {
  right: 0;
}
.cid-vehgfmIkmC .embla {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 10%;
}
@media (max-width: 992px) {
  .cid-vehgfmIkmC .embla {
    padding: 0;
    padding-bottom: 4rem;
  }
}
.cid-vehgfmIkmC .embla__viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0;
}
@media (max-width: 768px) {
  .cid-vehgfmIkmC .embla__viewport {
    padding: 0;
  }
}
.cid-vehgfmIkmC .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vehgfmIkmC .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vehgfmIkmC .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vehgfmIkmC .item-menu-overlay {
  opacity: 0 !important;
}
.cid-vehgfmIkmC .item-text {
  color: #ffffff;
}
.cid-vehgfmIkmC .item-name {
  color: #ffffff;
}
.cid-vehgfmIkmC .item-role {
  color: #a8a8a8;
}
.cid-vehgfmIkmC .mbr-star {
  color: #f5b614;
}
.cid-vehvFsphd1 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #232323;
}
.cid-vehvFsphd1 .title {
  margin-bottom: 2rem;
}
.cid-vehvFsphd1 .mbr-section-subtitle {
  color: #767676;
}
.cid-vehvFsphd1 a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-vehvFsphd1 a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-vehvFsphd1 .form-group {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-vehvFsphd1 .input-group-btn {
  display: block;
  text-align: left;
}
.cid-vehvFsphd1 h3 {
  color: #444;
  letter-spacing: 0.03em;
}
.cid-vehvFsphd1 .form-control {
  border-radius: 0px !important;
  padding-left: 15px;
}
.cid-vehvFsphd1 .google-map {
  width: 100%;
  height: 25rem;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}
.cid-vehvFsphd1 .google-map iframe {
  width: inherit;
  height: 100%;
}
.cid-vehvFsphd1 .google-map [data-state-details] {
  color: #444444;
  font-family: Muli;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-vehvFsphd1 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-vehvFsphd1 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-vehvFsphd1 textarea.form-control {
  min-height: 154px;
}
@media (max-width: 991px) {
  .cid-vehvFsphd1 .mbr-section-title {
    text-align: center;
  }
  .cid-vehvFsphd1 .mbr-section-subtitle {
    text-align: center;
  }
  .cid-vehvFsphd1 .input-group-btn {
    text-align: center;
  }
}
.cid-vehvFsphd1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vehvFsphd1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vehvFsphd1 H2 {
  color: #ffffff;
}
.cid-vehgfnIh9P {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vehgfnIh9P .mbr-fallback-image.disabled {
  display: none;
}
.cid-vehgfnIh9P .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vehgfnIh9P .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-vehgfnIh9P .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-vehgfnIh9P .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vehgfnIh9P .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vehgfnIh9P .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vehgfnIh9P .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vehgfnIh9P .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-vehgfnIh9P .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-vehgfoqYu1 {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-vehgfoqYu1 section {
  position: relative;
}
.cid-vehgfoqYu1 h4 {
  margin: 0;
}
.cid-vehgfoqYu1 img {
  height: 100px;
  padding-rigth: 8px;
}
.cid-vehgfoqYu1 a {
  font-weight: 300;
}
.cid-vehgfoqYu1 .img1 {
  color: #86de2d;
}
.cid-vehgfoqYu1 .img2 {
  color: #86de2d;
}
.cid-vehgfoqYu1 .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #86de2d;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-vehgfoqYu1 .media-wrap {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-vehgfoqYu1 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-vehgfoqYu1 .item,
.cid-vehgfoqYu1 .link {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-vehgfoqYu1 .item h4,
.cid-vehgfoqYu1 .link h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-vehgfoqYu1 .link {
  border-bottom: 1px solid #4a535e;
}
@media (max-width: 767px) {
  .cid-vehgfoqYu1 .item {
    justify-content: center;
  }
}
.cid-vehgfoqYu1 .item-title {
  color: #ffffff;
  text-align: left;
}
.cid-vehgfoqYu1 .text1 {
  text-align: left;
}
.cid-vehgfoqYu1 .link-title {
  text-align: left;
}
.cid-vehgfphHlO {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-vehgfphHlO .mbr-text {
  color: #f6f6ef;
}
