body {
  font-family: Barlow;
}
.display-1 {
  font-family: 'Barlow', sans-serif;
  font-size: 4.4rem;
  letter-spacing: -1px;
}
.display-1 > .mbr-iconfont {
  font-size: 7.04rem;
}
.display-2 {
  font-family: 'Barlow', sans-serif;
  font-size: 2.3rem;
}
.display-2 > .mbr-iconfont {
  font-size: 3.68rem;
}
.display-4 {
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.44rem;
}
.display-5 {
  font-family: 'Barlow', sans-serif;
  font-size: 1.2rem;
  letter-spacing: -1px;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.92rem;
}
.display-7 {
  font-family: 'Barlow', sans-serif;
  font-size: 1.1rem;
  line-height: 1.4;
}
.display-7 > .mbr-iconfont {
  font-size: 1.76rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.52rem;
    font-size: calc( 2.19rem + (4.4 - 2.19) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.19rem + (4.4 - 2.19) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.84rem;
    font-size: calc( 1.455rem + (2.3 - 1.455) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.455rem + (2.3 - 1.455) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.72rem;
    font-size: calc( 0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    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: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #ff5800 !important;
}
.bg-success {
  background-color: #ff5800 !important;
}
.bg-info {
  background-color: #c1c1c1 !important;
}
.bg-warning {
  background-color: #767676 !important;
}
.bg-danger {
  background-color: #333333 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ff5800 !important;
  border-color: #ff5800 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #ff8a4d !important;
  border-color: #ff8a4d !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #ff8a4d !important;
  border-color: #ff8a4d !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ffda00 !important;
  border-color: #ffda00 !important;
  color: #000000 !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #000000 !important;
  background-color: #ffe54d !important;
  border-color: #ffe54d !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #000000 !important;
  background-color: #ffe54d !important;
  border-color: #ffe54d !important;
}
.btn-info,
.btn-info:active {
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #e7e7e7 !important;
  border-color: #e7e7e7 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #e7e7e7 !important;
  border-color: #e7e7e7 !important;
}
.btn-success,
.btn-success:active {
  background-color: #ff5800 !important;
  border-color: #ff5800 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #ff8a4d !important;
  border-color: #ff8a4d !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #ff8a4d !important;
  border-color: #ff8a4d !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #767676 !important;
  border-color: #767676 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #9c9c9c !important;
  border-color: #9c9c9c !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #9c9c9c !important;
  border-color: #9c9c9c !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #595959 !important;
  border-color: #595959 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #595959 !important;
  border-color: #595959 !important;
}
.btn-white {
  color: #222222 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-black,
.btn-black:active {
  background-color: #222222 !important;
  border-color: #222222 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #484848 !important;
  border-color: #484848 !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #484848 !important;
  border-color: #484848 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #993500;
  color: #993500;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #ff5800;
  border-color: #ff5800;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff5800 !important;
  border-color: #ff5800 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #998300;
  color: #998300;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #000000;
  background-color: #ffda00;
  border-color: #ffda00;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #000000 !important;
  background-color: #ffda00 !important;
  border-color: #ffda00 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #8e8e8e;
  color: #8e8e8e;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #c1c1c1;
  border-color: #c1c1c1;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #993500;
  color: #993500;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff;
  background-color: #ff5800;
  border-color: #ff5800;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #ff5800 !important;
  border-color: #ff5800 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #434343;
  color: #434343;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #767676;
  border-color: #767676;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #767676 !important;
  border-color: #767676 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #222222;
  border-color: #222222;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #222222 !important;
  border-color: #222222 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #ff5800 !important;
}
.text-secondary {
  color: #ffda00 !important;
}
.text-success {
  color: #ff5800 !important;
}
.text-info {
  color: #c1c1c1 !important;
}
.text-warning {
  color: #767676 !important;
}
.text-danger {
  color: #333333 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #ff9b66 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #ffe966 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #ff9b66 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #f4f4f4 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #a9a9a9 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #666666 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #ffffff !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #000000 !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #c1c1c1;
}
.alert-warning {
  background-color: #767676;
}
.alert-danger {
  background-color: #333333;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ff5800;
  border-color: #ff5800;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ff5800;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffdecc;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffdecc;
}
.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: #b6b6b6;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #a6a6a6;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Barlow', sans-serif;
  font-size: 1.1rem;
  line-height: 1.4;
}
.form-control > .mbr-iconfont {
  font-size: 1.76rem;
}
blockquote {
  border-color: #ff5800;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ff5800;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #ff5800;
  border-bottom-color: #ff5800;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #ff5800 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ffda00 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 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='%23ff5800' %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;
}
.cid-t1LM7uDwkg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t1LM7uDwkg .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t1LM7uDwkg .row {
  flex-direction: row-reverse;
}
.cid-t1LM7uDwkg img {
  width: 100%;
}
.cid-va6DD54cHa .navbar {
  padding: 0.5rem 0;
  background: #767676;
  transition: none;
  min-height: 77px;
}
.cid-va6DD54cHa .navbar-dropdown.bg-color.transparent.opened {
  background: #767676;
}
.cid-va6DD54cHa a {
  font-style: normal;
}
.cid-va6DD54cHa .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-va6DD54cHa .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  margin: 0.5rem 0.65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-va6DD54cHa .nav-item:focus,
.cid-va6DD54cHa .nav-link:focus {
  outline: none;
}
.cid-va6DD54cHa .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-va6DD54cHa .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-va6DD54cHa .menu-logo {
  margin-right: auto;
}
.cid-va6DD54cHa .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-va6DD54cHa .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-va6DD54cHa .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-va6DD54cHa .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-va6DD54cHa .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-va6DD54cHa .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-va6DD54cHa .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-va6DD54cHa .navbar-toggleable-sm .navbar-collapse {
  justify-content: center;
  padding-right: 5rem;
  width: auto;
}
.cid-va6DD54cHa .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-va6DD54cHa .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-va6DD54cHa .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-va6DD54cHa .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-align: left;
}
.cid-va6DD54cHa .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  color: #ff5800 !important;
  padding: 0 0.6rem !important;
  border-radius: 0;
  background: #ffffff;
}
.cid-va6DD54cHa .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-va6DD54cHa .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-va6DD54cHa .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-va6DD54cHa .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-va6DD54cHa .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-va6DD54cHa .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-va6DD54cHa .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-va6DD54cHa .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-va6DD54cHa .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-va6DD54cHa .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-va6DD54cHa button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-va6DD54cHa button.navbar-toggler:focus {
  outline: none;
}
.cid-va6DD54cHa button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-va6DD54cHa button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-va6DD54cHa button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-va6DD54cHa button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-va6DD54cHa button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-va6DD54cHa nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-va6DD54cHa nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-va6DD54cHa nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-va6DD54cHa nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-va6DD54cHa .dropdown-toggle:after {
  display: none;
}
.cid-va6DD54cHa .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-va6DD54cHa .collapsed .btn {
  display: -webkit-flex;
}
.cid-va6DD54cHa .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-va6DD54cHa .collapsed .navbar-collapse.collapsing,
.cid-va6DD54cHa .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-va6DD54cHa .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-va6DD54cHa .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-va6DD54cHa .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-va6DD54cHa .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-va6DD54cHa .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-va6DD54cHa .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-va6DD54cHa .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-va6DD54cHa .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-va6DD54cHa .collapsed button.navbar-toggler {
  display: block;
}
.cid-va6DD54cHa .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-va6DD54cHa .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-va6DD54cHa .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-va6DD54cHa .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-va6DD54cHa .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-va6DD54cHa .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
@media (max-width: 991px) {
  .cid-va6DD54cHa .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-va6DD54cHa img {
    height: 3.8rem !important;
  }
  .cid-va6DD54cHa .btn {
    display: -webkit-flex;
  }
  .cid-va6DD54cHa button.navbar-toggler {
    display: block;
  }
  .cid-va6DD54cHa .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-va6DD54cHa .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-va6DD54cHa .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-va6DD54cHa .navbar-collapse.collapsing,
  .cid-va6DD54cHa .navbar-collapse.show {
    display: block !important;
  }
  .cid-va6DD54cHa .navbar-collapse.collapsing .navbar-nav,
  .cid-va6DD54cHa .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-va6DD54cHa .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-va6DD54cHa .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-va6DD54cHa .navbar-collapse.collapsing .navbar-buttons,
  .cid-va6DD54cHa .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-va6DD54cHa .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-va6DD54cHa .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-va6DD54cHa .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-va6DD54cHa .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-va6DD54cHa .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-va6DD54cHa .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-va6DD54cHa .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-va6DD54cHa .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-va6DD54cHa .nav-link,
.cid-va6DD54cHa .dropdown-item {
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}
.cid-va6DD54cHa .nav-link:hover,
.cid-va6DD54cHa .dropdown-item:hover {
  color: #ffffff !important;
  border-bottom: 1px solid currentColor;
}
.cid-t1LzAsDye3 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t1LzAsDye3 .container-fluid {
  padding-right: 0;
  padding-left: 0;
}
.cid-t1LzAsDye3 .mbr-section-head {
  background-color: #ffffff;
  padding: 1rem 1rem 2rem;
}
.cid-t1LzAsDye3 .row {
  flex-direction: row-reverse;
}
.cid-t1LzAsDye3 img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-t1LzAsDye3 .display-1 {
    font-size: 70px;
  }
  .cid-t1LzAsDye3 .display-5 {
    font-size: 29px;
  }
  .cid-t1LzAsDye3 .display-7 {
    font-size: 22px;
  }
}
.cid-t1LzAsDye3 .mbr-section-title {
  text-align: center;
}
.cid-t1LzAsDye3 .mbr-section-subtitle {
  text-align: center;
}
.cid-t1LCKaGo7q {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t1LCKaGo7q .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t1LCKaGo7q .row {
  flex-direction: row-reverse;
}
.cid-t1LCKaGo7q img {
  width: 100%;
}
.cid-t1LJQpHATZ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t1LJQpHATZ .back {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65%;
  height: 100%;
  background-color: #ff5800;
}
.cid-t1LJQpHATZ img {
  width: 100%;
}
.cid-t1LJQpHATZ p {
  margin-top: 6rem;
}
.cid-t1LJQpHATZ .content-wrapper {
  max-width: 750px;
  margin: auto;
  position: relative;
  padding: 0 2rem;
}
.cid-t1LJQpHATZ .content-wrapper {
  padding-top: 6rem;
}
.cid-t1LJQpHATZ h4 {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  width: fit-content;
  padding: 0;
  margin: 0;
  right: 6rem;
  bottom: 0;
}
@media (max-width: 1200px) {
  .cid-t1LJQpHATZ .content-wrapper {
    padding-top: 0rem;
  }
  .cid-t1LJQpHATZ p {
    margin-top: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-t1LJQpHATZ .back {
    width: 100%;
    height: 75%;
  }
  .cid-t1LJQpHATZ .content-wrapper {
    padding: 0 3rem;
    padding-top: 4rem;
  }
  .cid-t1LJQpHATZ p {
    margin-top: 4rem;
  }
}
.cid-t1LJQpHATZ .content-wrapper {
  padding-right: 8rem;
}
@media (max-width: 767px) {
  .cid-t1LJQpHATZ .content-wrapper {
    padding: 0rem;
    padding-top: 4rem;
  }
  .cid-t1LJQpHATZ .content-wrapper {
    padding-right: 3rem;
  }
  .cid-t1LJQpHATZ h4 {
    right: 2rem;
  }
}
.cid-t1LJQpHATZ H3 {
  color: #ffffff;
}
.cid-t1LJQpHATZ .mbr-text,
.cid-t1LJQpHATZ .mbr-section-btn {
  color: #ffffff;
}
.cid-rpSfqF8N8V {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rpSfqF8N8V img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-rpSfqF8N8V img:hover {
  transform: scale(1.1);
}
.cid-rpSfqF8N8V .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-rpSfqF8N8V h2 {
  padding: 0;
  margin: 0;
}
.cid-rpSfqF8N8V .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-rpSfqF8N8V .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-rpSfqF8N8V .mbr-section-btn {
  position: absolute;
  bottom: 300px;
  left: 0;
  transform: rotate(90deg);
  transform-origin: bottom left;
}
.cid-rpSfqF8N8V .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 300px;
}
.cid-rpSfqF8N8V .mbr-section-btn .btn span {
  transform: rotate(-90deg);
}
.cid-rpSfqF8N8V .mbr-section-btn:hover span {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0!important;
}
.cid-rpSfqF8N8V .mbr-iconfont {
  margin: 0!important;
}
.cid-rpSfqF8N8V .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-rpSfqF8N8V .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-rpSfqF8N8V .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-rpSfqF8N8V .btn {
    padding: 0.6rem 0.8rem!important;
    min-width: 200px!important;
  }
  .cid-rpSfqF8N8V .text-col {
    padding: 2rem 1rem;
  }
}
.cid-rpSfqF8N8V H2 {
  color: #333333;
}
.cid-rpSfqF8N8V .mbr-text {
  color: #333333;
}
.cid-rpSfqF8N8V H1 {
  color: #ff5800;
}
.cid-ujXrLXlTUH {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efeeee;
}
.cid-ujXrLXlTUH .card-wrapper {
  position: relative;
  margin: 0.5rem;
}
.cid-ujXrLXlTUH .card-wrapper:hover img {
  transform: scale(1.1);
}
@media (max-width: 1400px) {
  .cid-ujXrLXlTUH .card-wrapper {
    margin: 0rem;
  }
}
.cid-ujXrLXlTUH .card {
  height: fit-content;
}
@media (min-width: 767px) {
  .cid-ujXrLXlTUH .row {
    padding: 0 4rem;
  }
}
.cid-ujXrLXlTUH .icon {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 1.5rem;
  transition: 0.3s;
  background: #ff5800;
}
.cid-ujXrLXlTUH .icon:hover {
  padding-right: 1rem;
  padding-left: 2rem;
}
.cid-ujXrLXlTUH .card-box {
  padding: 3rem 3rem 4rem 3rem;
  width: 100%;
}
.cid-ujXrLXlTUH .card1 {
  background-color: #333333;
}
.cid-ujXrLXlTUH .card2 {
  background-color: #ffffff;
}
.cid-ujXrLXlTUH .card3 {
  background-color: #333333;
}
.cid-ujXrLXlTUH .card4 {
  background-color: #333333;
}
.cid-ujXrLXlTUH img {
  width: 100%;
  transition: 5s;
  object-fit: cover;
}
.cid-ujXrLXlTUH .img-wrap {
  max-height: 200px;
  overflow: hidden;
}
.cid-ujXrLXlTUH .container {
  max-width: 1500px;
}
.cid-ujXrLXlTUH .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-ujXrLXlTUH .mbr-iconfont {
  font-size: 1.3rem;
  color: #333333;
  display: flex;
  justify-content: center;
}
.cid-ujXrLXlTUH P {
  color: #c1c1c1;
}
@media (max-width: 1200px) {
  .cid-ujXrLXlTUH .img-wrap {
    max-height: 180px;
  }
}
@media (max-width: 992px) {
  .cid-ujXrLXlTUH .card-box {
    margin: 0rem;
    padding: 2rem 2rem 6rem 2rem;
  }
  .cid-ujXrLXlTUH .col2,
  .cid-ujXrLXlTUH .col3,
  .cid-ujXrLXlTUH .col4 {
    margin-top: 0rem;
  }
  .cid-ujXrLXlTUH .img-wrap {
    max-height: 180px;
  }
}
@media (max-width: 767px) {
  .cid-ujXrLXlTUH .card-box {
    padding: 1rem 2rem 5rem 1rem;
  }
  .cid-ujXrLXlTUH .number {
    margin: auto;
  }
}
.cid-ujXrLXlTUH .mbr-text {
  color: #cccccc;
}
.cid-ujXrLXlTUH .text2 {
  color: #333333;
}
.cid-ujXrLXlTUH .text3 {
  color: #ffffff;
}
.cid-ujXrLXlTUH .title2 {
  color: #ff5800;
}
.cid-ujXrLXlTUH .title1 {
  color: #c1c1c1;
}
.cid-ujXrLXlTUH .title3 {
  color: #ff5800;
}
.cid-ujXrLXlTUH .title4 {
  color: #c1c1c1;
}
.cid-ujXrLXlTUH .text4 {
  color: #efeeee;
}
.cid-ujXrLXlTUH .text1 {
  color: #efeeee;
}
.cid-ujXrLXlTUH .title3 B {
  color: #c1c1c1;
}
.cid-ujXrLXlTUH H1 {
  color: #333333;
}
.cid-ujXrLXlTUH .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujXrLXlTUH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-rpSfqvjGS3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rpSfqvjGS3 img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-rpSfqvjGS3 img:hover {
  transform: scale(1.1);
}
.cid-rpSfqvjGS3 .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-rpSfqvjGS3 h2 {
  padding: 0;
  margin: 0;
}
.cid-rpSfqvjGS3 .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-rpSfqvjGS3 .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-rpSfqvjGS3 .mbr-section-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cid-rpSfqvjGS3 .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 400px;
}
.cid-rpSfqvjGS3 .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-rpSfqvjGS3 .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-rpSfqvjGS3 .btn {
    min-width: 200px!important;
    padding: 0.6rem 0.8rem!important;
  }
  .cid-rpSfqvjGS3 .text-col {
    padding: 2rem 1rem;
  }
}
.cid-rpSfqvjGS3 H2 {
  color: #333333;
}
.cid-rpSfqvjGS3 .mbr-text {
  color: #767676;
}
.cid-rpSfqvjGS3 H1 {
  color: #ff5800;
}
.cid-t1d2zJzFGU {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t1d2zJzFGU .container {
  max-width: 1500px;
}
.cid-t1d2zJzFGU img {
  width: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-t1d2zJzFGU img:hover {
  transform: scale(1.1);
}
.cid-t1d2zJzFGU .row {
  background: #ffffff;
}
.cid-t1d2zJzFGU .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
  max-height: 540px;
  margin-bottom: 4rem;
}
.cid-t1d2zJzFGU h2 {
  padding: 0;
  margin: 0;
}
.cid-t1d2zJzFGU .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t1d2zJzFGU .text-col {
  max-width: 700px;
  margin: auto;
  padding: 0 4rem 4rem 4rem;
}
.cid-t1d2zJzFGU .mbr-section-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cid-t1d2zJzFGU .mbr-section-btn .btn {
  margin: 0rem !important;
  min-width: 400px;
}
.cid-t1d2zJzFGU .number {
  border-top: 2px solid currentColor;
  padding-top: 0.4rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 1200px) {
  .cid-t1d2zJzFGU .row {
    margin: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-t1d2zJzFGU .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-t1d2zJzFGU .btn {
    min-width: 200px !important;
    padding: 0.6rem 0.8rem !important;
  }
  .cid-t1d2zJzFGU .row {
    margin: 0rem;
  }
  .cid-t1d2zJzFGU .text-col {
    padding: 2rem 1rem;
  }
  .cid-t1d2zJzFGU .number {
    margin-right: 2rem;
  }
  .cid-t1d2zJzFGU .img-col {
    margin-bottom: 3rem;
  }
}
.cid-t1d2zJzFGU H2 {
  color: #ff5800;
}
.cid-t1d2zJzFGU .mbr-text {
  color: #333333;
}
.cid-v7tgDd1FKp {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #282124;
}
.cid-v7tgDd1FKp .content-block {
  max-width: 700px;
  padding: 4rem 3rem;
}
.cid-v7tgDd1FKp .img-content {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0%;
  height: 100%;
  opacity: 0;
  transition: all 0.3s;
  transition-delay: 0s;
  background-image: url("../../../assets/images/estadio1-2000x1500.jpeg");
  background-position: center;
  background-size: cover;
  z-index: 1;
}
.cid-v7tgDd1FKp .overlay {
  transition: all 0.3s;
  transition-delay: 0.3s;
  width: 0%;
  height: 100%;
  top: 0;
  right: 0;
  position: absolute;
  background: #ff5800;
}
.cid-v7tgDd1FKp .wrap {
  width: 100%;
  min-height: 400px;
  position: relative;
  display: flex;
  justify-content: flex-end;
}
.cid-v7tgDd1FKp .wrap:hover .overlay {
  width: 100%;
  transition-delay: 0s;
}
.cid-v7tgDd1FKp .wrap:hover .img-content {
  opacity: 1;
  transition-delay: 0.3s;
}
.cid-v7tgDd1FKp .wrap:hover .box-title2,
.cid-v7tgDd1FKp .wrap:hover .box-text2 {
  color: #ffffff;
  transition-delay: 0.3s;
}
.cid-v7tgDd1FKp .wrap:hover .box-content {
  transition-delay: 0.3s;
  background: transparent;
}
.cid-v7tgDd1FKp .box-title2,
.cid-v7tgDd1FKp .box-text2 {
  transition: all 0.3s;
  transition-delay: 0s;
}
.cid-v7tgDd1FKp .box-content {
  transition: all 0.3s;
  background: #ff5800;
  width: 50%;
}
.cid-v7tgDd1FKp .content-box {
  padding: 4rem 3rem;
  z-index: 2;
  position: relative;
}
@media (max-width: 767px) {
  .cid-v7tgDd1FKp .img-content {
    opacity: 1;
  }
  .cid-v7tgDd1FKp .box-title2,
  .cid-v7tgDd1FKp .box-text2 {
    color: #ffffff !important;
  }
  .cid-v7tgDd1FKp .content-block,
  .cid-v7tgDd1FKp .box-content {
    padding: 3rem 1rem;
  }
  .cid-v7tgDd1FKp .wrap {
    min-height: 300px;
  }
  .cid-v7tgDd1FKp .box-content {
    width: 100%;
    background: transparent;
  }
}
.cid-v7tgDd1FKp H2 {
  color: #ff5800;
}
.cid-v7tgDd1FKp H3 {
  color: #ffffff;
}
.cid-v7tgDd1FKp .mbr-text,
.cid-v7tgDd1FKp .mbr-section-btn {
  color: #ffffff;
}
.cid-v7tfXYFXES {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ff5800;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-v7tfXYFXES .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7tfXYFXES .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v7tfXYFXES .container-fluid {
    padding: 0.5rem;
  }
}
@media (min-width: 767px) {
  .cid-v7tfXYFXES .container-fluid {
    padding: 0 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v7tfXYFXES .container-fluid {
    padding: 0 1.7rem;
  }
}
.cid-v7tfXYFXES .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7tfXYFXES .mbr-gallery-item > div:hover:before {
  z-index: 5;
}
.cid-v7tfXYFXES .mbr-gallery-item > div:hover .icon-focus {
  opacity: 0.8 !important;
}
.cid-v7tfXYFXES .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7tfXYFXES .mbr-gallery-item > div:hover:before {
  opacity: 0 !important;
}
.cid-v7tfXYFXES .mbr-gallery-item:hover img {
  transform: scale(1.1);
}
.cid-v7tfXYFXES .icon-focus {
  font-family: 'Moririse2' !important;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  background: white;
  border-radius: 6px;
}
.cid-v7tfXYFXES .icon-focus:before {
  content: '\e970';
  font-size: 1.2rem;
  color: black;
}
.cid-v7tfXYFXES .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7tfXYFXES .mbr-gallery-item > div {
  overflow: hidden;
}
.cid-v7tfXYFXES .mbr-gallery-item img {
  transition: all 2s !important;
}
.cid-v7tfXYFXES .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v7tfXYFXES .mbr-gallery-title {
  font-size: 0.9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 5;
}
.cid-v7tfXYFXES .mbr-gallery-title:before {
  content: ' ';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #000000 !important;
  opacity: 0;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v62KKPVkmt {
  padding-top: 5rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-v62KKPVkmt .carousel-inner {
  margin-bottom: 70px;
}
.cid-v62KKPVkmt .slider__content {
  padding-top: 52px;
  text-align: left;
}
.cid-v62KKPVkmt .mbr-section-subtitle {
  color: #ffffff;
  margin-bottom: 13px;
  position: relative;
  z-index: 1;
}
.cid-v62KKPVkmt .mbr-section-title {
  margin-bottom: 33px;
  color: #ff5800;
}
.cid-v62KKPVkmt .slider__image {
  margin-left: 11.8%;
}
.cid-v62KKPVkmt .img-wrap {
  max-width: 100%;
}
.cid-v62KKPVkmt .img-wrap img {
  width: 100%;
  object-fit: cover;
}
.cid-v62KKPVkmt .carousel-indicators {
  flex-direction: column;
  margin: 0;
  width: fit-content;
  transition: all 0.25s;
  height: 100%;
  left: 44.5%;
}
.cid-v62KKPVkmt .carousel-indicators .active {
  background: #ff5800;
  opacity: 1;
  border: none;
}
.cid-v62KKPVkmt .carousel-indicators .active:before {
  content: '';
  display: block;
  position: absolute;
  top: -14px;
  left: -14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: inherit;
  opacity: 0.2;
}
.cid-v62KKPVkmt .carousel-indicators li {
  width: 12px;
  height: 12px;
  border: none;
  margin-bottom: 30px;
  box-sizing: border-box;
  background-color: #ff5800;
  border-radius: 50%;
  position: relative;
  opacity: 0.2;
}
.cid-v62KKPVkmt .carousel-indicators li:last-child {
  margin-bottom: 0px;
}
.cid-v62KKPVkmt .carousel-controls a {
  border-radius: 50%;
  border: 2px solid #ff5800;
  background-color: transparent;
}
.cid-v62KKPVkmt .carousel-controls a span {
  transition: all 0.3s;
  color: #ff5800;
  font-size: 18px;
}
.cid-v62KKPVkmt .carousel-controls a:hover .mobi-mbri-left {
  transform: translateX(-5px);
}
.cid-v62KKPVkmt .carousel-controls a:hover .mobi-mbri-right {
  transform: translateX(5px);
}
.cid-v62KKPVkmt .carousel-controls .carousel-control-next,
.cid-v62KKPVkmt .carousel-controls .carousel-control-prev {
  opacity: 1;
  width: 44px;
  height: 44px;
}
.cid-v62KKPVkmt .carousel-controls .carousel-control-next {
  right: 40%;
  bottom: 5px;
  top: auto;
  left: auto;
}
.cid-v62KKPVkmt .carousel-controls .carousel-control-prev {
  right: 45%;
  bottom: 5px;
  top: auto;
  left: auto;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v62KKPVkmt .image-element {
    min-width: 50%;
  }
  .cid-v62KKPVkmt .media-container-row {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-v62KKPVkmt .two__background:before {
    max-width: 90%;
  }
  .cid-v62KKPVkmt .carousel-indicators {
    flex-direction: row;
    height: 50px;
    width: 100%;
    left: auto;
    bottom: 0;
    right: auto;
  }
  .cid-v62KKPVkmt .carousel-indicators li {
    margin: 0 16px;
  }
  .cid-v62KKPVkmt .slider__content {
    padding-top: 0;
    margin-bottom: 72px;
  }
  .cid-v62KKPVkmt .mbr-section-subtitle {
    margin-bottom: 6px;
  }
  .cid-v62KKPVkmt .mbr-section-subtitle:after {
    content: none;
  }
  .cid-v62KKPVkmt .mbr-section-title {
    margin-bottom: 18px;
  }
  .cid-v62KKPVkmt .slider__image {
    margin-left: 0;
    margin-bottom: 100px;
  }
  .cid-v62KKPVkmt .img-wrap {
    width: 100%;
  }
  .cid-v62KKPVkmt .carousel-controls {
    display: none;
  }
  .cid-v62KKPVkmt .carousel-inner {
    margin-bottom: 0;
  }
}
.cid-v62KKPVkmt .mbr-text {
  color: #282124;
}
.cid-v7ImKG9NMa {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #c1c1c1;
}
@media (max-width: 992px) {
  .cid-v7ImKG9NMa {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
.cid-v7ImKG9NMa .text {
  padding: 0;
}
.cid-v7ImKG9NMa section {
  position: relative;
}
.cid-v7ImKG9NMa h3 {
  padding-bottom: 0;
  margin-bottom: 0;
}
.cid-v7ImKG9NMa .mbr-iconfont {
  padding: 0 !important;
}
.cid-v7ImKG9NMa .back {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #c1c1c1;
}
.cid-v7ImKG9NMa .box {
  background-image: url("../../../assets/images/captura-de-ecr-2022-11-19-192931-1065x596.jpg");
  background-size: cover;
  background-position: center;
  height: 550px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v7ImKG9NMa .icon-wrap {
  background-color: #ff5800 !important;
  width: 80px;
  height: 80px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-v7ImKG9NMa .icon-wrap:hover {
  transform: scale(1.1);
}
.cid-v7ImKG9NMa .icon-wrap span {
  padding-left: 8px;
}
.cid-v7ImKG9NMa .mbr-media span {
  font-size: 30px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #1c1c1c !important;
}
.cid-v7ImKG9NMa .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-v7ImKG9NMa .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-v7ImKG9NMa .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-v7ImKG9NMa .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-v7ImKG9NMa a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-v7ImKG9NMa a.close:hover {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-v7ImKG9NMa {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .cid-v7ImKG9NMa .box {
    height: 250px;
  }
  .cid-v7ImKG9NMa .row {
    padding: 1rem !important;
  }
}
.cid-v7ImKG9NMa .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7ImKG9NMa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7tjijasCc {
  padding-top: 5rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-v7tjijasCc .carousel-inner {
  margin-bottom: 70px;
}
.cid-v7tjijasCc .slider__content {
  padding-top: 52px;
  text-align: left;
}
.cid-v7tjijasCc .mbr-section-subtitle {
  color: #ffffff;
  margin-bottom: 13px;
  position: relative;
  z-index: 1;
}
.cid-v7tjijasCc .mbr-section-title {
  margin-bottom: 33px;
  color: #ff5800;
}
.cid-v7tjijasCc .slider__image {
  margin-left: 11.8%;
}
.cid-v7tjijasCc .img-wrap {
  max-width: 100%;
}
.cid-v7tjijasCc .img-wrap img {
  width: 100%;
  object-fit: cover;
}
.cid-v7tjijasCc .carousel-indicators {
  flex-direction: column;
  margin: 0;
  width: fit-content;
  transition: all 0.25s;
  height: 100%;
  left: 44.5%;
}
.cid-v7tjijasCc .carousel-indicators .active {
  background: #ff5800;
  opacity: 1;
  border: none;
}
.cid-v7tjijasCc .carousel-indicators .active:before {
  content: '';
  display: block;
  position: absolute;
  top: -14px;
  left: -14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: inherit;
  opacity: 0.2;
}
.cid-v7tjijasCc .carousel-indicators li {
  width: 12px;
  height: 12px;
  border: none;
  margin-bottom: 30px;
  box-sizing: border-box;
  background-color: #ff5800;
  border-radius: 50%;
  position: relative;
  opacity: 0.2;
}
.cid-v7tjijasCc .carousel-indicators li:last-child {
  margin-bottom: 0px;
}
.cid-v7tjijasCc .carousel-controls a {
  border-radius: 50%;
  border: 2px solid #ff5800;
  background-color: transparent;
}
.cid-v7tjijasCc .carousel-controls a span {
  transition: all 0.3s;
  color: #ff5800;
  font-size: 18px;
}
.cid-v7tjijasCc .carousel-controls a:hover .mobi-mbri-left {
  transform: translateX(-5px);
}
.cid-v7tjijasCc .carousel-controls a:hover .mobi-mbri-right {
  transform: translateX(5px);
}
.cid-v7tjijasCc .carousel-controls .carousel-control-next,
.cid-v7tjijasCc .carousel-controls .carousel-control-prev {
  opacity: 1;
  width: 44px;
  height: 44px;
}
.cid-v7tjijasCc .carousel-controls .carousel-control-next {
  right: 40%;
  bottom: 5px;
  top: auto;
  left: auto;
}
.cid-v7tjijasCc .carousel-controls .carousel-control-prev {
  right: 45%;
  bottom: 5px;
  top: auto;
  left: auto;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v7tjijasCc .image-element {
    min-width: 50%;
  }
  .cid-v7tjijasCc .media-container-row {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-v7tjijasCc .two__background:before {
    max-width: 90%;
  }
  .cid-v7tjijasCc .carousel-indicators {
    flex-direction: row;
    height: 50px;
    width: 100%;
    left: auto;
    bottom: 0;
    right: auto;
  }
  .cid-v7tjijasCc .carousel-indicators li {
    margin: 0 16px;
  }
  .cid-v7tjijasCc .slider__content {
    padding-top: 0;
    margin-bottom: 72px;
  }
  .cid-v7tjijasCc .mbr-section-subtitle {
    margin-bottom: 6px;
  }
  .cid-v7tjijasCc .mbr-section-subtitle:after {
    content: none;
  }
  .cid-v7tjijasCc .mbr-section-title {
    margin-bottom: 18px;
  }
  .cid-v7tjijasCc .slider__image {
    margin-left: 0;
    margin-bottom: 100px;
  }
  .cid-v7tjijasCc .img-wrap {
    width: 100%;
  }
  .cid-v7tjijasCc .carousel-controls {
    display: none;
  }
  .cid-v7tjijasCc .carousel-inner {
    margin-bottom: 0;
  }
}
.cid-v7tjijasCc .mbr-text {
  color: #282124;
}
.cid-t1dohSvQDX {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t1dohSvQDX img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-t1dohSvQDX img:hover {
  transform: scale(1.1);
}
.cid-t1dohSvQDX .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-t1dohSvQDX h2 {
  padding: 0;
  margin: 0;
}
.cid-t1dohSvQDX .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t1dohSvQDX .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-t1dohSvQDX .mbr-section-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cid-t1dohSvQDX .mbr-section-btn .btn {
  margin: 0rem !important;
  min-width: 400px;
}
.cid-t1dohSvQDX .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-t1dohSvQDX .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-t1dohSvQDX .btn {
    min-width: 200px !important;
    padding: 0.6rem 0.8rem !important;
  }
  .cid-t1dohSvQDX .text-col {
    padding: 2rem 1rem;
  }
}
.cid-t1dohSvQDX H2 {
  color: #333333;
}
.cid-t1dohSvQDX .mbr-text {
  color: #333333;
}
.cid-t1dohSvQDX H1 {
  color: #ff5800;
}
.cid-v7tkOJ8wpJ {
  padding-top: 5rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-v7tkOJ8wpJ .slider__content {
  padding-top: 52px;
  text-align: left;
}
.cid-v7tkOJ8wpJ .mbr-section-subtitle {
  color: #ffffff;
  margin-bottom: 13px;
  position: relative;
  z-index: 1;
}
.cid-v7tkOJ8wpJ .mbr-section-subtitle:after {
  content: '';
  position: absolute;
  left: -92px;
  top: 147px;
  width: 85px;
  height: 85px;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../../../assets/images/compass.svg");
}
.cid-v7tkOJ8wpJ .mbr-section-title {
  margin-bottom: 33px;
  color: #ff5800;
}
.cid-v7tkOJ8wpJ .slider__image {
  margin-left: 11.8%;
}
.cid-v7tkOJ8wpJ .img-wrap {
  max-width: 100%;
}
.cid-v7tkOJ8wpJ .img-wrap img {
  width: 100%;
  object-fit: cover;
}
.cid-v7tkOJ8wpJ .carousel-indicators {
  flex-direction: column;
  margin: 0;
  width: fit-content;
  transition: all 0.25s;
  height: 100%;
  left: 44.5%;
}
.cid-v7tkOJ8wpJ .carousel-indicators .active {
  background: #ff5800;
  opacity: 1;
  border: none;
}
.cid-v7tkOJ8wpJ .carousel-indicators .active:before {
  content: '';
  display: block;
  position: absolute;
  top: -14px;
  left: -14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: inherit;
  opacity: 0.2;
}
.cid-v7tkOJ8wpJ .carousel-indicators li {
  width: 12px;
  height: 12px;
  border: none;
  margin-bottom: 30px;
  box-sizing: border-box;
  background-color: #ff5800;
  border-radius: 50%;
  position: relative;
  opacity: 0.2;
}
.cid-v7tkOJ8wpJ .carousel-indicators li:last-child {
  margin-bottom: 0px;
}
.cid-v7tkOJ8wpJ .carousel-controls a {
  border-radius: 50%;
  border: 2px solid #ff5800;
  background-color: transparent;
}
.cid-v7tkOJ8wpJ .carousel-controls a span {
  transition: all 0.3s;
  color: #ff5800;
  font-size: 18px;
}
.cid-v7tkOJ8wpJ .carousel-controls a:hover .mobi-mbri-left {
  transform: translateX(-5px);
}
.cid-v7tkOJ8wpJ .carousel-controls a:hover .mobi-mbri-right {
  transform: translateX(5px);
}
.cid-v7tkOJ8wpJ .carousel-controls .carousel-control-next,
.cid-v7tkOJ8wpJ .carousel-controls .carousel-control-prev {
  opacity: 1;
  width: 44px;
  height: 44px;
}
.cid-v7tkOJ8wpJ .carousel-controls .carousel-control-next {
  right: 40%;
  bottom: 5px;
  top: auto;
  left: auto;
}
.cid-v7tkOJ8wpJ .carousel-controls .carousel-control-prev {
  right: 45%;
  bottom: 5px;
  top: auto;
  left: auto;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v7tkOJ8wpJ .image-element {
    min-width: 50%;
  }
  .cid-v7tkOJ8wpJ .media-container-row {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-v7tkOJ8wpJ .two__background:before {
    max-width: 90%;
  }
  .cid-v7tkOJ8wpJ .carousel-indicators {
    flex-direction: row;
    height: 50px;
    width: 100%;
    left: auto;
    bottom: 0;
    right: auto;
  }
  .cid-v7tkOJ8wpJ .carousel-indicators li {
    margin: 0 16px;
  }
  .cid-v7tkOJ8wpJ .slider__content {
    padding-top: 0;
    margin-bottom: 72px;
  }
  .cid-v7tkOJ8wpJ .mbr-section-subtitle {
    margin-bottom: 6px;
  }
  .cid-v7tkOJ8wpJ .mbr-section-subtitle:after {
    content: none;
  }
  .cid-v7tkOJ8wpJ .mbr-section-title {
    margin-bottom: 18px;
  }
  .cid-v7tkOJ8wpJ .slider__image {
    margin-left: 0;
    margin-bottom: 100px;
  }
  .cid-v7tkOJ8wpJ .img-wrap {
    width: 100%;
  }
  .cid-v7tkOJ8wpJ .carousel-controls {
    display: none;
  }
  .cid-v7tkOJ8wpJ .carousel-inner {
    margin-bottom: 0;
  }
}
.cid-v7tkOJ8wpJ .mbr-text {
  color: #ffffff;
}
.cid-ujZH2WQY5k {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ujZH2WQY5k .item-subtitle {
  line-height: 1.2;
  color: #838383;
  text-align: left;
}
.cid-ujZH2WQY5k img,
.cid-ujZH2WQY5k .item-img {
  width: 100%;
}
.cid-ujZH2WQY5k .item:focus,
.cid-ujZH2WQY5k span:focus {
  outline: none;
}
.cid-ujZH2WQY5k .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-ujZH2WQY5k .item {
    margin-bottom: 1rem;
  }
}
.cid-ujZH2WQY5k .item-wrapper {
  position: relative;
  border-radius: 4px;
  display: flex;
  flex-flow: column nowrap;
}
.cid-ujZH2WQY5k .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ujZH2WQY5k .mbr-section-title {
  color: #ff5800;
  text-align: left;
}
.cid-ujZH2WQY5k .mbr-text,
.cid-ujZH2WQY5k .mbr-section-btn {
  color: #767676;
  text-align: left;
}
.cid-ujZH2WQY5k .item-title {
  color: #ff5800;
  text-align: left;
}
.cid-ujZH2WQY5k .mbr-section-subtitle {
  color: #ff5800;
  text-align: left;
}
.cid-t1gHCWhn6w {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-t1gHCWhn6w .content {
    text-align: center;
  }
  .cid-t1gHCWhn6w .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t1gHCWhn6w .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-t1gHCWhn6w .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-t1gHCWhn6w .media-wrap img {
  height: 6rem;
}
.cid-t1gHCWhn6w .mbr-text {
  color: #8d97ad;
}
.cid-t1gHCWhn6w .p-title {
  font-size: 17px;
}
.cid-t1gHCWhn6w .p-title span {
  color: #111111;
}
.cid-t1gHCWhn6w .title-card {
  font-size: 1.3rem;
}
.cid-t1gHCWhn6w .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-t1gHCWhn6w .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-t1gHCWhn6w .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-t1gHCWhn6w .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-t1gHCWhn6w .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-t1gHCWhn6w .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t1gHCWhn6w .copyright img {
  margin-right: 10px;
}
.cid-t1gHCWhn6w .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #767676;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-t1gHCWhn6w .icon-transition span:hover {
  background-color: #ff5800;
}
@media (max-width: 767px) {
  .cid-t1gHCWhn6w .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-t1gHCWhn6w .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-t1gHCWhn6w .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t1gHCWhn6w .p-title,
.cid-t1gHCWhn6w .social-media {
  color: #767676;
}
.cid-t1gHCWhn6w H5 {
  color: #ff5800;
}
.cid-t1gHCWhn6w .copyright > p {
  color: #767676;
}
.cid-t1LAGQDB51 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t1LAGQDB51 .container-fluid {
  padding-right: 0;
  padding-left: 0;
}
.cid-t1LAGQDB51 .mbr-section-head {
  background-color: #ffffff;
  padding: 1rem 1rem 2rem;
}
.cid-t1LAGQDB51 .row {
  flex-direction: row-reverse;
}
.cid-t1LAGQDB51 img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-t1LAGQDB51 .display-1 {
    font-size: 70px;
  }
  .cid-t1LAGQDB51 .display-5 {
    font-size: 29px;
  }
  .cid-t1LAGQDB51 .display-7 {
    font-size: 22px;
  }
}
.cid-t1LAGQDB51 .mbr-section-title {
  text-align: center;
}
.cid-t1LAGQDB51 .mbr-section-subtitle {
  text-align: center;
}
.cid-va6EIjKKaK .navbar {
  padding: 0.5rem 0;
  background: #767676;
  transition: none;
  min-height: 77px;
}
.cid-va6EIjKKaK .navbar-dropdown.bg-color.transparent.opened {
  background: #767676;
}
.cid-va6EIjKKaK a {
  font-style: normal;
}
.cid-va6EIjKKaK .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-va6EIjKKaK .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  margin: 0.5rem 0.65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-va6EIjKKaK .nav-item:focus,
.cid-va6EIjKKaK .nav-link:focus {
  outline: none;
}
.cid-va6EIjKKaK .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-va6EIjKKaK .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-va6EIjKKaK .menu-logo {
  margin-right: auto;
}
.cid-va6EIjKKaK .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-va6EIjKKaK .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-va6EIjKKaK .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-va6EIjKKaK .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-va6EIjKKaK .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-va6EIjKKaK .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-va6EIjKKaK .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-va6EIjKKaK .navbar-toggleable-sm .navbar-collapse {
  justify-content: center;
  padding-right: 5rem;
  width: auto;
}
.cid-va6EIjKKaK .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-va6EIjKKaK .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-va6EIjKKaK .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-va6EIjKKaK .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-align: left;
}
.cid-va6EIjKKaK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  color: #ff5800 !important;
  padding: 0 0.6rem !important;
  border-radius: 0;
  background: #ffffff;
}
.cid-va6EIjKKaK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-va6EIjKKaK .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-va6EIjKKaK .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-va6EIjKKaK .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-va6EIjKKaK .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-va6EIjKKaK .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-va6EIjKKaK .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-va6EIjKKaK .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-va6EIjKKaK .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-va6EIjKKaK .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-va6EIjKKaK button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-va6EIjKKaK button.navbar-toggler:focus {
  outline: none;
}
.cid-va6EIjKKaK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-va6EIjKKaK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-va6EIjKKaK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-va6EIjKKaK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-va6EIjKKaK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-va6EIjKKaK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-va6EIjKKaK nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-va6EIjKKaK nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-va6EIjKKaK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-va6EIjKKaK .dropdown-toggle:after {
  display: none;
}
.cid-va6EIjKKaK .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-va6EIjKKaK .collapsed .btn {
  display: -webkit-flex;
}
.cid-va6EIjKKaK .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-va6EIjKKaK .collapsed .navbar-collapse.collapsing,
.cid-va6EIjKKaK .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-va6EIjKKaK .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-va6EIjKKaK .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-va6EIjKKaK .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-va6EIjKKaK .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-va6EIjKKaK .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-va6EIjKKaK .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-va6EIjKKaK .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-va6EIjKKaK .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-va6EIjKKaK .collapsed button.navbar-toggler {
  display: block;
}
.cid-va6EIjKKaK .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-va6EIjKKaK .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-va6EIjKKaK .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-va6EIjKKaK .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-va6EIjKKaK .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-va6EIjKKaK .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
@media (max-width: 991px) {
  .cid-va6EIjKKaK .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-va6EIjKKaK img {
    height: 3.8rem !important;
  }
  .cid-va6EIjKKaK .btn {
    display: -webkit-flex;
  }
  .cid-va6EIjKKaK button.navbar-toggler {
    display: block;
  }
  .cid-va6EIjKKaK .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-va6EIjKKaK .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-va6EIjKKaK .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-va6EIjKKaK .navbar-collapse.collapsing,
  .cid-va6EIjKKaK .navbar-collapse.show {
    display: block !important;
  }
  .cid-va6EIjKKaK .navbar-collapse.collapsing .navbar-nav,
  .cid-va6EIjKKaK .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-va6EIjKKaK .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-va6EIjKKaK .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-va6EIjKKaK .navbar-collapse.collapsing .navbar-buttons,
  .cid-va6EIjKKaK .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-va6EIjKKaK .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-va6EIjKKaK .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-va6EIjKKaK .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-va6EIjKKaK .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-va6EIjKKaK .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-va6EIjKKaK .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-va6EIjKKaK .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-va6EIjKKaK .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-va6EIjKKaK .nav-link,
.cid-va6EIjKKaK .dropdown-item {
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}
.cid-va6EIjKKaK .nav-link:hover,
.cid-va6EIjKKaK .dropdown-item:hover {
  color: #ffffff !important;
  border-bottom: 1px solid currentColor;
}
.cid-t1LIC9G5YP {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t1LIC9G5YP .container-fluid {
  padding-right: 0;
  padding-left: 0;
}
.cid-t1LIC9G5YP .mbr-section-head {
  background-color: #ffffff;
  padding: 1rem 1rem 2rem;
}
.cid-t1LIC9G5YP .row {
  flex-direction: row-reverse;
}
.cid-t1LIC9G5YP img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-t1LIC9G5YP .display-1 {
    font-size: 70px;
  }
  .cid-t1LIC9G5YP .display-5 {
    font-size: 29px;
  }
  .cid-t1LIC9G5YP .display-7 {
    font-size: 22px;
  }
}
.cid-t1LIC9G5YP .mbr-section-title {
  text-align: center;
}
.cid-t1LIC9G5YP .mbr-section-subtitle {
  text-align: center;
}
.cid-t1LIpTO0Ho {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t1LIpTO0Ho .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t1LIpTO0Ho .row {
  flex-direction: row-reverse;
}
.cid-t1LIpTO0Ho img {
  width: 100%;
}
.cid-t1LQpFvFMr {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t1LQpFvFMr .back {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65%;
  height: 100%;
  background-color: #ff5800;
}
.cid-t1LQpFvFMr img {
  width: 100%;
}
.cid-t1LQpFvFMr p {
  margin-top: 6rem;
}
.cid-t1LQpFvFMr .content-wrapper {
  max-width: 750px;
  margin: auto;
  position: relative;
  padding: 0 2rem;
}
.cid-t1LQpFvFMr .content-wrapper {
  padding-top: 6rem;
}
.cid-t1LQpFvFMr h4 {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  width: fit-content;
  padding: 0;
  margin: 0;
  right: 6rem;
  bottom: 0;
}
@media (max-width: 1200px) {
  .cid-t1LQpFvFMr .content-wrapper {
    padding-top: 0rem;
  }
  .cid-t1LQpFvFMr p {
    margin-top: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-t1LQpFvFMr .back {
    width: 100%;
    height: 75%;
  }
  .cid-t1LQpFvFMr .content-wrapper {
    padding: 0 3rem;
    padding-top: 4rem;
  }
  .cid-t1LQpFvFMr p {
    margin-top: 4rem;
  }
}
.cid-t1LQpFvFMr .content-wrapper {
  padding-right: 8rem;
}
@media (max-width: 767px) {
  .cid-t1LQpFvFMr .content-wrapper {
    padding: 0rem;
    padding-top: 4rem;
  }
  .cid-t1LQpFvFMr .content-wrapper {
    padding-right: 3rem;
  }
  .cid-t1LQpFvFMr h4 {
    right: 2rem;
  }
}
.cid-t1LQpFvFMr H3 {
  color: #ffffff;
}
.cid-t1LQpFvFMr .mbr-text,
.cid-t1LQpFvFMr .mbr-section-btn {
  color: #ffffff;
}
.cid-t1evlmGXB9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t1evlmGXB9 img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-t1evlmGXB9 img:hover {
  transform: scale(1.1);
}
.cid-t1evlmGXB9 .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-t1evlmGXB9 h2 {
  padding: 0;
  margin: 0;
}
.cid-t1evlmGXB9 .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t1evlmGXB9 .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-t1evlmGXB9 .mbr-section-btn {
  position: absolute;
  bottom: 300px;
  left: 0;
  transform: rotate(90deg);
  transform-origin: bottom left;
}
.cid-t1evlmGXB9 .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 300px;
}
.cid-t1evlmGXB9 .mbr-section-btn .btn span {
  transform: rotate(-90deg);
}
.cid-t1evlmGXB9 .mbr-section-btn:hover span {
  transform: rotate(-90deg) translateX(0.6rem);
  margin: 0!important;
}
.cid-t1evlmGXB9 .mbr-iconfont {
  margin: 0!important;
}
.cid-t1evlmGXB9 .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-t1evlmGXB9 .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-t1evlmGXB9 .mbr-section-btn {
    bottom: 0px;
    left: 0;
    transform: rotate(0deg);
  }
  .cid-t1evlmGXB9 .btn {
    padding: 0.6rem 0.8rem!important;
    min-width: 200px!important;
  }
  .cid-t1evlmGXB9 .text-col {
    padding: 2rem 1rem;
  }
}
.cid-t1evlmGXB9 H2 {
  color: #333333;
}
.cid-t1evlmGXB9 .mbr-text {
  color: #333333;
}
.cid-t1evlmGXB9 H1 {
  color: #ff5800;
}
.cid-ujZPJTOsiQ {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efeeee;
}
.cid-ujZPJTOsiQ .card-wrapper {
  position: relative;
  margin: 0.5rem;
}
.cid-ujZPJTOsiQ .card-wrapper:hover img {
  transform: scale(1.1);
}
@media (max-width: 1400px) {
  .cid-ujZPJTOsiQ .card-wrapper {
    margin: 0rem;
  }
}
.cid-ujZPJTOsiQ .card {
  height: fit-content;
}
@media (min-width: 767px) {
  .cid-ujZPJTOsiQ .row {
    padding: 0 4rem;
  }
}
.cid-ujZPJTOsiQ .icon {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 1.5rem;
  transition: 0.3s;
  background: #ff5800;
}
.cid-ujZPJTOsiQ .icon:hover {
  padding-right: 1rem;
  padding-left: 2rem;
}
.cid-ujZPJTOsiQ .card-box {
  padding: 3rem 3rem 4rem 3rem;
  width: 100%;
}
.cid-ujZPJTOsiQ .card1 {
  background-color: #333333;
}
.cid-ujZPJTOsiQ .card2 {
  background-color: #ffffff;
}
.cid-ujZPJTOsiQ .card3 {
  background-color: #333333;
}
.cid-ujZPJTOsiQ .card4 {
  background-color: #333333;
}
.cid-ujZPJTOsiQ img {
  width: 100%;
  transition: 5s;
  object-fit: cover;
}
.cid-ujZPJTOsiQ .img-wrap {
  max-height: 200px;
  overflow: hidden;
}
.cid-ujZPJTOsiQ .container {
  max-width: 1500px;
}
.cid-ujZPJTOsiQ .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-ujZPJTOsiQ .mbr-iconfont {
  font-size: 1.3rem;
  color: #333333;
  display: flex;
  justify-content: center;
}
.cid-ujZPJTOsiQ P {
  color: #c1c1c1;
}
@media (max-width: 1200px) {
  .cid-ujZPJTOsiQ .img-wrap {
    max-height: 180px;
  }
}
@media (max-width: 992px) {
  .cid-ujZPJTOsiQ .card-box {
    margin: 0rem;
    padding: 2rem 2rem 6rem 2rem;
  }
  .cid-ujZPJTOsiQ .col2,
  .cid-ujZPJTOsiQ .col3,
  .cid-ujZPJTOsiQ .col4 {
    margin-top: 0rem;
  }
  .cid-ujZPJTOsiQ .img-wrap {
    max-height: 180px;
  }
}
@media (max-width: 767px) {
  .cid-ujZPJTOsiQ .card-box {
    padding: 1rem 2rem 5rem 1rem;
  }
  .cid-ujZPJTOsiQ .number {
    margin: auto;
  }
}
.cid-ujZPJTOsiQ .mbr-text {
  color: #cccccc;
}
.cid-ujZPJTOsiQ .text2 {
  color: #333333;
}
.cid-ujZPJTOsiQ .text3 {
  color: #ffffff;
}
.cid-ujZPJTOsiQ .title2 {
  color: #ff5800;
}
.cid-ujZPJTOsiQ .title1 {
  color: #c1c1c1;
}
.cid-ujZPJTOsiQ .title3 {
  color: #ff5800;
}
.cid-ujZPJTOsiQ .title4 {
  color: #c1c1c1;
}
.cid-ujZPJTOsiQ .text4 {
  color: #efeeee;
}
.cid-ujZPJTOsiQ .text1 {
  color: #efeeee;
}
.cid-ujZPJTOsiQ .title3 B {
  color: #c1c1c1;
}
.cid-ujZPJTOsiQ H1 {
  color: #333333;
}
.cid-ujZPJTOsiQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujZPJTOsiQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t1evlmQXMJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t1evlmQXMJ img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-t1evlmQXMJ img:hover {
  transform: scale(1.1);
}
.cid-t1evlmQXMJ .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-t1evlmQXMJ h2 {
  padding: 0;
  margin: 0;
}
.cid-t1evlmQXMJ .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t1evlmQXMJ .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-t1evlmQXMJ .mbr-section-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cid-t1evlmQXMJ .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 400px;
}
.cid-t1evlmQXMJ .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-t1evlmQXMJ .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-t1evlmQXMJ .btn {
    min-width: 200px!important;
    padding: 0.6rem 0.8rem!important;
  }
  .cid-t1evlmQXMJ .text-col {
    padding: 2rem 1rem;
  }
}
.cid-t1evlmQXMJ H2 {
  color: #333333;
}
.cid-t1evlmQXMJ .mbr-text {
  color: #767676;
}
.cid-t1evlmQXMJ H1 {
  color: #ff5800;
}
.cid-t1evlmZszi {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t1evlmZszi .container {
  max-width: 1500px;
}
.cid-t1evlmZszi img {
  width: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-t1evlmZszi img:hover {
  transform: scale(1.1);
}
.cid-t1evlmZszi .row {
  background: #ffffff;
}
.cid-t1evlmZszi .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
  max-height: 540px;
  margin-bottom: 4rem;
}
.cid-t1evlmZszi h2 {
  padding: 0;
  margin: 0;
}
.cid-t1evlmZszi .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t1evlmZszi .text-col {
  max-width: 700px;
  margin: auto;
  padding: 0 4rem 4rem 4rem;
}
.cid-t1evlmZszi .mbr-section-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cid-t1evlmZszi .mbr-section-btn .btn {
  margin: 0rem !important;
  min-width: 400px;
}
.cid-t1evlmZszi .number {
  border-top: 2px solid currentColor;
  padding-top: 0.4rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 1200px) {
  .cid-t1evlmZszi .row {
    margin: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-t1evlmZszi .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-t1evlmZszi .btn {
    min-width: 200px !important;
    padding: 0.6rem 0.8rem !important;
  }
  .cid-t1evlmZszi .row {
    margin: 0rem;
  }
  .cid-t1evlmZszi .text-col {
    padding: 2rem 1rem;
  }
  .cid-t1evlmZszi .number {
    margin-right: 2rem;
  }
  .cid-t1evlmZszi .img-col {
    margin-bottom: 3rem;
  }
}
.cid-t1evlmZszi H2 {
  color: #ff5800;
}
.cid-t1evlmZszi .mbr-text {
  color: #333333;
}
.cid-v7tmuwQFXE {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #282124;
}
.cid-v7tmuwQFXE .content-block {
  max-width: 700px;
  padding: 4rem 3rem;
}
.cid-v7tmuwQFXE .img-content {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0%;
  height: 100%;
  opacity: 0;
  transition: all 0.3s;
  transition-delay: 0s;
  background-image: url("../../../assets/images/estadio1-2000x1500.jpeg");
  background-position: center;
  background-size: cover;
  z-index: 1;
}
.cid-v7tmuwQFXE .overlay {
  transition: all 0.3s;
  transition-delay: 0.3s;
  width: 0%;
  height: 100%;
  top: 0;
  right: 0;
  position: absolute;
  background: #ff5800;
}
.cid-v7tmuwQFXE .wrap {
  width: 100%;
  min-height: 400px;
  position: relative;
  display: flex;
  justify-content: flex-end;
}
.cid-v7tmuwQFXE .wrap:hover .overlay {
  width: 100%;
  transition-delay: 0s;
}
.cid-v7tmuwQFXE .wrap:hover .img-content {
  opacity: 1;
  transition-delay: 0.3s;
}
.cid-v7tmuwQFXE .wrap:hover .box-title2,
.cid-v7tmuwQFXE .wrap:hover .box-text2 {
  color: #ffffff;
  transition-delay: 0.3s;
}
.cid-v7tmuwQFXE .wrap:hover .box-content {
  transition-delay: 0.3s;
  background: transparent;
}
.cid-v7tmuwQFXE .box-title2,
.cid-v7tmuwQFXE .box-text2 {
  transition: all 0.3s;
  transition-delay: 0s;
}
.cid-v7tmuwQFXE .box-content {
  transition: all 0.3s;
  background: #ff5800;
  width: 50%;
}
.cid-v7tmuwQFXE .content-box {
  padding: 4rem 3rem;
  z-index: 2;
  position: relative;
}
@media (max-width: 767px) {
  .cid-v7tmuwQFXE .img-content {
    opacity: 1;
  }
  .cid-v7tmuwQFXE .box-title2,
  .cid-v7tmuwQFXE .box-text2 {
    color: #ffffff !important;
  }
  .cid-v7tmuwQFXE .content-block,
  .cid-v7tmuwQFXE .box-content {
    padding: 3rem 1rem;
  }
  .cid-v7tmuwQFXE .wrap {
    min-height: 300px;
  }
  .cid-v7tmuwQFXE .box-content {
    width: 100%;
    background: transparent;
  }
}
.cid-v7tmuwQFXE H2 {
  color: #ff5800;
}
.cid-v7tmuwQFXE H3 {
  color: #ffffff;
}
.cid-v7tmuwQFXE .mbr-text,
.cid-v7tmuwQFXE .mbr-section-btn {
  color: #ffffff;
}
.cid-v7tmvpyvzH {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ff5800;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-v7tmvpyvzH .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v7tmvpyvzH .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v7tmvpyvzH .container-fluid {
    padding: 0.5rem;
  }
}
@media (min-width: 767px) {
  .cid-v7tmvpyvzH .container-fluid {
    padding: 0 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v7tmvpyvzH .container-fluid {
    padding: 0 1.7rem;
  }
}
.cid-v7tmvpyvzH .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7tmvpyvzH .mbr-gallery-item > div:hover:before {
  z-index: 5;
}
.cid-v7tmvpyvzH .mbr-gallery-item > div:hover .icon-focus {
  opacity: 0.8 !important;
}
.cid-v7tmvpyvzH .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v7tmvpyvzH .mbr-gallery-item > div:hover:before {
  opacity: 0 !important;
}
.cid-v7tmvpyvzH .mbr-gallery-item:hover img {
  transform: scale(1.1);
}
.cid-v7tmvpyvzH .icon-focus {
  font-family: 'Moririse2' !important;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  background: white;
  border-radius: 6px;
}
.cid-v7tmvpyvzH .icon-focus:before {
  content: '\e970';
  font-size: 1.2rem;
  color: black;
}
.cid-v7tmvpyvzH .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v7tmvpyvzH .mbr-gallery-item > div {
  overflow: hidden;
}
.cid-v7tmvpyvzH .mbr-gallery-item img {
  transition: all 2s !important;
}
.cid-v7tmvpyvzH .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v7tmvpyvzH .mbr-gallery-title {
  font-size: 0.9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 5;
}
.cid-v7tmvpyvzH .mbr-gallery-title:before {
  content: ' ';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #000000 !important;
  opacity: 0;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v7tmyU2WMH {
  padding-top: 5rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-v7tmyU2WMH .carousel-inner {
  margin-bottom: 70px;
}
.cid-v7tmyU2WMH .slider__content {
  padding-top: 52px;
  text-align: left;
}
.cid-v7tmyU2WMH .mbr-section-subtitle {
  color: #ffffff;
  margin-bottom: 13px;
  position: relative;
  z-index: 1;
}
.cid-v7tmyU2WMH .mbr-section-title {
  margin-bottom: 33px;
  color: #ff5800;
}
.cid-v7tmyU2WMH .slider__image {
  margin-left: 11.8%;
}
.cid-v7tmyU2WMH .img-wrap {
  max-width: 100%;
}
.cid-v7tmyU2WMH .img-wrap img {
  width: 100%;
  object-fit: cover;
}
.cid-v7tmyU2WMH .carousel-indicators {
  flex-direction: column;
  margin: 0;
  width: fit-content;
  transition: all 0.25s;
  height: 100%;
  left: 44.5%;
}
.cid-v7tmyU2WMH .carousel-indicators .active {
  background: #ff5800;
  opacity: 1;
  border: none;
}
.cid-v7tmyU2WMH .carousel-indicators .active:before {
  content: '';
  display: block;
  position: absolute;
  top: -14px;
  left: -14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: inherit;
  opacity: 0.2;
}
.cid-v7tmyU2WMH .carousel-indicators li {
  width: 12px;
  height: 12px;
  border: none;
  margin-bottom: 30px;
  box-sizing: border-box;
  background-color: #ff5800;
  border-radius: 50%;
  position: relative;
  opacity: 0.2;
}
.cid-v7tmyU2WMH .carousel-indicators li:last-child {
  margin-bottom: 0px;
}
.cid-v7tmyU2WMH .carousel-controls a {
  border-radius: 50%;
  border: 2px solid #ff5800;
  background-color: transparent;
}
.cid-v7tmyU2WMH .carousel-controls a span {
  transition: all 0.3s;
  color: #ff5800;
  font-size: 18px;
}
.cid-v7tmyU2WMH .carousel-controls a:hover .mobi-mbri-left {
  transform: translateX(-5px);
}
.cid-v7tmyU2WMH .carousel-controls a:hover .mobi-mbri-right {
  transform: translateX(5px);
}
.cid-v7tmyU2WMH .carousel-controls .carousel-control-next,
.cid-v7tmyU2WMH .carousel-controls .carousel-control-prev {
  opacity: 1;
  width: 44px;
  height: 44px;
}
.cid-v7tmyU2WMH .carousel-controls .carousel-control-next {
  right: 40%;
  bottom: 5px;
  top: auto;
  left: auto;
}
.cid-v7tmyU2WMH .carousel-controls .carousel-control-prev {
  right: 45%;
  bottom: 5px;
  top: auto;
  left: auto;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v7tmyU2WMH .image-element {
    min-width: 50%;
  }
  .cid-v7tmyU2WMH .media-container-row {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-v7tmyU2WMH .two__background:before {
    max-width: 90%;
  }
  .cid-v7tmyU2WMH .carousel-indicators {
    flex-direction: row;
    height: 50px;
    width: 100%;
    left: auto;
    bottom: 0;
    right: auto;
  }
  .cid-v7tmyU2WMH .carousel-indicators li {
    margin: 0 16px;
  }
  .cid-v7tmyU2WMH .slider__content {
    padding-top: 0;
    margin-bottom: 72px;
  }
  .cid-v7tmyU2WMH .mbr-section-subtitle {
    margin-bottom: 6px;
  }
  .cid-v7tmyU2WMH .mbr-section-subtitle:after {
    content: none;
  }
  .cid-v7tmyU2WMH .mbr-section-title {
    margin-bottom: 18px;
  }
  .cid-v7tmyU2WMH .slider__image {
    margin-left: 0;
    margin-bottom: 100px;
  }
  .cid-v7tmyU2WMH .img-wrap {
    width: 100%;
  }
  .cid-v7tmyU2WMH .carousel-controls {
    display: none;
  }
  .cid-v7tmyU2WMH .carousel-inner {
    margin-bottom: 0;
  }
}
.cid-v7tmyU2WMH .mbr-text {
  color: #282124;
}
.cid-v7InKe1R97 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #c1c1c1;
}
@media (max-width: 992px) {
  .cid-v7InKe1R97 {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
.cid-v7InKe1R97 .text {
  padding: 0;
}
.cid-v7InKe1R97 section {
  position: relative;
}
.cid-v7InKe1R97 h3 {
  padding-bottom: 0;
  margin-bottom: 0;
}
.cid-v7InKe1R97 .mbr-iconfont {
  padding: 0 !important;
}
.cid-v7InKe1R97 .back {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #c1c1c1;
}
.cid-v7InKe1R97 .box {
  background-image: url("../../../assets/images/captura-de-ecr-2022-11-19-192931-1065x596.jpg");
  background-size: cover;
  background-position: center;
  height: 550px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v7InKe1R97 .icon-wrap {
  background-color: #ff5800 !important;
  width: 80px;
  height: 80px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-v7InKe1R97 .icon-wrap:hover {
  transform: scale(1.1);
}
.cid-v7InKe1R97 .icon-wrap span {
  padding-left: 8px;
}
.cid-v7InKe1R97 .mbr-media span {
  font-size: 30px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #1c1c1c !important;
}
.cid-v7InKe1R97 .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-v7InKe1R97 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-v7InKe1R97 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-v7InKe1R97 .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-v7InKe1R97 a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-v7InKe1R97 a.close:hover {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-v7InKe1R97 {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .cid-v7InKe1R97 .box {
    height: 250px;
  }
  .cid-v7InKe1R97 .row {
    padding: 1rem !important;
  }
}
.cid-v7InKe1R97 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7InKe1R97 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7IiXoMNTL {
  padding-top: 5rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-v7IiXoMNTL .carousel-inner {
  margin-bottom: 70px;
}
.cid-v7IiXoMNTL .slider__content {
  padding-top: 52px;
  text-align: left;
}
.cid-v7IiXoMNTL .mbr-section-subtitle {
  color: #ffffff;
  margin-bottom: 13px;
  position: relative;
  z-index: 1;
}
.cid-v7IiXoMNTL .mbr-section-title {
  margin-bottom: 33px;
  color: #ff5800;
}
.cid-v7IiXoMNTL .slider__image {
  margin-left: 11.8%;
}
.cid-v7IiXoMNTL .img-wrap {
  max-width: 100%;
}
.cid-v7IiXoMNTL .img-wrap img {
  width: 100%;
  object-fit: cover;
}
.cid-v7IiXoMNTL .carousel-indicators {
  flex-direction: column;
  margin: 0;
  width: fit-content;
  transition: all 0.25s;
  height: 100%;
  left: 44.5%;
}
.cid-v7IiXoMNTL .carousel-indicators .active {
  background: #ff5800;
  opacity: 1;
  border: none;
}
.cid-v7IiXoMNTL .carousel-indicators .active:before {
  content: '';
  display: block;
  position: absolute;
  top: -14px;
  left: -14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: inherit;
  opacity: 0.2;
}
.cid-v7IiXoMNTL .carousel-indicators li {
  width: 12px;
  height: 12px;
  border: none;
  margin-bottom: 30px;
  box-sizing: border-box;
  background-color: #ff5800;
  border-radius: 50%;
  position: relative;
  opacity: 0.2;
}
.cid-v7IiXoMNTL .carousel-indicators li:last-child {
  margin-bottom: 0px;
}
.cid-v7IiXoMNTL .carousel-controls a {
  border-radius: 50%;
  border: 2px solid #ff5800;
  background-color: transparent;
}
.cid-v7IiXoMNTL .carousel-controls a span {
  transition: all 0.3s;
  color: #ff5800;
  font-size: 18px;
}
.cid-v7IiXoMNTL .carousel-controls a:hover .mobi-mbri-left {
  transform: translateX(-5px);
}
.cid-v7IiXoMNTL .carousel-controls a:hover .mobi-mbri-right {
  transform: translateX(5px);
}
.cid-v7IiXoMNTL .carousel-controls .carousel-control-next,
.cid-v7IiXoMNTL .carousel-controls .carousel-control-prev {
  opacity: 1;
  width: 44px;
  height: 44px;
}
.cid-v7IiXoMNTL .carousel-controls .carousel-control-next {
  right: 40%;
  bottom: 5px;
  top: auto;
  left: auto;
}
.cid-v7IiXoMNTL .carousel-controls .carousel-control-prev {
  right: 45%;
  bottom: 5px;
  top: auto;
  left: auto;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v7IiXoMNTL .image-element {
    min-width: 50%;
  }
  .cid-v7IiXoMNTL .media-container-row {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-v7IiXoMNTL .two__background:before {
    max-width: 90%;
  }
  .cid-v7IiXoMNTL .carousel-indicators {
    flex-direction: row;
    height: 50px;
    width: 100%;
    left: auto;
    bottom: 0;
    right: auto;
  }
  .cid-v7IiXoMNTL .carousel-indicators li {
    margin: 0 16px;
  }
  .cid-v7IiXoMNTL .slider__content {
    padding-top: 0;
    margin-bottom: 72px;
  }
  .cid-v7IiXoMNTL .mbr-section-subtitle {
    margin-bottom: 6px;
  }
  .cid-v7IiXoMNTL .mbr-section-subtitle:after {
    content: none;
  }
  .cid-v7IiXoMNTL .mbr-section-title {
    margin-bottom: 18px;
  }
  .cid-v7IiXoMNTL .slider__image {
    margin-left: 0;
    margin-bottom: 100px;
  }
  .cid-v7IiXoMNTL .img-wrap {
    width: 100%;
  }
  .cid-v7IiXoMNTL .carousel-controls {
    display: none;
  }
  .cid-v7IiXoMNTL .carousel-inner {
    margin-bottom: 0;
  }
}
.cid-v7IiXoMNTL .mbr-text {
  color: #282124;
}
.cid-t1evlnCVMk {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t1evlnCVMk img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-t1evlnCVMk img:hover {
  transform: scale(1.1);
}
.cid-t1evlnCVMk .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-t1evlnCVMk h2 {
  padding: 0;
  margin: 0;
}
.cid-t1evlnCVMk .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t1evlnCVMk .text-col {
  max-width: 650px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-t1evlnCVMk .mbr-section-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cid-t1evlnCVMk .mbr-section-btn .btn {
  margin: 0rem !important;
  min-width: 400px;
}
.cid-t1evlnCVMk .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-t1evlnCVMk .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-t1evlnCVMk .btn {
    min-width: 200px !important;
    padding: 0.6rem 0.8rem !important;
  }
  .cid-t1evlnCVMk .text-col {
    padding: 2rem 1rem;
  }
}
.cid-t1evlnCVMk H2 {
  color: #333333;
}
.cid-t1evlnCVMk .mbr-text {
  color: #333333;
}
.cid-t1evlnCVMk H1 {
  color: #ff5800;
}
.cid-v62TXQZADf {
  padding-top: 5rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-v62TXQZADf .slider__content {
  padding-top: 52px;
  text-align: left;
}
.cid-v62TXQZADf .mbr-section-subtitle {
  color: #ffffff;
  margin-bottom: 13px;
  position: relative;
  z-index: 1;
}
.cid-v62TXQZADf .mbr-section-subtitle:after {
  content: '';
  position: absolute;
  left: -92px;
  top: 147px;
  width: 85px;
  height: 85px;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../../../assets/images/compass.svg");
}
.cid-v62TXQZADf .mbr-section-title {
  margin-bottom: 33px;
  color: #ff5800;
}
.cid-v62TXQZADf .slider__image {
  margin-left: 11.8%;
}
.cid-v62TXQZADf .img-wrap {
  max-width: 100%;
}
.cid-v62TXQZADf .img-wrap img {
  width: 100%;
  object-fit: cover;
}
.cid-v62TXQZADf .carousel-indicators {
  flex-direction: column;
  margin: 0;
  width: fit-content;
  transition: all 0.25s;
  height: 100%;
  left: 44.5%;
}
.cid-v62TXQZADf .carousel-indicators .active {
  background: #ff5800;
  opacity: 1;
  border: none;
}
.cid-v62TXQZADf .carousel-indicators .active:before {
  content: '';
  display: block;
  position: absolute;
  top: -14px;
  left: -14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: inherit;
  opacity: 0.2;
}
.cid-v62TXQZADf .carousel-indicators li {
  width: 12px;
  height: 12px;
  border: none;
  margin-bottom: 30px;
  box-sizing: border-box;
  background-color: #ff5800;
  border-radius: 50%;
  position: relative;
  opacity: 0.2;
}
.cid-v62TXQZADf .carousel-indicators li:last-child {
  margin-bottom: 0px;
}
.cid-v62TXQZADf .carousel-controls a {
  border-radius: 50%;
  border: 2px solid #ff5800;
  background-color: transparent;
}
.cid-v62TXQZADf .carousel-controls a span {
  transition: all 0.3s;
  color: #ff5800;
  font-size: 18px;
}
.cid-v62TXQZADf .carousel-controls a:hover .mobi-mbri-left {
  transform: translateX(-5px);
}
.cid-v62TXQZADf .carousel-controls a:hover .mobi-mbri-right {
  transform: translateX(5px);
}
.cid-v62TXQZADf .carousel-controls .carousel-control-next,
.cid-v62TXQZADf .carousel-controls .carousel-control-prev {
  opacity: 1;
  width: 44px;
  height: 44px;
}
.cid-v62TXQZADf .carousel-controls .carousel-control-next {
  right: 40%;
  bottom: 5px;
  top: auto;
  left: auto;
}
.cid-v62TXQZADf .carousel-controls .carousel-control-prev {
  right: 45%;
  bottom: 5px;
  top: auto;
  left: auto;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v62TXQZADf .image-element {
    min-width: 50%;
  }
  .cid-v62TXQZADf .media-container-row {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-v62TXQZADf .two__background:before {
    max-width: 90%;
  }
  .cid-v62TXQZADf .carousel-indicators {
    flex-direction: row;
    height: 50px;
    width: 100%;
    left: auto;
    bottom: 0;
    right: auto;
  }
  .cid-v62TXQZADf .carousel-indicators li {
    margin: 0 16px;
  }
  .cid-v62TXQZADf .slider__content {
    padding-top: 0;
    margin-bottom: 72px;
  }
  .cid-v62TXQZADf .mbr-section-subtitle {
    margin-bottom: 6px;
  }
  .cid-v62TXQZADf .mbr-section-subtitle:after {
    content: none;
  }
  .cid-v62TXQZADf .mbr-section-title {
    margin-bottom: 18px;
  }
  .cid-v62TXQZADf .slider__image {
    margin-left: 0;
    margin-bottom: 100px;
  }
  .cid-v62TXQZADf .img-wrap {
    width: 100%;
  }
  .cid-v62TXQZADf .carousel-controls {
    display: none;
  }
  .cid-v62TXQZADf .carousel-inner {
    margin-bottom: 0;
  }
}
.cid-v62TXQZADf .mbr-text {
  color: #ffffff;
}
.cid-v7tmDbH9bs {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v7tmDbH9bs .item-subtitle {
  line-height: 1.2;
  color: #838383;
  text-align: left;
}
.cid-v7tmDbH9bs img,
.cid-v7tmDbH9bs .item-img {
  width: 100%;
}
.cid-v7tmDbH9bs .item:focus,
.cid-v7tmDbH9bs span:focus {
  outline: none;
}
.cid-v7tmDbH9bs .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-v7tmDbH9bs .item {
    margin-bottom: 1rem;
  }
}
.cid-v7tmDbH9bs .item-wrapper {
  position: relative;
  border-radius: 4px;
  display: flex;
  flex-flow: column nowrap;
}
.cid-v7tmDbH9bs .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v7tmDbH9bs .mbr-section-title {
  color: #ff5800;
  text-align: left;
}
.cid-v7tmDbH9bs .mbr-text,
.cid-v7tmDbH9bs .mbr-section-btn {
  color: #767676;
  text-align: left;
}
.cid-v7tmDbH9bs .item-title {
  color: #ff5800;
  text-align: left;
}
.cid-v7tmDbH9bs .mbr-section-subtitle {
  color: #ff5800;
  text-align: left;
}
.cid-t1gDbIOxsZ {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-t1gDbIOxsZ .content {
    text-align: center;
  }
  .cid-t1gDbIOxsZ .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t1gDbIOxsZ .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-t1gDbIOxsZ .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-t1gDbIOxsZ .media-wrap img {
  height: 6rem;
}
.cid-t1gDbIOxsZ .mbr-text {
  color: #8d97ad;
}
.cid-t1gDbIOxsZ .p-title {
  font-size: 17px;
}
.cid-t1gDbIOxsZ .p-title span {
  color: #111111;
}
.cid-t1gDbIOxsZ .title-card {
  font-size: 1.3rem;
}
.cid-t1gDbIOxsZ .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-t1gDbIOxsZ .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-t1gDbIOxsZ .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-t1gDbIOxsZ .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-t1gDbIOxsZ .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-t1gDbIOxsZ .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t1gDbIOxsZ .copyright img {
  margin-right: 10px;
}
.cid-t1gDbIOxsZ .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #767676;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-t1gDbIOxsZ .icon-transition span:hover {
  background-color: #ff5800;
}
@media (max-width: 767px) {
  .cid-t1gDbIOxsZ .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-t1gDbIOxsZ .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-t1gDbIOxsZ .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t1gDbIOxsZ .p-title,
.cid-t1gDbIOxsZ .social-media {
  color: #333333;
}
.cid-t1gDbIOxsZ H5 {
  color: #ff5800;
}
.cid-t1gDbIOxsZ .copyright > p {
  color: #767676;
}
.cid-t1LI3S9kBg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t1LI3S9kBg .container-fluid {
  padding-right: 0;
  padding-left: 0;
}
.cid-t1LI3S9kBg .mbr-section-head {
  background-color: #ffffff;
  padding: 1rem 1rem 2rem;
}
.cid-t1LI3S9kBg .row {
  flex-direction: row-reverse;
}
.cid-t1LI3S9kBg img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-t1LI3S9kBg .display-1 {
    font-size: 70px;
  }
  .cid-t1LI3S9kBg .display-5 {
    font-size: 29px;
  }
  .cid-t1LI3S9kBg .display-7 {
    font-size: 22px;
  }
}
.cid-t1LI3S9kBg .mbr-section-title {
  text-align: center;
}
.cid-t1LI3S9kBg .mbr-section-subtitle {
  text-align: center;
}
.cid-va6Ez1P5sE .navbar {
  padding: 0.5rem 0;
  background: #767676;
  transition: none;
  min-height: 77px;
}
.cid-va6Ez1P5sE .navbar-dropdown.bg-color.transparent.opened {
  background: #767676;
}
.cid-va6Ez1P5sE a {
  font-style: normal;
}
.cid-va6Ez1P5sE .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-va6Ez1P5sE .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  margin: 0.5rem 0.65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-va6Ez1P5sE .nav-item:focus,
.cid-va6Ez1P5sE .nav-link:focus {
  outline: none;
}
.cid-va6Ez1P5sE .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-va6Ez1P5sE .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-va6Ez1P5sE .menu-logo {
  margin-right: auto;
}
.cid-va6Ez1P5sE .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-va6Ez1P5sE .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-va6Ez1P5sE .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-va6Ez1P5sE .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-va6Ez1P5sE .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-va6Ez1P5sE .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-va6Ez1P5sE .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-va6Ez1P5sE .navbar-toggleable-sm .navbar-collapse {
  justify-content: center;
  padding-right: 5rem;
  width: auto;
}
.cid-va6Ez1P5sE .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-va6Ez1P5sE .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-va6Ez1P5sE .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-va6Ez1P5sE .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-align: left;
}
.cid-va6Ez1P5sE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  color: #ff5800 !important;
  padding: 0 0.6rem !important;
  border-radius: 0;
  background: #ffffff;
}
.cid-va6Ez1P5sE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-va6Ez1P5sE .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-va6Ez1P5sE .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-va6Ez1P5sE .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-va6Ez1P5sE .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-va6Ez1P5sE .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-va6Ez1P5sE .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-va6Ez1P5sE .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-va6Ez1P5sE .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-va6Ez1P5sE .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-va6Ez1P5sE button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-va6Ez1P5sE button.navbar-toggler:focus {
  outline: none;
}
.cid-va6Ez1P5sE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-va6Ez1P5sE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-va6Ez1P5sE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-va6Ez1P5sE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-va6Ez1P5sE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-va6Ez1P5sE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-va6Ez1P5sE nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-va6Ez1P5sE nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-va6Ez1P5sE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-va6Ez1P5sE .dropdown-toggle:after {
  display: none;
}
.cid-va6Ez1P5sE .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-va6Ez1P5sE .collapsed .btn {
  display: -webkit-flex;
}
.cid-va6Ez1P5sE .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-va6Ez1P5sE .collapsed .navbar-collapse.collapsing,
.cid-va6Ez1P5sE .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-va6Ez1P5sE .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-va6Ez1P5sE .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-va6Ez1P5sE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-va6Ez1P5sE .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-va6Ez1P5sE .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-va6Ez1P5sE .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-va6Ez1P5sE .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-va6Ez1P5sE .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-va6Ez1P5sE .collapsed button.navbar-toggler {
  display: block;
}
.cid-va6Ez1P5sE .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-va6Ez1P5sE .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-va6Ez1P5sE .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-va6Ez1P5sE .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-va6Ez1P5sE .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-va6Ez1P5sE .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
@media (max-width: 991px) {
  .cid-va6Ez1P5sE .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-va6Ez1P5sE img {
    height: 3.8rem !important;
  }
  .cid-va6Ez1P5sE .btn {
    display: -webkit-flex;
  }
  .cid-va6Ez1P5sE button.navbar-toggler {
    display: block;
  }
  .cid-va6Ez1P5sE .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-va6Ez1P5sE .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-va6Ez1P5sE .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-va6Ez1P5sE .navbar-collapse.collapsing,
  .cid-va6Ez1P5sE .navbar-collapse.show {
    display: block !important;
  }
  .cid-va6Ez1P5sE .navbar-collapse.collapsing .navbar-nav,
  .cid-va6Ez1P5sE .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-va6Ez1P5sE .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-va6Ez1P5sE .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-va6Ez1P5sE .navbar-collapse.collapsing .navbar-buttons,
  .cid-va6Ez1P5sE .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-va6Ez1P5sE .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-va6Ez1P5sE .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-va6Ez1P5sE .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-va6Ez1P5sE .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-va6Ez1P5sE .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-va6Ez1P5sE .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-va6Ez1P5sE .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-va6Ez1P5sE .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-va6Ez1P5sE .nav-link,
.cid-va6Ez1P5sE .dropdown-item {
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}
.cid-va6Ez1P5sE .nav-link:hover,
.cid-va6Ez1P5sE .dropdown-item:hover {
  color: #ffffff !important;
  border-bottom: 1px solid currentColor;
}
.cid-va6erKLh0I {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-va6erKLh0I .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-va6erKLh0I .row {
  flex-direction: row-reverse;
}
.cid-va6erKLh0I img {
  width: 100%;
}
.cid-va6erL6NjI {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-va6erL6NjI .container-fluid {
  padding-right: 0;
  padding-left: 0;
}
.cid-va6erL6NjI .mbr-section-head {
  background-color: #ffffff;
  padding: 1rem 1rem 2rem;
}
.cid-va6erL6NjI .row {
  flex-direction: row-reverse;
}
.cid-va6erL6NjI img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-va6erL6NjI .display-1 {
    font-size: 70px;
  }
  .cid-va6erL6NjI .display-5 {
    font-size: 29px;
  }
  .cid-va6erL6NjI .display-7 {
    font-size: 22px;
  }
}
.cid-va6erL6NjI .mbr-section-title {
  text-align: center;
}
.cid-va6erL6NjI .mbr-section-subtitle {
  text-align: center;
}
.cid-va6erLpcEt {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-va6erLpcEt .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-va6erLpcEt .row {
  flex-direction: row-reverse;
}
.cid-va6erLpcEt img {
  width: 100%;
}
.cid-va6ig1306G {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efeeee;
}
.cid-va6ig1306G .row {
  position: relative;
}
.cid-va6ig1306G .container {
  max-width: 1500px;
}
.cid-va6ig1306G h4 {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  width: fit-content;
  padding: 0;
  margin: 0;
  right: 0rem;
  bottom: 25%;
}
.cid-va6ig1306G .content-wrapper {
  max-width: 800px;
}
.cid-va6ig1306G H1 {
  color: #333333;
}
.cid-va6ig1306G .mbr-text,
.cid-va6ig1306G .mbr-section-btn {
  color: #333333;
}
.cid-va6ig1306G H3 {
  color: #333333;
}
@media (min-width: 767px) {
  .cid-va6ig1306G .container {
    padding: 0 4rem;
  }
}
.cid-va6ig1306G .mbr-fallback-image.disabled {
  display: none;
}
.cid-va6ig1306G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-va6erTnrus {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-va6erTnrus .content {
    text-align: center;
  }
  .cid-va6erTnrus .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-va6erTnrus .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-va6erTnrus .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-va6erTnrus .media-wrap img {
  height: 6rem;
}
.cid-va6erTnrus .mbr-text {
  color: #8d97ad;
}
.cid-va6erTnrus .p-title {
  font-size: 17px;
}
.cid-va6erTnrus .p-title span {
  color: #111111;
}
.cid-va6erTnrus .title-card {
  font-size: 1.3rem;
}
.cid-va6erTnrus .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-va6erTnrus .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-va6erTnrus .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-va6erTnrus .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-va6erTnrus .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-va6erTnrus .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-va6erTnrus .copyright img {
  margin-right: 10px;
}
.cid-va6erTnrus .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #767676;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-va6erTnrus .icon-transition span:hover {
  background-color: #ff5800;
}
@media (max-width: 767px) {
  .cid-va6erTnrus .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-va6erTnrus .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-va6erTnrus .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-va6erTnrus .p-title,
.cid-va6erTnrus .social-media {
  color: #767676;
}
.cid-va6erTnrus H5 {
  color: #ff5800;
}
.cid-va6erTnrus .copyright > p {
  color: #767676;
}
.cid-va6erU0afC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-va6erU0afC .container-fluid {
  padding-right: 0;
  padding-left: 0;
}
.cid-va6erU0afC .mbr-section-head {
  background-color: #ffffff;
  padding: 1rem 1rem 2rem;
}
.cid-va6erU0afC .row {
  flex-direction: row-reverse;
}
.cid-va6erU0afC img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-va6erU0afC .display-1 {
    font-size: 70px;
  }
  .cid-va6erU0afC .display-5 {
    font-size: 29px;
  }
  .cid-va6erU0afC .display-7 {
    font-size: 22px;
  }
}
.cid-va6erU0afC .mbr-section-title {
  text-align: center;
}
.cid-va6erU0afC .mbr-section-subtitle {
  text-align: center;
}
.cid-va6ECMbkaL .navbar {
  padding: 0.5rem 0;
  background: #767676;
  transition: none;
  min-height: 77px;
}
.cid-va6ECMbkaL .navbar-dropdown.bg-color.transparent.opened {
  background: #767676;
}
.cid-va6ECMbkaL a {
  font-style: normal;
}
.cid-va6ECMbkaL .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-va6ECMbkaL .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  margin: 0.5rem 0.65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-va6ECMbkaL .nav-item:focus,
.cid-va6ECMbkaL .nav-link:focus {
  outline: none;
}
.cid-va6ECMbkaL .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-va6ECMbkaL .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-va6ECMbkaL .menu-logo {
  margin-right: auto;
}
.cid-va6ECMbkaL .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-va6ECMbkaL .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-va6ECMbkaL .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-va6ECMbkaL .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-va6ECMbkaL .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-va6ECMbkaL .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-va6ECMbkaL .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-va6ECMbkaL .navbar-toggleable-sm .navbar-collapse {
  justify-content: center;
  padding-right: 5rem;
  width: auto;
}
.cid-va6ECMbkaL .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-va6ECMbkaL .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-va6ECMbkaL .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-va6ECMbkaL .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-align: left;
}
.cid-va6ECMbkaL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  color: #ff5800 !important;
  padding: 0 0.6rem !important;
  border-radius: 0;
  background: #ffffff;
}
.cid-va6ECMbkaL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-va6ECMbkaL .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-va6ECMbkaL .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-va6ECMbkaL .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-va6ECMbkaL .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-va6ECMbkaL .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-va6ECMbkaL .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-va6ECMbkaL .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-va6ECMbkaL .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-va6ECMbkaL .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-va6ECMbkaL button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-va6ECMbkaL button.navbar-toggler:focus {
  outline: none;
}
.cid-va6ECMbkaL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-va6ECMbkaL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-va6ECMbkaL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-va6ECMbkaL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-va6ECMbkaL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-va6ECMbkaL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-va6ECMbkaL nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-va6ECMbkaL nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-va6ECMbkaL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-va6ECMbkaL .dropdown-toggle:after {
  display: none;
}
.cid-va6ECMbkaL .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-va6ECMbkaL .collapsed .btn {
  display: -webkit-flex;
}
.cid-va6ECMbkaL .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-va6ECMbkaL .collapsed .navbar-collapse.collapsing,
.cid-va6ECMbkaL .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-va6ECMbkaL .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-va6ECMbkaL .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-va6ECMbkaL .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-va6ECMbkaL .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-va6ECMbkaL .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-va6ECMbkaL .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-va6ECMbkaL .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-va6ECMbkaL .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-va6ECMbkaL .collapsed button.navbar-toggler {
  display: block;
}
.cid-va6ECMbkaL .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-va6ECMbkaL .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-va6ECMbkaL .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-va6ECMbkaL .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-va6ECMbkaL .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-va6ECMbkaL .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
@media (max-width: 991px) {
  .cid-va6ECMbkaL .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-va6ECMbkaL img {
    height: 3.8rem !important;
  }
  .cid-va6ECMbkaL .btn {
    display: -webkit-flex;
  }
  .cid-va6ECMbkaL button.navbar-toggler {
    display: block;
  }
  .cid-va6ECMbkaL .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-va6ECMbkaL .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-va6ECMbkaL .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-va6ECMbkaL .navbar-collapse.collapsing,
  .cid-va6ECMbkaL .navbar-collapse.show {
    display: block !important;
  }
  .cid-va6ECMbkaL .navbar-collapse.collapsing .navbar-nav,
  .cid-va6ECMbkaL .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-va6ECMbkaL .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-va6ECMbkaL .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-va6ECMbkaL .navbar-collapse.collapsing .navbar-buttons,
  .cid-va6ECMbkaL .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-va6ECMbkaL .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-va6ECMbkaL .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-va6ECMbkaL .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-va6ECMbkaL .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-va6ECMbkaL .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-va6ECMbkaL .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-va6ECMbkaL .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-va6ECMbkaL .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-va6ECMbkaL .nav-link,
.cid-va6ECMbkaL .dropdown-item {
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}
.cid-va6ECMbkaL .nav-link:hover,
.cid-va6ECMbkaL .dropdown-item:hover {
  color: #ffffff !important;
  border-bottom: 1px solid currentColor;
}
.cid-va6ACFFKoQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-va6ACFFKoQ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-va6ACFFKoQ .row {
  flex-direction: row-reverse;
}
.cid-va6ACFFKoQ img {
  width: 100%;
}
.cid-va6ACFUMoe {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-va6ACFUMoe .container-fluid {
  padding-right: 0;
  padding-left: 0;
}
.cid-va6ACFUMoe .mbr-section-head {
  background-color: #ffffff;
  padding: 1rem 1rem 2rem;
}
.cid-va6ACFUMoe .row {
  flex-direction: row-reverse;
}
.cid-va6ACFUMoe img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-va6ACFUMoe .display-1 {
    font-size: 70px;
  }
  .cid-va6ACFUMoe .display-5 {
    font-size: 29px;
  }
  .cid-va6ACFUMoe .display-7 {
    font-size: 22px;
  }
}
.cid-va6ACFUMoe .mbr-section-title {
  text-align: center;
}
.cid-va6ACFUMoe .mbr-section-subtitle {
  text-align: center;
}
.cid-va6ACG8Uig {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-va6ACG8Uig .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-va6ACG8Uig .row {
  flex-direction: row-reverse;
}
.cid-va6ACG8Uig img {
  width: 100%;
}
.cid-va6ACGoCT1 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efeeee;
}
.cid-va6ACGoCT1 .row {
  position: relative;
}
.cid-va6ACGoCT1 .container {
  max-width: 1500px;
}
.cid-va6ACGoCT1 h4 {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  width: fit-content;
  padding: 0;
  margin: 0;
  right: 0rem;
  bottom: 25%;
}
.cid-va6ACGoCT1 .content-wrapper {
  max-width: 800px;
}
.cid-va6ACGoCT1 H1 {
  color: #333333;
}
.cid-va6ACGoCT1 .mbr-text,
.cid-va6ACGoCT1 .mbr-section-btn {
  color: #333333;
}
.cid-va6ACGoCT1 H3 {
  color: #333333;
}
@media (min-width: 767px) {
  .cid-va6ACGoCT1 .container {
    padding: 0 4rem;
  }
}
.cid-va6ACGoCT1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-va6ACGoCT1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-va6ACGHa4A {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-va6ACGHa4A .content {
    text-align: center;
  }
  .cid-va6ACGHa4A .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-va6ACGHa4A .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-va6ACGHa4A .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-va6ACGHa4A .media-wrap img {
  height: 6rem;
}
.cid-va6ACGHa4A .mbr-text {
  color: #8d97ad;
}
.cid-va6ACGHa4A .p-title {
  font-size: 17px;
}
.cid-va6ACGHa4A .p-title span {
  color: #111111;
}
.cid-va6ACGHa4A .title-card {
  font-size: 1.3rem;
}
.cid-va6ACGHa4A .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-va6ACGHa4A .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-va6ACGHa4A .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-va6ACGHa4A .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-va6ACGHa4A .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-va6ACGHa4A .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-va6ACGHa4A .copyright img {
  margin-right: 10px;
}
.cid-va6ACGHa4A .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #767676;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-va6ACGHa4A .icon-transition span:hover {
  background-color: #ff5800;
}
@media (max-width: 767px) {
  .cid-va6ACGHa4A .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-va6ACGHa4A .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-va6ACGHa4A .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-va6ACGHa4A .p-title,
.cid-va6ACGHa4A .social-media {
  color: #767676;
}
.cid-va6ACGHa4A H5 {
  color: #ff5800;
}
.cid-va6ACGHa4A .copyright > p {
  color: #767676;
}
.cid-va6ACH5H2W {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-va6ACH5H2W .container-fluid {
  padding-right: 0;
  padding-left: 0;
}
.cid-va6ACH5H2W .mbr-section-head {
  background-color: #ffffff;
  padding: 1rem 1rem 2rem;
}
.cid-va6ACH5H2W .row {
  flex-direction: row-reverse;
}
.cid-va6ACH5H2W img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-va6ACH5H2W .display-1 {
    font-size: 70px;
  }
  .cid-va6ACH5H2W .display-5 {
    font-size: 29px;
  }
  .cid-va6ACH5H2W .display-7 {
    font-size: 22px;
  }
}
.cid-va6ACH5H2W .mbr-section-title {
  text-align: center;
}
.cid-va6ACH5H2W .mbr-section-subtitle {
  text-align: center;
}
